/* Language Switcher Custom Style */
.lang-switcher {
    margin-right: 0;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
}
.lang-switcher:focus, .lang-switcher:hover {
    border-color: #d4af37;
    background: #f9f9f9;
}
@media (max-width: 767px) {
    .nav-container {
        flex-direction: row !important;
        align-items: flex-start !important;
    }
    .logo {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        padding-left: 8px !important;
    }
    .logo h1, .logo .tagline {
        text-align: left !important;
        margin-left: 0 !important;
    }
}
/* Hero styles cleaned up - now handled by main hero section and script.js */
.hero-content {
    position: relative;
    z-index: 1;
}
/* Modern Cart Modal Styles */
.cart-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.cart-modal {
    display: none;
    position: fixed;
    inset: 0;
    margin: auto;
    width: 90%;
    max-width: 900px;
    height: 75vh;
    max-height: 75vh;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    flex-direction: column;
    animation: none !important;
    transition: none !important;
    transform: none !important;
}
.cart-header {
    background: #ffffff;
    color: #000000;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}
.cart-header h2 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Times New Roman', serif;
}
.cart-header i {
    font-size: 24px;
    color: #000000;
}
.close-btn {
    background: transparent;
    border: 1px solid #e5e5e5;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}
.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}
.cart-content {
    padding: 24px 28px;
    overflow-y: auto;
    flex-grow: 1;
    flex-basis: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
.cart-items {
    margin-bottom: 0;
}
.cart-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    gap: 16px;
    margin-bottom: 12px;
    background: #fafafa;
    transition: all 0.2s;
}
.cart-item:hover {
    border-color: #ddd;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid #e5e5e5;
}
.item-details {
    flex-grow: 1;
}
.item-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
    color: #222;
}
.item-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}
.item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}
.quantity-control .quantity-btn {
    background-color: #f8f9fa;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #555;
    transition: all 0.2s;
}
.quantity-control .quantity-btn:hover {
    background-color: #e9ecef;
    color: #222;
}
.quantity {
    padding: 0 12px;
    font-weight: 600;
    font-size: 14px;
    min-width: 28px;
    text-align: center;
}
.remove-item {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}
.remove-item:hover {
    background-color: rgba(231, 76, 60, 0.1);
    color: #d32f2f;
}
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}
.empty-cart i {
    font-size: 80px;
    margin-bottom: 20px;
    color: #bdc3c7;
    opacity: 0.6;
}
.empty-cart h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #555;
}
.empty-cart p {
    font-size: 14px;
    color: #999;
}
.cart-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e5e5e5;
    margin-top: 20px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}
