/* Vitrin Paneli Stilleri */

.showcase-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: #fff;
    border: 3px solid #000;
    z-index: 10001;
    display: none;
    flex-direction: column;
    font-family: 'Google Sans Code', monospace;
}

.showcase-panel.active {
    display: flex;
}

.showcase-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 3px solid #000;
    background: #fff;
}

.showcase-panel-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-panel-close {
    background: none;
    border: 2px solid #000;
    width: 32px;
    height: 32px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.showcase-panel-close:hover {
    background: #000;
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.1);
}

.showcase-panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.showcase-loading {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
}

/* Bento Grid Stilleri */
.showcase-bento-grid-container {
    padding: 20px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.showcase-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    gap: 20px;
    width: 100%;
}

.showcase-bento-card {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.15s ease;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

.showcase-bento-card:hover {
    box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.15);
    transform: translate(-2px, -2px);
}

.showcase-bento-card-image {
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
    background-color: #f4f6f8;
    border-bottom: 3px solid #000000;
}

.showcase-bento-card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-bento-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 8px 0;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-bento-card-description {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 8px 0;
    line-height: 1.5;
    flex: 1;
    font-weight: 400;
}

.showcase-bento-card-link {
    font-size: 10px;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

/* Bento Grid Responsive */
@media (max-width: 768px) {
    .showcase-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 16px;
    }
    
    .showcase-bento-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

.showcase-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group textarea {
    padding: 12px;
    border: 2px solid #000;
    font-family: 'Google Sans Code', monospace;
    font-size: 14px;
    background: #fff;
    transition: all 0.15s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff2b2b;
    box-shadow: 0 0 0 3px rgba(255, 43, 43, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    border: 2px solid #000;
}

.showcase-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.showcase-photo-item {
    position: relative;
    aspect-ratio: 1;
    border: 2px solid #000;
    overflow: hidden;
    transition: all 0.15s ease;
}

.showcase-photo-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.1);
}

.showcase-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-delete {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: rgba(255, 0, 0, 0.8);
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    font-weight: 700;
}

.photo-delete:hover {
    background: #ff0000;
    transform: scale(1.1);
}

.no-photos {
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    border: 2px dashed #000;
    background: #f4f6f8;
}

.btn-primary,
.btn-secondary,
.btn-small {
    padding: 10px 20px;
    border: 2px solid #000000;
    border-radius: 0;
    font-family: 'Google Sans Code', monospace;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #ffffff;
    color: #111111;
    line-height: 1.2;
}

.btn-primary {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

.btn-primary:hover {
    background: #ffffff;
    color: #10b981;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 0 #000000;
}

.btn-primary:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0 0 #000000;
}

.btn-secondary:hover,
.btn-small:hover {
    background: #f4f6f8;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary:active,
.btn-small:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.1);
}

.btn-small {
    padding: 6px 12px;
    font-size: 9px;
}

.error {
    color: #ff2b2b;
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    border: 2px solid #ff2b2b;
    background: #fff;
}
