:root {
    --gold: #A37F43;
    --gold-light: #F6F4EE;
    --bg-light: #FAFAFA;
    --bg-card: #FFFFFF;
    --bg-soft: #F4F3EF;
    --text-dark: #121212;
    --text-muted: #6E6D6A;
    --border-color: #E6E4DD;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 110px 4% 60px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4%;
    background-color: rgba(250, 250, 250, 0.88);
    border-bottom: 1px solid rgba(163, 127, 67, 0.12);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.logo-wrapper { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.logo { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 22px; 
    font-weight: 600; 
    letter-spacing: 5px; 
    text-transform: uppercase; 
}

.desktop-horizontal-nav { 
    display: flex; 
    gap: 35px; 
}

.desktop-horizontal-nav a {
    color: var(--text-dark); 
    text-decoration: none; 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    position: relative; 
    transition: var(--transition);
}

.desktop-horizontal-nav a::after {
    content: ''; 
    position: absolute; 
    bottom: -4px; 
    left: 0; 
    width: 0; 
    height: 1px; 
    background-color: var(--gold); 
    transition: var(--transition);
}

.desktop-horizontal-nav a:hover, 
.desktop-horizontal-nav a.active { 
    color: var(--gold); 
}

.desktop-horizontal-nav a:hover::after,
.desktop-horizontal-nav a.active::after { 
    width: 100%; 
}

.menu-toggle { 
    display: none;
    background: none; 
    border: none; 
    color: var(--text-dark); 
    font-size: 18px; 
    cursor: pointer; 
}

.back-home-btn { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: var(--transition); 
}

.back-home-btn:hover { 
    color: var(--gold); 
}

.nav-ghost-space { 
    width: 24px; 
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: var(--bg-card);
    border-right: 1px solid var(--border-color);
    z-index: 1000;
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar.active { 
    transform: translateX(0) !important; 
}

.sidebar-brand { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.sidebar-brand h2 { 
    font-family: 'Cormorant Garamond', serif; 
    color: var(--gold); 
}

.close-btn { 
    background: none; 
    border: none; 
    font-size: 22px; 
    color: var(--text-muted); 
    cursor: pointer; 
}

.sidebar-links { 
    list-style: none; 
}

.sidebar-links li { 
    margin: 25px 0; 
}

.sidebar-links a { 
    color: var(--text-dark); 
    text-decoration: none; 
    font-size: 13px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    display: block;
    transition: var(--transition);
}

.sidebar-links a:hover, 
.sidebar-links a.active { 
    color: var(--gold); 
    padding-left: 5px;
}

.sidebar-footer p { 
    font-size: 10px; 
    color: var(--text-muted); 
    text-transform: uppercase; 
}

.hero {
    height: 60vh;
    background: linear-gradient(to right, rgba(251,251,250,0.95) 30%, rgba(251,251,250,0.3)), url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    padding: 0 6%;
    margin-top: 55px;
    border-bottom: 1px solid var(--border-color);
}

.hero-subtitle { 
    color: var(--gold); 
    text-transform: uppercase; 
    letter-spacing: 5px; 
    font-size: 11px; 
    display: block; 
    margin-bottom: 10px; 
}

.hero-title { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 46px; 
    font-weight: 300; 
    line-height: 1.2; 
    margin-bottom: 15px; 
}

.hero-desc { 
    color: var(--text-muted); 
    font-size: 14px; 
    max-width: 500px; 
    margin-bottom: 25px; 
}

.btn-gold {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    transition: var(--transition);
    background: transparent;
}

.btn-gold:hover {
    background-color: var(--gold);
    color: #FFF;
    box-shadow: 0 10px 25px rgba(163, 127, 67, 0.15);
}

.section-title { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 32px; 
    font-weight: 300; 
    text-align: center; 
    margin-bottom: 50px; 
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); 
    gap: 35px; 
}

.product-card { 
    background-color: var(--bg-card); 
    border: 1px solid var(--bg-soft); 
    overflow: hidden; 
    transition: var(--transition); 
    opacity: 1;
    transform: scale(1);
}

.product-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.03); 
    border-color: var(--gold); 
}

.product-img-holder { 
    height: 390px; 
    overflow: hidden; 
    background-color: var(--bg-soft);
}

.product-img-holder img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}

.product-card:hover .product-img-holder img { 
    transform: scale(1.04); 
}

.product-details { 
    padding: 25px 20px; 
    text-align: center; 
}

.product-details h3 { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 20px; 
    margin-bottom: 8px; 
}