.summary-row span:last-child {
    font-weight: 600;
}
.summary-total {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    border-top: 2px solid #ddd;
    padding-top: 12px;
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}
.cart-footer {
    padding: 20px 28px;
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
}
.continue-shopping {
    padding: 12px 24px;
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.continue-shopping:hover {
    background-color: #dde4e6;
    border-color: #bbb;
}
.checkout-btn {
    padding: 12px 30px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Times New Roman', serif;
}
.checkout-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Animations removed */
.open-cart-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px auto;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
}
.open-cart-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(52, 152, 219, 0.3);
}
.cart-count {
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
@media (max-width: 600px) {
    body {
        font-size: 15px;
        background: #fff;
    }
    .navbar {
        flex-direction: column;
        padding: 0.5rem 0.5rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        background: #fff;
        padding: 0.5rem 0;
    }
    .hero {
        min-height: 60vh;
        padding: 2rem 0.5rem;
    }
    .hero-overlay {
        min-height: 60vh;
    }
    .hero-content {
        padding: 1rem 0.5rem;
        max-width: 100%;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .cart-panel, .modal-content {
        width: 98vw;
        max-width: 98vw;
        padding: 1rem 0.5rem;
    }
    .order-form {
        padding: 0.5rem;
    }
    .cart-item-info h4 {
        font-size: 1rem;
    }
    .cart-item img {
        width: 60px;
        height: 60px;
    }
}
/* Login Page Styles */
/* Login səhifəsi üçün body mərkəzləşdirməsi - yalnız login.html-də tətbiq olunur */
body:has(.login-container) {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.login-container {
    max-width: 450px;
    width: 100%;
    max-height: none;
    height: auto;
    overflow: visible;
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

.login-container img {
    width: 120px;
    margin-bottom: 1.5rem;
}

.login-container h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.input-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.input-group input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--secondary);
    transition: var(--transition);
}

.input-group input:focus {
    border-color: var(--accent);
    outline: none;
}

.login-container button[type="submit"] {
    width: 100%;
    padding: 0.8rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.login-container button[type="submit"]:hover {
    background: #bfa22e;
}

#loginMessage {
    margin-top: 1rem;
    color: #d32f2f;
    font-size: 1rem;
    min-height: 1.2em;
}

/* Login səhifəsi mobil responsive */
@media (max-width: 768px) {
    body:has(.login-container) {
        padding: 15px;
    }
    
    .login-container {
        max-width: 100%;
        padding: 2rem 1.5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }
    
    .login-container h2 {
        font-size: 1.6rem;
    }
    
    .login-container img {
        width: 100px;
        margin-bottom: 1.2rem;
    }
}
:root {
    --primary: #000000;
    --secondary: #ffffff;
    --accent: #000000;
    --text-primary: #000000;
    --text-secondary: #444444;
    --text-light: #ffffff;
    --border: #e5e5e5;
    --shadow: rgba(0, 0, 0, 0.05);
    --shadow-lg: rgba(0, 0, 0, 0.1);
    
    --font-display: 'Times New Roman', serif;
    --font-body: 'Times New Roman', serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Premium Scroll Reveal Animation Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger-delay-1 { transition-delay: 0.1s; }
.reveal-stagger-delay-2 { transition-delay: 0.2s; }
.reveal-stagger-delay-3 { transition-delay: 0.3s; }

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    width: 100%;
    overflow: visible;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 100px;
    flex-shrink: 0;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #222;
    letter-spacing: 2px;
    font-family: "Times New Roman", Times, serif;
}

.logo .tagline {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Nav Menu */
/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none; /* Keep existing styles */
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }

    #hamburgerBtn {
        display: flex !important; /* Force visible on mobile */
    }
}

/* Nav Link Styles - Clean, Premium */
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px; /* Space for the line */
    font-family: 'Times New Roman', serif;
}

.nav-link:hover { opacity: 0.7; }

/* The sliding marker (Desktop Only) */
.nav-marker {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 1px; /* Thin line */
    background-color: #000000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    z-index: 10;
    width: 0; /* JS will set width */
}

@media (max-width: 768px) {
    .nav-marker { display: none !important; }
}

/* Nav Icons */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: nowrap;
    overflow: visible;
    flex-shrink: 0;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 0;
    transition: transform 0.2s;
    position: relative;
    color: #000000;
}

.icon-btn:hover {
    transform: scale(1.15);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    stroke: #000000;
    stroke-width: 2;
    fill: none;
}

/* Cart Count - Plain Number */
.cart-count {
    position: absolute;
    top: -2px;
    right: -6px;
    background: transparent; /* No circle */
    color: #000000;
    font-size: 13px; /* Slightly larger/readable */
    font-weight: 600;
    font-family: 'Times New Roman', serif;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    pointer-events: none;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #1a1a1a url('../../logo/banner.jpeg') center/cover no-repeat;
}

.hero-banner-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-video-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease-out;
    background: transparent !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #444444; /* Dark gray instead of accent */
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-family: 'Times New Roman', serif;
}

.hero-logo {
    max-width: 480px;
    width: 90%;
    height: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-light);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.4s both;
    display: none;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #000000;
    color: #ffffff;
    border: none;
    font-family: 'Times New Roman', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn svg {
    width: 18px;
    height: 18px;
}

/* ===== COLLECTION SECTION ===== */
.collection {
    padding: 80px 24px;
    background: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    font-family: 'Times New Roman', serif;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'Times New Roman', serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    transition: var(--transition);
    animation: fadeIn 0.6s ease-out;
    border: 1px solid #f0f0f0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000000;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Times New Roman', serif;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-family: 'Times New Roman', serif;
}

.product-title {
    font-family: 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    font-family: 'Times New Roman', serif;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 24px;
    background: #ffffff;
    color: #000000;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 15px;
    font-family: 'Times New Roman', serif;
}

.about-title {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-family: 'Times New Roman', serif;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 24px;
    background: var(--secondary);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--accent);
    stroke-width: 2;
}

.info-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.info-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Google Map Styles */
.map-container {
    width: 100%;
    max-width: 800px;
    margin: 60px auto 0;
}