.price {
    color: var(--gold);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-view-details { 
    display: block; 
    width: 100%; 
    padding: 13px; 
    background-color: var(--bg-soft); 
    color: var(--text-dark); 
    text-decoration: none; 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    transition: 0.3s; 
}

.product-card:hover .btn-view-details { 
    background-color: var(--text-dark); 
    color: #FFF; 
}

.no-products {
    text-align: center;
    grid-column: 1 / -1;
    color: var(--text-muted);
    font-size: 14px;
    padding: 50px 0;
}

.product-card.hidden-luxury {
    display: none !important;
    opacity: 0;
    transform: scale(0.95);
}

.detail-container { 
    margin-top: 20px; 
}

.detail-wrapper { 
    display: flex; 
    gap: 70px; 
}

.detail-img-box { 
    flex: 1.1; 
    height: 720px; 
    position: relative; 
    overflow: hidden; 
    border: 1px solid var(--gold-light); 
}

.detail-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.luxury-badge { 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    background: #111; 
    color: #fff; 
    padding: 6px 14px; 
    font-size: 9px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    z-index: 3; 
}

.detail-info-box { 
    flex: 0.9; 
}

.product-title { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 42px; 
    font-weight: 300; 
    line-height: 1.1; 
}

.detail-price { 
    font-size: 24px; 
    color: var(--gold); 
    font-weight: 400; 
    margin: 15px 0; 
}

.product-desc { 
    color: var(--text-muted); 
    font-size: 14px; 
    font-weight: 300; 
    margin-bottom: 40px; 
}

.customizer-section { 
    border-top: 1px solid var(--border-color); 
    padding: 30px 0; 
}

.form-section-title { 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--gold); 
    font-weight: 600; 
    margin-bottom: 20px; 
}

.option-grid-inputs { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

.option-group label { 
    display: block; 
    font-size: 10px; 
    text-transform: uppercase; 
    margin-bottom: 6px; 
    color: var(--text-muted); 
}

.option-group select { 
    width: 100%; 
    padding: 13px; 
    border: 1px solid var(--border-color); 
    background: #FFF; 
    outline: none; 
    font-size: 12px; 
}

.extra-luxury-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.extra-mini-card {
    background: #FFF;
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.extra-mini-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.card-img-wrapper {
    width: 100%;
    height: 110px;
    overflow: hidden;
    margin-bottom: 10px;
    background-color: var(--bg-soft);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.extra-mini-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-meta h4 {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-cost {
    display: block;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.quantity-picker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gold-light);
    border: 1px solid var(--border-color);
    padding: 4px 8px;
}

.quantity-picker button {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-picker button:hover { 
    color: var(--gold); 
}

.qty-display { 
    font-size: 12px; 
    font-weight: 600; 
    min-width: 15px; 
}

.luxury-form-matrix { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.matrix-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
}

.input-field { 
    display: flex; 
    flex-direction: column; 
}

.input-field label { 
    font-size: 10px; 
    text-transform: uppercase; 
    color: var(--text-muted); 
    margin-bottom: 6px; 
}

.input-field input, 
.input-field textarea, 
.input-field select { 
    width: 100%; 
    padding: 13px; 
    border: 1px solid var(--border-color); 
    background: #FFF; 
    outline: none; 
    font-size: 13px; 
    transition: border-color 0.3s;
}

.input-field input:focus, 
.input-field textarea:focus, 
.input-field select:focus { 
    border-color: var(--gold); 
}

.map-action-bar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 6px; 
}

.allowed-regions-label { 
    font-size: 11px; 
    color: var(--gold); 
    font-weight: 500; 
}

.btn-location { 
    background: var(--gold-light); 
    border: 1px solid rgba(163,127,67,0.2); 
    color: var(--gold); 
    padding: 7px 14px; 
    font-size: 10px; 
    text-transform: uppercase; 
    font-weight: 500; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 5px; 
}

.btn-location:hover { 
    background: var(--gold); 
    color: #FFF; 
}

.real-google-map { 
    width: 100%; 
    height: 250px; 
    border: 1px solid var(--border-color); 
    margin-bottom: 10px; 
    z-index: 1; 
}

.btn-whatsapp-order { 
    width: 100%; 
    padding: 18px; 
    background: var(--text-dark); 
    color: #FFF; 
    border: none; 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 500; 
    cursor: pointer; 
    margin-top: 15px; 
    transition: var(--transition); 
}

.btn-whatsapp-order:hover { 
    background: #25D366; 
    box-shadow: 0 10px 20px rgba(37,211,102,0.15); 
}

.login-body { 
    background-color: var(--bg-soft); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    padding: 20px;
}

.login-card { 
    background: #FFF; 
    width: 100%; 
    max-width: 400px; 
    padding: 40px; 
    border: 1px solid var(--border-color); 
    text-align: center; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
}

.login-logo { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 32px; 
    color: var(--gold); 
    margin-bottom: 10px; 
    font-weight: 600; 
}

.login-card h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
}

.login-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 25px;
}

.login-error { 
    background: #FDF2F2; 
    color: #EC5B5B; 
    padding: 10px; 
    font-size: 12px; 
    margin-bottom: 15px; 
    border-left: 2px solid #EC5B5B; 
    text-align: left;
}

.back-to-shop { 
    display: block; 
    margin-top: 20px; 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 12px; 
}

.back-to-shop:hover {
    color: var(--text-dark);
}

.admin-body { 
    background-color: var(--bg-light); 
}

.admin-navbar { 
    background: #FFF; 
    border-bottom: 1px solid var(--bg-soft);
}

.admin-container { 
    margin-top: 60px; 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 25px; 
    margin-bottom: 40px; 
}

.stat-card { 
    background: #FFF; 
    border: 1px solid var(--bg-soft); 
    padding: 25px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.stat-icon { 
    font-size: 30px; 
    color: var(--gold); 
}

.stat-info h3 { 
    font-size: 20px; 
    font-weight: 500; 
}

.stat-info p { 
    font-size: 12px; 
    color: var(--text-muted); 
}

.admin-workspace { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    align-items: flex-start;
}

.admin-box { 
    background: #FFF; 
    border: 1px solid var(--bg-soft); 
    padding: 30px; 
}

.admin-box h2 { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 22px; 
    margin-bottom: 20px; 
    border-bottom: 1px solid var(--bg-soft); 
    padding-bottom: 10px; 
}

.luxury-form .form-group { 
    margin-bottom: 18px; 
}

.luxury-form label { 
    display: block; 
    font-size: 11px; 
    color: var(--text-muted); 
    margin-bottom: 6px; 
    text-transform: uppercase; 
}

.luxury-form input,
.luxury-form textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    outline: none;
}

.luxury-form input:focus,
.luxury-form textarea:focus {
    border-color: var(--gold);
}

.luxury-form .file-input {
    padding: 10px;
    cursor: pointer;
    background-color: #FFF;
}

.btn-gold-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--text-dark);
    color: #FFF;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gold-submit:hover {
    background-color: var(--gold);
}