.map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.map-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        height: 280px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 60px 24px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 13px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #222;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* ===== MODAL (PRODUCT) ===== */
/* ===== MODAL CONTAINER ===== */
/* ===== MODAL CONTAINER ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100vw;
    height: 100vh;
    background: transparent;
    overflow: hidden;
}

/* Modal açılınca görünsün ama tam ekran olmasın - Content kutusu modal içinde ortada olsun */
.modal.active {
    display: flex !important;
    padding: 20px !important;
}

/* ===== MODAL OVERLAY (Background Blur) ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 999;
    cursor: pointer;
}

/* ===== MODAL CONTENT (Main Modal Box) ===== */
/* Bu stil hem productModal hem de cartModal için geçerli */
.modal-content {
    position: relative;
    background: #fff;
    width: 90vw;
    max-width: 900px;
    height: auto;
    max-height: 85vh;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1001;
    animation: none !important;
    transition: none !important;
    transform: none !important; /* Product modal uses Flexbox centering, not transform, usually. But let's be safe. */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* ProductModal özel: Grid düzeni */
#productModal .modal-content {
    flex-direction: row;
}

/* CartModal özel: Dikey düzeni */
#cartModal .modal-content {
    flex-direction: column;
    width: 600px;                             /* DESKTOP: Sabit genişlik */
    max-width: 90vw;                          /* Responsive: ekranın %90'ı max */
    max-height: 90vh;                         /* Ekranın %90'ı max yükseklik */
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.08);
    border: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 100;
    border-radius: 50%;
    color: #222;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--text-light);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    height: auto;
    max-height: calc(85vh - 40px);
    overflow-y: auto;
    box-sizing: border-box;
    flex-grow: 1;
}

/* CartModal'da .modal-grid olmamasına göre, bu CSS sadece ProductModal'a uygulanır */

.modal-image {
    border-radius: 0;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 20px;
    box-sizing: border-box;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.modal-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 32px 28px;
    overflow-y: auto;
    max-height: calc(85vh - 100px);
    box-sizing: border-box;
    flex-grow: 1;
    flex-shrink: 1;
}

.modal-info h2 {
    font-size: 24px;
    margin: 0 0 12px 0;
    line-height: 1.3;
    color: var(--text-primary);
    font-weight: 600;
}

.modal-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 12px 0;
}

.modal-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.size-options,
.color-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 8px 16px;
    font-size: 13px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 500;
    color: #555;
}

.size-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.size-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}


.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 600;
    color: #555;
}

.quantity-btn:hover {
    border-color: var(--primary);
    background: #f5f5f5;
}

#modalQtyInput {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.add-to-cart-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== RESPONSIVE MODAL - DESKTOP ===== */
@media (min-width: 1200px) {
    .modal-content {
        width: 85vw;
        max-width: 950px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .modal-content {
        width: 90vw;
        max-width: 850px;
    }

    .modal-info {
        padding: 28px 24px;
    }

    .modal-info h2 {
        font-size: 22px;
    }

    .modal-price {
        font-size: 20px;
    }

    .cart-modal {
        width: 95vw;
        max-width: 850px;
        height: 80vh;
        max-height: 80vh;
    }
}

/* ===== RESPONSIVE MODAL - TABLET ===== */
@media (min-width: 481px) and (max-width: 767px) {
    .modal-content {
        flex-direction: column;
        width: 95vw;
        max-width: 600px;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }
    
    .modal-image {
        border-radius: 12px 12px 0 0;
        min-height: 300px;
        max-height: 40vh;
        padding: 16px;
    }
    
    .modal-info {
        padding: 20px;
        max-height: calc(95vh - 300px);
        overflow-y: auto;
    }
    
    .modal-info h2 {
        font-size: 18px;
    }
    
    .modal-price {
        font-size: 16px;
    }

    .modal-description {
        font-size: 12px;
    }

    .modal-options {
        gap: 12px;
        margin: 16px 0;
        padding: 16px 0;
    }

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

    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    #modalQtyInput {
        width: 45px;
        height: 32px;
        font-size: 14px;
    }

    .add-to-cart-btn {
        padding: 12px 14px;
        font-size: 13px;
        gap: 8px;
        margin-top: 16px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
}

/* ===== RESPONSIVE MODAL - MOBILE (PHONE) ===== */
@media (max-width: 480px) {
    .modal.active {
        padding: 0 !important;
    }

    .modal-content {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        flex-direction: column !important;
        overflow-y: auto !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        max-height: 100vh;
    }
    
    .modal-image {
        border-radius: 0 !important;
        min-height: 40vh;
        max-height: 40vh;
        padding: 12px;
        flex-shrink: 0;
    }

    .modal-info {
        padding: 16px 12px;
        max-height: 60vh;
        overflow-y: auto;
        flex-grow: 1;
    }

    .modal-info h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .modal-price {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .modal-description {
        font-size: 11px;
        margin: 0 0 12px 0;
        line-height: 1.4;
    }

    .modal-options {
        gap: 10px;
        margin: 12px 0;
        padding: 12px 0;
        border-width: 1px;
    }

    .option-group {
        gap: 8px;
    }

    .option-group label {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .size-options,
    .color-options {
        gap: 6px;
        flex-wrap: wrap;
    }

    .size-btn {
        padding: 5px 10px;
        font-size: 10px;
        border-radius: 3px;
    }

    .quantity-selector {
        gap: 6px;
        margin-top: 2px;
    }

    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
        flex-shrink: 0;
    }

    #modalQtyInput {
        width: 40px;
        height: 30px;
        font-size: 13px;
    }

    .add-to-cart-btn {
        padding: 10px 12px;
        font-size: 12px;
        gap: 6px;
        margin-top: 12px;
        width: 100%;
    }

    .add-to-cart-btn svg {
        width: 16px;
        height: 16px;
    }

    .modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        z-index: 101;
    }

    .modal-close svg {
        width: 18px;
        height: 18px;
    }
}

/* Navbar Mobil Görünüş */
@media (max-width: 768px) {
    .nav-container {
        padding: 12px 16px;
        gap: 10px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .nav-menu {
        display: none;
    }

    .nav-icons {
        gap: 6px;
    }

    .icon-btn {
        padding: 6px;
    }

    .lang-switcher {
        padding: 6px 10px;
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 10px 12px;
        gap: 6px;
    }

    .logo h1 {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .logo .tagline {
        font-size: 8px;
    }

    .nav-icons {
        gap: 3px;
    }

    .icon-btn {
        padding: 4px;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .lang-switcher {
        padding: 5px 8px;
        font-size: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .product-card {
        border-radius: 6px;
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .product-price {
        font-size: 14px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-logo {
        max-width: 200px;
    }

    .hero-description {
        font-size: 13px;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .collection,
    .about,
    .contact {
        padding: 40px 12px;
    }

    .modal-content {
        max-width: 100vw;
        width: 100vw;
        padding: 16px;
        border-radius: 0;
    }

    .modal-grid {
        gap: 16px;
    }

    .modal-image {
        border-radius: 6px;
    }

    .modal-info h2 {
        font-size: 16px;
    }

    .modal-price {
        font-size: 18px;
    }

    .modal-description {
        font-size: 12px;
    }

    .modal-options {
        gap: 12px;
    }

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

    .add-to-cart-btn {
        font-size: 12px;
        padding: 10px;
    }

    .cart-modal {
        width: 100vw;
        max-width: 100vw;
        height: 85vh;
        max-height: 85vh;
        border-radius: 0;
        inset: 0;
        margin: auto;
        transform: none !important;
        top: auto;
        left: auto;
        transition: none !important;
        animation: none !important;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        gap: 10px;
    }

    .item-image {
        width: 100%;
        height: 200px;
    }

    .item-details {
        width: 100%;
    }

    .item-actions {
        width: 100%;
        justify-content: space-between;
    }

    .cart-summary {
        padding: 16px;
    }

    .summary-row {
        font-size: 12px;
    }

    .summary-total {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
/* Modal Blur Effect */
.modal.active .modal-overlay {
    backdrop-filter: blur(35%) !important;
    -webkit-backdrop-filter: blur(35%) !important;
}

/* Order Form Styling */
.order-form {
    margin-top: 28px;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.order-form h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 12px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    color: #222;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #fffbf0;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* Checkout Form Modal in Cart */
#checkoutFormModal {
    padding: 12px 16px;
    overflow: visible;
    overflow-y: auto;
    overflow-x: hidden;
    flex-grow: 1;
    flex-basis: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

#checkoutFormModal .order-form {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: visible;
    overflow-y: visible;
    max-height: none;
}

#checkoutFormModal .order-form h3 {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 700;
}

#checkoutFormModal .form-group {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#checkoutFormModal .form-group label {
    font-size: 11px;
    margin-bottom: 0;
    font-weight: 600;
}

#checkoutFormModal .form-group input,
#checkoutFormModal .form-group textarea {
    padding: 6px 8px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    color: #222;
}

#checkoutFormModal .form-group textarea {
    min-height: 48px;
    max-height: 48px;
    resize: none;
}

#checkoutFormModal .submit-btn {
    width: 100%;
    margin-top: 8px;
    padding: 10px 12px;
    font-size: 12px;
    flex-shrink: 0;
    line-height: 1.4;
    background: linear-gradient(135deg, var(--accent) 0%, #c29d2f 100%);
    color: #222;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    order: 999;
}

.submit-btn {
    width: 100%;
    padding: 14px 20px;
    margin-top: 20px;
    margin-bottom: 0;                          /* Form'un sticky footer tarafından desteklendiğini belirt */
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    
    /* 
    STICKY FOOTER DAVRANIŞI:
    - Form flex-shrink: 0 ile her zaman görünür
    - cartItems scroll etsede bu buton görünür kalır
    - Tıklanabilir ve erişilebilir
    */
}

.submit-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    #checkoutFormModal .order-form h3 {
        font-size: 14px;
        margin-bottom: 3px;
    }

    #checkoutFormModal .form-group input,
    #checkoutFormModal .form-group textarea {
        padding: 5px 7px;
        font-size: 11px;
    }

    #checkoutFormModal .form-group textarea {
        min-height: 45px;
        max-height: 45px;
    }

    #checkoutFormModal .submit-btn {
        padding: 7px 10px;
        font-size: 11px;
    }

    .order-form {
        padding: 16px;
        margin-top: 20px;
    }

    .order-form h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 12px 16px;
        font-size: 13px;
        margin-top: 16px;
    }
}