.admin-product-list { 
    max-height: 480px; 
    overflow-y: auto; 
}

.admin-product-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 12px 0; 
    border-bottom: 1px solid var(--bg-soft); 
}

.admin-product-item img { 
    width: 50px; 
    height: 50px; 
    object-fit: cover; 
}

.api-info { 
    flex-grow: 1; 
}

.api-info h4 { 
    font-size: 14px; 
    font-weight: 500; 
}

.api-info p { 
    color: var(--gold); 
    font-size: 12px; 
}

.btn-delete { 
    color: #E06666; 
    background: none; 
    border: none; 
    cursor: pointer; 
    font-size: 15px; 
    transition: color 0.2s;
}

.btn-delete:hover {
    color: #C00;
}

.empty-notice {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    padding: 20px 0;
}

.toast-luxury {
    position: fixed;
    top: 30px;
    right: -400px;
    width: 360px;
    background: #FFF;
    border: 1px solid #EC5B5B;
    border-left: 4px solid #EC5B5B;
    padding: 18px 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-luxury.show {
    right: 30px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-content i {
    color: #EC5B5B;
    font-size: 20px;
}

.toast-content span {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.toast-progress {
    width: 100%;
    height: 2px;
    background: #F8D7DA;
    position: relative;
    overflow: hidden;
}

.toast-progress::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #EC5B5B;
    animation: toastProgressAnimation 4s linear forwards;
}

@keyframes toastProgressAnimation {
    from { width: 100%; }
    to { width: 0%; }
}

.category-showcase-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 4% 10px;
    margin-top: 75px;
}

.category-circle-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.circle-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    transition: var(--transition);
}