/* ===== SIFARIŞIN SƏBƏTI (CART MODAL) ÖZEL STİLLERİ ===== */

/* CartModal container - Dikey flex düzeni */
.cart-panel {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    max-height: auto !important;
    padding: 0 !important;
    overflow: visible !important;              /* Scroll burada değil, cartItemsContainer'de */
    box-sizing: border-box;
    
    /* 
    Width, padding, max-height modal-content tarafından tanımlanır
    CartPanel => Flex column olarak: title + cartItems + summary + form
    Her section fixed height ile sabit kalır (flex-shrink: 0)
    */
}

/* Modalın title bölümü */
.cart-panel .cart-title {
    padding: 24px 28px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* CartModal açılınca stiller */
.modal#cartModal.active .modal-overlay {
    z-index: 999;
}

.modal#cartModal.active .modal-content {
    z-index: 1001;
}

/* Sepet konteyneri - SABIT (1 ürün kartı yüksekliği kadar) */
#cartItemsContainer {
    flex-grow: 0;                              /* Kalan alanı DOLDURMA (sabit yükseklik) */
    flex-shrink: 0;                            /* Shrink olmasın (KRITIK!) */
    overflow-y: auto;                          /* Dikey scroll AKTİF (2+ ürün için) */
    overflow-x: hidden;                        /* Yatay scroll bloke */
    padding: 20px 28px;                        /* İç boşluk */
    height: auto;                              /* Otomatik yükseklik */
    max-height: 240px;                         /* KRITIK: 1 ürün = ~200px (padding+gap ile 240px) */
    box-sizing: border-box;
    width: 100%;                               /* Tam genişlik */
    display: flex;                             /* Flex container */
    flex-direction: column;                    /* İçindekiler dikey */
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    
    /* 
    AÇIKLAMASI:
    • 1 ürün = 200px (.cart-item height)
    • padding: 20px (top+bottom) = 40px
    • gap: 12px (varsa)
    • Toplam ≈ 240px
    • 2. ürün gelince, scroll bar açılır
    • Modal ölçüsü ASLA değişmez!
    */
}

/* İç #cartItems div'i - Məhsullar listesi */
#cartItems {
    display: flex;
    flex-direction: column;    /* Kartlar dikey sıralanır */
    gap: 12px;                 /* Kartlar arasında boşluk */
    width: 100%;               /* Tam genişlik */
}

/* Sepet özetlik (SABIT) */
.cart-summary {
    padding: 20px 28px;                        /* Sabit padding */
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;                            /* KRITIK: Sabit kalır */
    height: auto;                              /* Otomatik yükseklik (~80px) */
    /* Scroll sırasında: Özet görülür, ürünler scroll eder */
}