.category-circle-item span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.category-circle-item:hover .circle-icon-box,
.category-circle-item.active .circle-icon-box {
    background-color: var(--text-dark);
    color: #FFF;
    border-color: var(--text-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.category-circle-item:hover span,
.category-circle-item.active span {
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 992px) {
    .desktop-horizontal-nav { display: none; }
    .menu-toggle { display: block; }
    
    .detail-wrapper, 
    .admin-workspace { 
        flex-direction: column; 
        gap: 40px; 
    }
    
    .detail-img-box { 
        height: 440px; 
    }
    
    .matrix-row,
    .option-grid-inputs { 
        grid-template-columns: 1fr; 
    }
    
    .extra-luxury-grid-v2 { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .toast-luxury { 
        width: 90%; 
        left: 5%; 
        right: auto; 
        top: -150px; 
        transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    }
    
    .toast-luxury.show { 
        top: 20px; 
        right: auto; 
    }
}

@media (max-width: 768px) {
    .category-circle-wrapper {
        gap: 25px;
    }
    .circle-icon-box {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
    .category-circle-item span {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

@media (max-width: 768px) {
    .sidebar { 
        width: 100%; 
        transform: translateX(-100%); 
    }
    
    .sidebar.active { 
        transform: translateX(0) !important; 
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .extra-luxury-grid-v2 { 
        grid-template-columns: 1fr; 
    }
}

        .product-img-holder { position: relative; }
        .discount-ribbon {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #d4af37;
            color: #fff;
            padding: 5px 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            z-index: 2;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .price-wrapper { margin-bottom: 15px; }
        .old-price-front { text-decoration: line-through; color: #b0b0b0; font-size: 0.9em; margin-right: 10px; }
        .current-price { font-weight: 500; color: #111; }

        .header-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 20px;
            flex-grow: 1;
            max-width: 450px;
        }
        .header-search-box {
            position: relative;
            display: flex;
            align-items: center;
            flex: 2;
        }
        .header-search-box input {
            width: 100%;
            padding: 8px 12px 8px 35px;
            border: 1px solid #E6E4DD;
            background: #FAFAFA;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            outline: none;
            transition: all 0.3s ease;
            border-radius: 0px;
        }
        .header-search-box input:focus {
            border-color: #d4af37;
            background: #fff;
        }
        .header-search-box i {
            position: absolute;
            left: 12px;
            color: #b0b0b0;
            font-size: 14px;
        }

        /* Sıralama Seçim Kutusu */
        .header-sort-select {
            padding: 8px 24px 8px 10px;
            border: 1px solid #E6E4DD;
            background: #FAFAFA url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b0b0b0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 5px center;
            background-size: 18px;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            outline: none;
            border-radius: 0px;
            cursor: pointer;
            flex: 1.2;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            min-width: 120px;
        }
        .header-sort-select:focus {
            border-color: #d4af37;
            background-color: #fff;
        }

        /* Sidebar Telefon İletişim Alanı */
        .sidebar-contact {
            padding: 20px;
            border-top: 1px solid #f0eeeb;
            margin-top: auto;
        }
        .sidebar-contact p {
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            color: #777;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .sidebar-contact .phone-link {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            color: #111;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .btn-sidebar-call {
            display: inline-block;
            background: #d4af37;
            color: white;
            padding: 10px 15px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            width: 100%;
            text-align: center;
            box-sizing: border-box;
            transition: background 0.3s;
        }
        .btn-sidebar-call:hover { background: #b8952e; }

        .whatsapp-sabit-yeni { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background-color: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 9999; text-decoration: none; font-size: 32px; transition: all 0.3s ease; animation: wa-pulse 2s infinite; }
        @keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
        
        .ai-chat-trigger { position: fixed; bottom: 25px; left: 25px; width: 60px; height: 60px; background-color: #111; color: #d4af37; border: 1px solid #d4af37; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 9999; cursor: pointer; }
        .ai-chat-window { position: fixed; bottom: 95px; left: 25px; width: 320px; height: 420px; background: #fff; border: 1px solid #E6E4DD; box-shadow: 0 10px 30px rgba(0,0,0,0.15); z-index: 9998; display: none; flex-direction: column; overflow: hidden; }
        .ai-chat-header { background: #111; color: #fff; padding: 15px; font-family: 'Montserrat', sans-serif; font-size: 13px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #d4af37; }
        .ai-chat-body { flex: 1; padding: 15px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; background: #FAFAFA; }
        .ai-bubble { max-width: 85%; padding: 10px 14px; font-family: 'Montserrat', sans-serif; font-size: 12px; line-height: 1.5; border-radius: 4px; }
        .ai-bubble.bot { background: #fff; border: 1px solid #E6E4DD; align-self: flex-start; }
        .ai-bubble.user { background: #E6E4DD; align-self: flex-end; }
        .ai-chat-input-wrapper { display: flex; padding: 10px; background: #fff; border-top: 1px solid #E6E4DD; }
        .ai-chat-input-wrapper input { flex: 1; padding: 10px; border: 1px solid #E6E4DD; outline: none; }
        .ai-chat-input-wrapper button { background: #111; border: none; color: #d4af37; padding: 0 15px; cursor: pointer; }

        /* YAN YANA AKAN PREMİUM YORUM ALANI */
        .premium-reviews-section { padding: 60px 0; background: #FAFAFA; border-top: 1px solid #E6E4DD; overflow: hidden; margin-top: 40px; }
        .reviews-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .reviews-top-bar { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 35px; }
        .reviews-top-bar h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; margin: 0; }
        .btn-open-review-form { background: transparent; border: 1px solid #111; color: #111; padding: 10px 20px; font-family: 'Montserrat', sans-serif; font-size: 11px; text-transform: uppercase; cursor: pointer; }
        
        .reviews-slider-track { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 15px; scrollbar-width: thin; scrollbar-color: #d4af37 #FAFAFA; }
        .premium-review-card { flex: 0 0 320px; background: #fff; border: 1px solid #E6E4DD; padding: 20px; box-sizing: border-box; display: flex; flex-direction: column; justify-content: space-between; }
        .premium-review-stars { color: #d4af37; font-size: 12px; margin-bottom: 10px; }
        .premium-review-text { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: #444; margin: 0 0 12px 0; line-height: 1.4; }
        .premium-review-img { width: 100%; height: 140px; object-fit: cover; margin-bottom: 12px; border: 1px solid #eee; }
        .premium-review-meta { font-family: 'Montserrat', sans-serif; font-size: 11px; color: #888; text-transform: uppercase; }

        /* MODAL VE TOAST */
        .review-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); display: none; justify-content: center; align-items: center; z-index: 10000; }
        .review-modal-card { background: #fff; padding: 35px; width: 90%; max-width: 420px; border: 1px solid #E6E4DD; position: relative; }
        .star-pure-rating { display: flex; flex-direction: row-reverse; justify-content: center; gap: 8px; margin-bottom: 20px; }
        .star-pure-rating input { display: none; }
        .star-pure-rating label { font-size: 26px; color: #E6E4DD; cursor: pointer; }
        .star-pure-rating label:hover, .star-pure-rating label:hover ~ label, .star-pure-rating input:checked ~ label { color: #d4af37; }
        .review-form-input { width: 100%; padding: 10px; border: 1px solid #E6E4DD; font-family: 'Montserrat', sans-serif; font-size: 12px; margin-bottom: 15px; box-sizing: border-box; background: #FAFAFA; }
        
        .toast-message { position: fixed; top: 30px; left: 50%; transform: translateX(-50%) translateY(-100px); background: #111; color: #fff; padding: 14px 28px; font-family: 'Montserrat', sans-serif; font-size: 13px; z-index: 10001; transition: all 0.4s; opacity: 0; display: flex; align-items: center; gap: 12px; border: 1px solid #d4af37; }
        .toast-message.show { transform: translateX(-50%) translateY(0); opacity: 1; }

        .admin-section { max-width: 1200px; margin: 50px auto; padding: 20px; border-top: 2px dashed #d4af37; }
        .admin-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; margin-bottom: 20px; }
        .admin-products-list { display: flex; flex-direction: column; gap: 15px; }
        .admin-product-item { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid #E6E4DD; padding: 15px; }
        .admin-product-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }
        .api-info { flex: 1; margin-left: 20px; font-family: 'Montserrat', sans-serif; }
        .api-info h4 { margin: 0 0 5px 0; font-size: 14px; }
        .api-info p { margin: 0; font-size: 13px; }
        .btn-edit, .btn-delete { color: #111; font-size: 16px; margin-left: 15px; transition: color 0.2s; }
        .btn-delete:hover { color: #e74c3c; }
        .btn-edit:hover { color: #2980b9; }

        @media (max-width: 768px) {
            .navbar .logo { display: none !important; }
            .header-controls {
                margin-left: 8px;
                margin-right: 8px;
                max-width: 260px;
                gap: 5px;
            }
            .header-search-box input {
                padding: 8px 8px 8px 28px;
                font-size: 12px;
            }
            .header-search-box i { left: 8px; font-size: 12px; }
            .header-sort-select {
                padding: 8px 18px 8px 6px;
                font-size: 11px;
                min-width: 95px;
            }
            .mobile-call-icon {
                display: flex !important;
                align-items: center;
                justify-content: center;
                color: #d4af37;
                font-size: 16px;
                text-decoration: none;
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background: #fafafa;
                border: 1px solid #e6e4dd;
                flex-shrink: 0;
            }
        }