/* Siparış formu (SABIT + STICKY FOOTER OLARAK) */
.order-form {
    padding: 24px 28px;                        /* Sabit padding */
    background: white;                         /* Scroll sırasında üst kısım görünsün */
    border-top: 2px solid #e5e5e5;
    box-sizing: border-box;
    flex-grow: 0;                              /* Büyümesin */
    flex-shrink: 0;                            /* KRITIK: Sabit kalır */
    height: auto;                              /* Otomatik yükseklik */
    width: 100%;                               /* Tam genişlik */
    max-height: 300px;                         /* SABIT: Form uzunsa internal scroll */
    overflow-y: auto;                          /* Form içinde kendi scroll */
    
    /* 
    STICKY FOOTER DAVRANIŞI: 
    flex-shrink: 0 ile form her zaman görünür
    cartItemsContainer scroll etsede form sabit kalır
    Kullanıcı her zaman submit butonunu görebilir
    */
}

/* Boş sepet mesajı */
.empty-cart-message {
    padding: 60px 28px;
    text-align: center;
    color: #7f8c8d;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-cart-message p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* Sepet öğesi - Məhsul kartı (SABIT YÜKSEKLIK) */
.cart-item {
    display: flex;
    align-items: center;
    padding: 16px;                             /* padding: 16px (top+bottom) = 32px */
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    gap: 16px;
    margin-bottom: 0;                          /* margin-bottom: 0 (gap kullan) */
    background: #fafafa;
    transition: all 0.2s;
    box-sizing: border-box;
    width: 100%;                               /* Tam genişlik */
    min-width: 0;                              /* Flexbox overflow düzelt */
    flex-wrap: nowrap;                         /* Alt alta gitmesin */
    flex-shrink: 0;                            /* Shrink olmasın (sabit yükseklik) */
    height: auto;                              /* Otomatik (100px img + text) */
    /* Toplam: ~200px (100px img + 90px text + 16px padding×2) */
}

.cart-item:hover {
    border-color: #ddd;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;            /* Image boyutunu küçültme */
    border: 1px solid #e5e5e5;
}

.cart-item-info {
    flex-grow: 1;              /* Kalan alanı doldur */
    flex-shrink: 1;            /* Küçültülebilir */
    min-width: 0;              /* Flexbox overflow'u düzelt */
    overflow: hidden;          /* İçerik taşmasını engelle */
}

.cart-item-info h4 {
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 6px 0;
    color: #222;
}

.cart-item-info p {
    font-size: 13px;
    color: #666;
    margin: 4px 0;
}

.cart-item-info .item-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;            /* Düğmeyi küçültme */
    min-width: 32px;           /* Minimum genişlik */
    min-height: 32px;          /* Minimum yükseklik */
}

.remove-item-btn:hover {
    color: #d32f2f;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 4px;
}

/* Özet satırı */
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.summary-item span:last-child {
    font-weight: 600;
}

/* Responsive CartModal - Tablet (@max-width: 767px) */
@media (max-width: 767px) {
    #cartModal .modal-content {
        width: 95vw !important;                /* Tablet: ekranın %95'i */
        max-width: 550px !important;           /* Max 550px */
        max-height: 85vh !important;           /* Tablet'te %85 */
    }

    .cart-panel {
        /* Width/height #cartModal .modal-content tarafından tanımlanır */
    }

    .cart-panel .cart-title {
        padding: 16px 20px;
        font-size: 18px;
    }

    #cartItemsContainer {
        padding: 16px 20px;
        max-height: 220px;                     /* SABIT: Tablet'te 1 ürün daha dar */
        overflow-y: auto;
    }

    #cartItems {
        gap: 10px;
    }

    .cart-summary {
        padding: 16px 20px;
    }

    .order-form {
        padding: 16px 20px;
        max-height: 280px;
        overflow-y: auto;
    }

    .submit-btn {
        padding: 12px 16px;
        font-size: 14px;
        margin-top: 16px;
    }

    .cart-item {
        padding: 12px;
        gap: 12px;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .cart-item img {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .cart-item-info {
        flex-grow: 1;
        flex-shrink: 1;
        min-width: 0;
    }

    .cart-item-info h4 {
        font-size: 14px;
        white-space: nowrap;   /* Başlık kırılmasın */
        overflow: hidden;
        text-overflow: ellipsis; /* "..." göster */
    }

    .cart-item-info p {
        font-size: 12px;
    }

    .remove-item-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    /* ===== MOBILE: EKRAN MERKEZDEKI MODAL ===== */
    #cartModal .modal-content {
        width: 95vw !important;                /* Mobile: ekranın %95'i */
        max-width: 100vw !important;           /* Max ekran genişliği */
        max-height: 85vh !important;           /* Mobile'de %85 yükseklik */
        border-radius: 12px !important;        /* Köşe yuvarlaklaştırma */
    }

    .cart-panel {
        /* Width/height #cartModal .modal-content tarafından tanımlanır */
    }

    .cart-panel .cart-title {
        padding: 16px 16px;
        font-size: 16px;
    }

    #cartItemsContainer {
        padding: 12px 16px;
        max-height: 200px;                     /* SABIT: Mobile 1 ürün */
        overflow-y: auto;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    #cartItems {
        gap: 8px;
    }

    .order-form {
        padding: 12px 16px;
        max-height: 260px;                     /* SABIT: Mobile form */
        overflow-y: auto;
        border-top: 1px solid #e5e5e5;
    }

    .submit-btn {
        padding: 12px 14px;
        font-size: 13px;
        margin-top: 12px;
    }

    .cart-item {
        padding: 10px;
        gap: 10px;
        margin-bottom: 0;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .cart-item img {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .cart-item-info {
        flex-grow: 1;
        flex-shrink: 1;
        min-width: 0;          /* Text overflow'unu düzelt */
    }

    .cart-item-info h4 {
        font-size: 13px;
        white-space: nowrap;   /* Başlık kırılmasın */
        overflow: hidden;
        text-overflow: ellipsis; /* "..." göster */
    }

    .cart-item-info p {
        font-size: 12px;
        white-space: nowrap;   /* Metin kırılmasın */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .remove-item-btn {
        flex-shrink: 0;
        min-width: 28px;
        min-height: 28px;
    }
}
/* ===== HAMBURGER MENU ===== */
.hamburger-btn {
    display: none;
    position: relative;
    width: 30px;
    height: 30px;
    padding: 0;
    margin-right: auto;
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #222;
    font-size: 28px;
    line-height: 1;
    transition: transform 0.3s ease;
    z-index: 101;
}

.hamburger-btn:hover {
    transform: scale(1.1);
}

.hamburger-btn.active {
    transform: rotate(90deg);
}

/* Mobile nav-menu styling */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
        grid-template-columns: auto auto 1fr auto;
        gap: 8px;
    }

    .hamburger-btn {
        display: block;
        order: 2;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 0;
        background: #fff;
        box-shadow: none;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        list-style: none;
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 99;
        border-bottom: 1px solid #eee;
    }

    .nav-menu.open {
        height: auto;
        padding: 8px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .nav-menu li {
        margin: 0;
        padding: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
        text-decoration: none;
        color: #222;
        font-size: 14px;
        font-weight: 500;
        transition: background 0.2s;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: #f9f9f9;
        color: var(--accent);
    }

    .nav-menu li a.active::after {
        display: none;
    }

    .nav-icons {
        order: 3;
    }
}

@media (max-width: 600px) {
    .hamburger-btn {
        width: 28px;
        height: 28px;
        font-size: 24px;
    }

    .nav-menu {
        top: 56px;
    }

    .nav-menu li a {
        padding: 10px 16px;
        font-size: 13px;
    }

    .logo h1 {
        order: 1;
    }

    /* Mobil görünüşdə Gallery-banner arasındakı qara xətti gizlət */
    .section-header {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
    }

    .section-header::after,
    .section-header::before {
        display: none !important;
    }
    
    .section-title {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
    }

    .section-title::after,
    .section-title::before {
        display: none !important;
    }
    
    .filter-bar {
        border-top: none !important;
        border-bottom: none !important;
        border: none !important;
    }

    .collection {
        border-top: none !important;
        border-bottom: none !important;
    }
}

/* ===== MOBILE NAVIGATION MODAL ===== */
@media (max-width: 600px) {
    .hamburger-btn {
        display: block !important;
    }
    
    .nav-menu {
        display: none !important;
    }
}

@media (min-width: 601px) {
    .hamburger-btn {
        display: none !important;
    }
    
    .mobile-nav-modal {
        display: none !important;
    }
}