/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
    --color-primary: linear-gradient(135deg, #6A8E4E 0%, #93C572 50%, #B0DFA0 100%);
    --color-antep-dark: #6A8E4E;
    --color-antep-mid: #93C572;
    --color-antep-light: #B0DFA0;
    --color-antep-bright: #C4E8B4;
    --color-pistachio-dark: #6A8E4E;
    --color-pistachio-mid: #93C572;
    --color-pistachio-light: #B0DFA0;
    --color-pistachio-bright: #C4E8B4;
    --color-gold: #93C572;
    --color-gold-light: #C4E8B4;
    --color-gold-dark: #6A8E4E;
    --color-text-primary: #e0e0e0;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #888888;
    --color-border: rgba(147, 197, 114, 0.3);
    --gradient-pistachio: linear-gradient(135deg, #6A8E4E 0%, #93C572 50%, #B0DFA0 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(106, 142, 78, 0.4) 0%, rgba(147, 197, 114, 0.8) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* About Page Background Mask */
body.about-page {
    position: relative;
}

body.about-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/arkaplan5.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: -1;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-primary);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ============================================
   Container
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ============================================
   Navigation - Premium Header
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(0px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--color-border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo Section */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 90px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(1);
}

.logo:hover .logo-image {
    filter: brightness(1.1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-image {
        height: 70px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 55px;
        max-width: 200px;
    }
}

/* Navigation Menu Wrapper */
.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-pistachio);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Instagram Link */
.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    margin-left: 0.5rem;
}

.instagram-link::after {
    display: none;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.instagram-link:hover .instagram-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

/* TikTok Link */
.tiktok-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    margin-left: 0;
}

/* Keep TikTok icon right next to Instagram - reduce gap between them */
.nav-menu li:has(.instagram-link) + li:has(.tiktok-link) {
    margin-left: -2rem;
}

.tiktok-link::after {
    display: none;
}

.tiktok-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.tiktok-link:hover .tiktok-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

/* Facebook Link */
.facebook-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    margin-left: 0;
}

.facebook-link::after {
    display: none;
}

/* Language Selector - Modern Dropdown Style */
.lang-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
    z-index: 1001;
}

.lang-selector {
    position: relative;
    z-index: 1002;
}

.lang-selector-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1.5px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    min-width: 65px;
    justify-content: center;
    position: relative;
    z-index: 1003;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.lang-selector-toggle:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: var(--color-pistachio-mid);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 168, 58, 0.2);
}

.lang-selector-toggle.active {
    background: rgba(147, 197, 114, 0.15);
    border-color: var(--color-pistachio-light);
    box-shadow: 0 4px 16px rgba(107, 168, 58, 0.3);
}

.lang-selector-toggle .lang-flag {
    font-size: 1.15rem;
    line-height: 1;
    display: inline-block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

.lang-selector-toggle .lang-code {
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    pointer-events: none;
}

.lang-selector-toggle::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.25rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.lang-selector-toggle.open::after {
    transform: rotate(180deg);
}

/* Language Dropdown Menu */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1.5px solid var(--color-border);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    z-index: 1004;
    pointer-events: none;
}

.lang-selector.open .lang-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
}

.lang-selector-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    width: 100%;
    text-align: left;
    position: relative;
    pointer-events: auto;
    z-index: 1005;
}

.lang-selector-btn:hover {
    background: rgba(147, 197, 114, 0.1);
    color: var(--color-text-primary);
    transform: translateX(4px);
}

.lang-selector-btn.active {
    background: rgba(147, 197, 114, 0.2);
    color: var(--color-pistachio-light);
    font-weight: 600;
}

.lang-selector-btn.active::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: var(--color-pistachio-light);
    font-weight: bold;
    font-size: 0.875rem;
}

.lang-selector-btn .lang-flag {
    font-size: 1.25rem;
    line-height: 1;
    display: inline-block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    width: 24px;
    text-align: center;
}

.lang-selector-btn .lang-code {
    font-weight: 600;
    letter-spacing: 0.5px;
    flex: 1;
}

.facebook-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.facebook-link:hover .facebook-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

/* Keep Facebook icon right next to TikTok */
.nav-menu li:has(.tiktok-link) + li:has(.facebook-link) {
    margin-left: -2rem;
}

@media (max-width: 768px) {
    .instagram-link {
        margin-left: 0;
        padding: 1.25rem 0;
    }
    
    .instagram-icon {
        width: 28px;
        height: 28px;
    }
    
    .tiktok-link {
        margin-left: 0;
        padding: 1.25rem 0;
    }
    
    .tiktok-icon {
        width: 28px;
        height: 28px;
    }
    
    .facebook-link {
        margin-left: 0;
        padding: 1.25rem 0;
    }
    
    .facebook-icon {
        width: 28px;
        height: 28px;
    }
}

/* CTA Button */
.btn-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--gradient-pistachio);
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(107, 168, 58, 0.3);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 168, 58, 0.5);
}

.btn-cta:hover::before {
    left: 100%;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--color-text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .nav-menu-wrapper {
        gap: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        border-left: 2px solid var(--color-pistachio-mid);
        overflow-y: auto;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .nav-menu-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(180deg, rgba(107, 168, 58, 0.1) 0%, transparent 100%);
        pointer-events: none;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(107, 168, 58, 0.1);
    }

    .nav-link {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.1rem;
        width: 100%;
        color: var(--color-text-primary);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-pistachio-light);
        padding-left: 1rem;
    }

    /* Sosyal medya butonlarını mobilde yan yana hizala */
    .nav-menu li:has(.instagram-link) {
        margin-top: 1rem;
        border-top: 1px solid rgba(107, 168, 58, 0.1);
        padding-top: 1rem;
        width: 100%;
    }

    .nav-menu li:has(.instagram-link),
    .nav-menu li:has(.tiktok-link),
    .nav-menu li:has(.facebook-link) {
        width: auto;
        border-bottom: none;
        border-top: none;
        display: inline-flex;
        flex: 0 0 auto;
        margin-right: 1.5rem;
        margin-bottom: 0;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Facebook linkinin mobil menüde hizalamasını düzelt */
    .nav-menu li:has(.facebook-link) {
        margin-left: 0 !important;
    }
    
    /* Language selector in mobile menu */
    .nav-menu li:has(.lang-selector) {
        width: 100%;
        border-bottom: 1px solid rgba(107, 168, 58, 0.1);
        padding: 1rem 0;
        margin-top: 1rem;
        border-top: 1px solid rgba(107, 168, 58, 0.1);
    }
    
    .lang-selector-wrapper {
        margin-left: 0;
        width: 100%;
    }
    
    .lang-selector {
        width: 100%;
        position: relative;
    }
    
    .lang-selector-toggle {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .lang-dropdown {
        width: 100%;
        position: relative;
        right: auto;
        top: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .lang-selector-btn {
        text-align: left;
        padding: 1rem;
    }

    /* İlk sosyal medya linkinden sonraki linkleri de aynı satıra al */
    .nav-menu li:has(.instagram-link) ~ li:has(.tiktok-link),
    .nav-menu li:has(.tiktok-link) ~ li:has(.facebook-link) {
        margin-left: 0;
    }

    /* Mobil menüde sosyal medya linklerinin padding'ini eşitle */
    .nav-menu li:has(.instagram-link) .instagram-link,
    .nav-menu li:has(.tiktok-link) .tiktok-link,
    .nav-menu li:has(.facebook-link) .facebook-link {
        padding: 0.5rem !important;
        margin-left: 0 !important;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        margin-top: 1rem;
        box-shadow: 0 4px 20px rgba(107, 168, 58, 0.4);
    }

    .btn-cta:hover {
        box-shadow: 0 6px 30px rgba(107, 168, 58, 0.6);
    }

    /* Mobile menu overlay */
    .nav-menu-wrapper.active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.9);
        z-index: 999;
        backdrop-filter: blur(4px);
        pointer-events: auto;
    }
    
    /* Ensure lang selector is clickable even when mobile menu is open */
    .nav-menu-wrapper.active .lang-selector {
        z-index: 1003 !important;
        position: relative;
    }
    
    .nav-menu-wrapper.active .lang-selector-toggle {
        z-index: 1004 !important;
        pointer-events: auto !important;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .logo-accent {
        width: 50px;
        height: 2.5px;
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-pistachio);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-pistachio-mid);
}

.btn-secondary:hover {
    background: var(--color-pistachio-mid);
    border-color: var(--color-pistachio-mid);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-border);
}

.btn-outline:hover {
    background: rgba(107, 168, 58, 0.1);
    border-color: var(--color-pistachio-light);
}

/* ============================================
   Hero Section - Premium Full Screen
   ============================================ */

.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image-placeholder,
.hero-background img,
.hero-image,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.6) 0%, rgba(42, 42, 42, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
    width: 100%;
    max-width: 1200px;
}

.hero-content:not(.animate-to-corner) {
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                top 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                left 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                bottom 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                width 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                text-align 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, top, left, bottom, width, max-width;
}

.hero-content.animate-to-corner {
    top: auto;
    left: 2rem;
    bottom: 4rem;
    transform: translate(0, 0);
    width: auto;
    max-width: 600px;
    text-align: left;
    padding: 0;
}

.hero-content.animate-to-corner .container {
    padding: 0;
}

.hero-content.animate-to-corner .hero-title-premium {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 1rem;
    animation: none;
}

.hero-content.animate-to-corner .hero-subtitle-premium {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 1.5rem;
    animation: none;
}

.hero-content.animate-to-corner .hero-buttons {
    justify-content: flex-start;
    animation: none;
}

@media (max-width: 768px) {
    .hero-content.animate-to-corner {
        bottom: 2rem;
        left: 1.5rem;
        max-width: calc(100% - 3rem);
    }
}

@media (max-width: 480px) {
    .hero-content.animate-to-corner {
        bottom: 1.5rem;
        left: 1rem;
        max-width: calc(100% - 2rem);
    }
}

.hero-title-premium {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--color-text-primary);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle-premium {
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    width: 220px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--gradient-pistachio);
    animation: scrollIndicator 2s infinite;
    border-radius: 2px;
}

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

@keyframes scrollIndicator {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(15px);
    }
}

/* Video Mute Toggle Button */
.video-mute-toggle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-pistachio-mid);
    border-radius: 50%;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.video-mute-toggle:hover {
    background: var(--gradient-pistachio);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(107, 168, 58, 0.5);
}

.video-mute-toggle svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.video-mute-toggle .unmute-icon {
    display: none;
}

.video-mute-toggle.muted .mute-icon {
    display: none;
}

.video-mute-toggle.muted .unmute-icon {
    display: block;
}

@media (max-width: 768px) {
    .video-mute-toggle {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .video-mute-toggle svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .video-mute-toggle {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }

    .video-mute-toggle svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   Brand Story Teaser
   ============================================ */

.brand-story-teaser {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    padding: 8rem 0;
}

.story-teaser-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-pistachio-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.story-lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* ============================================
   Highlight Cards
   ============================================ */

.highlight-cards {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.highlight-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pistachio);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-pistachio-mid);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-pistachio);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    box-shadow: 0 4px 20px rgba(107, 168, 58, 0.3);
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(107, 168, 58, 0.5);
}

.highlight-icon svg {
    width: 40px;
    height: 40px;
}

.highlight-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.highlight-description {
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   Featured Products Slider
   ============================================ */

.featured-products-slider {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    padding: 6rem 0;
}

.products-slider-wrapper {
    position: relative;
    margin: 3rem 0;
}

.products-slider {
    overflow: hidden;
    margin: 0 4rem;
}

.products-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.product-slide {
    min-width: 100%;
    flex-shrink: 0;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
}

.product-card-slider {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-slider:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-pistachio-mid);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--color-pistachio-mid);
    border-radius: 50%;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--gradient-pistachio);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(107, 168, 58, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--color-pistachio-light);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .products-slider {
        margin: 0 3rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .product-slide {
        padding: 0 0.5rem;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .products-slider {
        margin: 0 2.5rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }
}

/* ============================================
   Gallery Preview
   ============================================ */

.gallery-preview {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 0;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-preview-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.gallery-preview-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

.gallery-preview-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-pistachio-mid);
    z-index: 2;
}

.gallery-preview-item .image-placeholder,
.gallery-preview-item img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    display: block;
}

@media (max-width: 968px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-preview-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-preview-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* ============================================
   Instagram Preview
   ============================================ */

.instagram-preview {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    padding: 6rem 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.instagram-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.instagram-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-pistachio-mid);
}

.instagram-item .image-placeholder {
    border-radius: 0;
    height: 100%;
    aspect-ratio: 1;
}

.instagram-item .placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.instagram-item .placeholder-content svg {
    width: 40px;
    height: 40px;
    color: rgba(26, 26, 26, 0.2);
}

.instagram-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-pistachio-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

/* ============================================
   About Preview Section
   ============================================ */

.about-preview {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-image,
.image-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-pistachio-dark) 0%, var(--color-pistachio-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.image-placeholder.large {
    aspect-ratio: 16/10;
}

.placeholder-content {
    text-align: center;
    color: rgba(26, 26, 26, 0.3);
    font-size: 1.25rem;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Featured Products
   ============================================ */

.featured-products {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-pistachio-mid);
}

.product-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-image .image-placeholder,
.product-image img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.product-description {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hide product name and price in featured products slider */
.featured-products-slider .product-name,
.featured-products-slider .product-price {
    display: none;
}

.section-footer {
    text-align: center;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-pistachio-mid);
}

.gallery-item .image-placeholder {
    border-radius: 0;
    aspect-ratio: 4/3;
    height: 100%;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ============================================
   Experience Section
   ============================================ */

.experience {
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.experience-item {
    text-align: center;
    padding: 2rem;
}

.experience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-pistachio);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    box-shadow: var(--shadow-md);
}

.experience-icon svg {
    width: 40px;
    height: 40px;
}

.experience-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.experience-item p {
    color: var(--color-text-secondary);
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin-top: 70px;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
}

/* ============================================
   Story Section
   ============================================ */

.story-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Values Section
   ============================================ */

.values-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-pistachio-mid);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: var(--gradient-pistachio);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ============================================
   Heritage Section
   ============================================ */

.heritage-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.heritage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .heritage-content {
        grid-template-columns: 1fr;
    }

    .heritage-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Menu Section
   ============================================ */

.menu-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient-pistachio);
    border-color: transparent;
    color: var(--color-text-primary);
}

.menu-category {
    margin-bottom: 5rem;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-pistachio-mid);
}

.menu-item.hidden {
    display: none;
}

.menu-item-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.menu-item-image .image-placeholder {
    border-radius: 0;
    aspect-ratio: 16/10;
}

.menu-item-content {
    padding: 2rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.menu-item-name {
    font-size: 1.5rem;
    margin: 0;
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-item-description {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    padding: 8rem 0 6rem;
    margin-top: 70px;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header .lead {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.contact-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-pistachio);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-pistachio-light);
    box-shadow: 0 12px 40px rgba(147, 197, 114, 0.2);
}

.contact-card:hover::before {
    opacity: 0.05;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-pistachio);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(147, 197, 114, 0.3);
    flex-shrink: 0;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(147, 197, 114, 0.4);
}

.contact-card-icon svg {
    width: 36px;
    height: 36px;
}

.contact-card-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    font-weight: 600;
    flex-shrink: 0;
}

.contact-card-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    word-break: break-word;
    gap: 0.25rem;
}

.contact-card-content p br {
    display: block;
    content: "";
    margin-top: 0.25rem;
}

.contact-card-content p strong {
    color: var(--color-pistachio-light);
    font-weight: 600;
}

.contact-phone {
    color: var(--color-pistachio-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
}

.contact-phone:hover {
    color: var(--color-pistachio-bright);
    transform: scale(1.05);
}

.contact-link {
    color: var(--color-pistachio-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1.1rem;
    display: inline-block;
}

.contact-link:hover {
    color: var(--color-pistachio-bright);
    transform: scale(1.05);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .contact-card {
        padding: 1.25rem 1rem;
        min-height: 140px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .contact-card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
        flex-shrink: 0;
    }
    
    .contact-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-card-content h3 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        flex-shrink: 0;
    }
    
    .contact-card-content p {
        font-size: 0.7rem;
        line-height: 1.5;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        word-break: break-word;
        gap: 0.25rem;
    }
    
    .contact-card-content p br {
        display: block;
        content: "";
        margin-top: 0.25rem;
        height: 0.5rem;
    }
    
    .contact-phone,
    .contact-link {
        font-size: 0.7rem;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .contact-card {
        padding: 1rem 0.75rem;
        min-height: 130px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .contact-card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    
    .contact-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
        flex-shrink: 0;
    }
    
    .contact-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-card-content h3 {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
        flex-shrink: 0;
    }
    
    .contact-card-content p {
        font-size: 0.65rem;
        line-height: 1.4;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        word-break: break-word;
        gap: 0.2rem;
    }
    
    .contact-card-content p br {
        display: block;
        content: "";
        margin-top: 0.2rem;
        height: 0.4rem;
    }
    
    .contact-phone,
    .contact-link {
        font-size: 0.65rem;
    }
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--color-text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pistachio-light);
    box-shadow: 0 0 0 3px rgba(107, 168, 58, 0.2);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--color-pistachio-light);
    outline-offset: 2px;
}

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


/* ============================================
   Contact Page Enhancements
   ============================================ */

.contact-link {
    color: var(--color-pistachio-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--color-pistachio-bright);
    text-decoration: underline;
}

/* ============================================
   Map Section
   ============================================ */

.map-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 0;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-border);
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-pistachio);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.google-map {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.3s ease;
}

.map-wrapper:hover .google-map {
    filter: grayscale(0%) brightness(1);
}

@media (max-width: 768px) {
    .map-section {
        padding: 4rem 0;
    }

    .google-map {
        height: 350px;
    }
}

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

/* ============================================
   Footer
   ============================================ */

.footer {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
    position: relative;
    display: block;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

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

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.footer-section ul li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--color-pistachio-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ============================================
   Responsive Adjustments
   ============================================ */

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .products-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   Story Page - Künefenin Hikâyesi
   ============================================ */

.story-page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 10rem 0 6rem;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.story-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/arkaplan4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
}

.story-page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
    pointer-events: none;
}

.story-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.story-page-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-pistachio-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.story-page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--color-text-secondary);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
}

/* Story Timeline */
.story-timeline {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    padding: 4rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-pistachio);
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.3;
}

/* Story Sections */
.story-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.story-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content-wrapper.reverse {
    direction: rtl;
}

.story-content-wrapper.reverse > * {
    direction: ltr;
}

.story-image-wrapper {
    position: relative;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.story-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--color-pistachio-mid);
}

.story-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--gradient-pistachio);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 2;
    font-family: 'Playfair Display', serif;
}

.story-section-right .story-number {
    left: auto;
    right: -20px;
}

.story-text-wrapper {
    padding: 2rem 0;
}

.story-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-pistachio);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(107, 168, 58, 0.3);
}

.story-icon svg {
    width: 30px;
    height: 30px;
}

.story-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--color-text-primary);
}

.story-lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-text {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.story-highlight-box {
    background: linear-gradient(135deg, rgba(107, 168, 58, 0.1) 0%, rgba(45, 80, 22, 0.1) 100%);
    border-left: 4px solid var(--color-pistachio-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.highlight-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

/* Timeline Separators */
.timeline-separator {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    z-index: 2;
}

.timeline-separator.final {
    padding-bottom: 6rem;
}

.separator-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    border: 3px solid var(--color-pistachio-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-pistachio-light);
    box-shadow: 0 4px 20px rgba(107, 168, 58, 0.3);
    position: relative;
    z-index: 3;
}

.separator-icon svg {
    width: 28px;
    height: 28px;
}

/* Story CTA Section */
.story-cta {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 6rem 0;
    text-align: center;
}

.story-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Story Page */
@media (max-width: 968px) {
    .timeline-line {
        left: 30px;
    }

    .story-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-content-wrapper.reverse {
        direction: ltr;
    }

    .story-number {
        position: relative;
        top: 0;
        left: 0;
        right: auto;
        margin-bottom: 1.5rem;
        display: inline-flex;
    }

    .story-section-right .story-number {
        right: auto;
        left: 0;
    }

    .story-text-wrapper {
        padding: 0;
    }

    .separator-icon {
        left: 30px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .story-page-header {
        padding: 8rem 0 4rem;
    }

    .story-section {
        padding: 4rem 0;
    }

    .story-image {
        aspect-ratio: 16/10;
    }

    .story-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Products Listing Page
   ============================================ */

.products-page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-header-images-split {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    overflow: hidden;
}

.products-header-image-wrapper {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.products-header-image-wrapper.products-header-image-left {
    border-right: 2px solid rgba(147, 197, 114, 0.5);
    box-shadow: 2px 0 6px rgba(147, 197, 114, 0.6);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.products-header-image-wrapper.products-header-image-left::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -50%;
    width: 4px;
    height: 200%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(147, 197, 114, 0.3) 20%,
        rgba(147, 197, 114, 0.8) 50%,
        rgba(147, 197, 114, 0.3) 80%,
        transparent 100%);
    z-index: 1;
    pointer-events: none;
    animation: lightSweep 3s ease-in-out infinite;
}

.products-header-image-wrapper.products-header-image-left:hover {
    border-right-color: rgba(147, 197, 114, 0.8);
    box-shadow: 2px 0 12px rgba(147, 197, 114, 0.8), 
                4px 0 20px rgba(147, 197, 114, 0.6);
}

.products-header-image-wrapper.products-header-image-right {
    border-left: 2px solid rgba(147, 197, 114, 0.5);
    box-shadow: -2px 0 6px rgba(147, 197, 114, 0.6);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.products-header-image-wrapper.products-header-image-right::after {
    content: '';
    position: absolute;
    left: -1px;
    top: -50%;
    width: 4px;
    height: 200%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(147, 197, 114, 0.3) 20%,
        rgba(147, 197, 114, 0.8) 50%,
        rgba(147, 197, 114, 0.3) 80%,
        transparent 100%);
    z-index: 1;
    pointer-events: none;
    animation: lightSweep 3s ease-in-out infinite;
}

.products-header-image-wrapper.products-header-image-right:hover {
    border-left-color: rgba(147, 197, 114, 0.8);
    box-shadow: -2px 0 12px rgba(147, 197, 114, 0.8), 
                -4px 0 20px rgba(147, 197, 114, 0.6);
}

@keyframes lightSweep {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.products-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.products-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
}

.products-header-content {
    position: absolute;
    bottom: 4rem;
    left: 2rem;
    z-index: 2;
    max-width: 600px;
    padding: 0;
    width: auto;
    text-align: left;
}

.products-page-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-pistachio-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.products-page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.products-page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Filters */
.products-filters {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.875rem 2rem;
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text-secondary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-pistachio);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.filter-tab:hover {
    border-color: var(--color-pistachio-mid);
    color: var(--color-text-primary);
}

.filter-tab:hover::before {
    left: 0;
}

.filter-tab.active {
    background: var(--gradient-pistachio);
    border-color: transparent;
    color: var(--color-text-primary);
    box-shadow: 0 4px 15px rgba(107, 168, 58, 0.3);
}

.filter-tab.active::before {
    left: 0;
}

/* Products Grid Listing - Premium Design */
.products-listing {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 6rem 0;
}

.products-grid-listing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

/* Premium Product Card */
.product-card-listing {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(147, 197, 114, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    height: 100%;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Glassmorphism overlay */
.product-card-listing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(147, 197, 114, 0.02) 0%, 
        rgba(106, 142, 78, 0.01) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.product-card-listing:hover::before {
    opacity: 1;
}

/* Pistachio green glow on hover */
.product-card-listing::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(147, 197, 114, 0.3) 0%, 
        rgba(106, 142, 78, 0.2) 50%,
        rgba(147, 197, 114, 0.3) 100%);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: -1;
    filter: blur(12px);
}

.product-card-listing:hover::after {
    opacity: 1;
}

.product-card-listing.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95);
}

/* Card lift and glow on hover */
.product-card-listing:hover {
    transform: translateY(-12px);
    border-color: rgba(147, 197, 114, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(147, 197, 114, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Product Image Container */
.product-image-listing {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #000;
    width: 100%;
    flex-shrink: 0;
}

.product-image-listing img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Image zoom on hover */
.product-card-listing:hover .product-image-listing img {
    transform: scale(1.08);
}

/* Dark gradient overlay at bottom of image for text readability */
.product-image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
}

.product-card-listing:hover .product-image-gradient {
    opacity: 0.95;
}

/* Product Content */
.product-content-listing {
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 10, 0.95) 0%,
        rgba(26, 26, 26, 0.98) 100%);
}

/* Premium Typography - Product Name */
.product-name-listing {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    margin: 0;
    color: #f5f5f0;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease-in-out;
}

.product-card-listing:hover .product-name-listing {
    color: #fffef8;
}

.product-description-listing {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
    max-width: 100%;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.375rem 0.875rem;
    background: rgba(107, 168, 58, 0.1);
    border: 1px solid rgba(107, 168, 58, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-pistachio-light);
    font-weight: 500;
}

.product-footer-listing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.product-price-listing {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-product-order {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-pistachio);
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(107, 168, 58, 0.3);
    white-space: nowrap;
}

.btn-product-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 168, 58, 0.5);
}

/* Products CTA */
.products-cta {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 6rem 0;
    text-align: center;
}

.products-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.products-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-cta-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Responsive Design for Products Page */
@media (max-width: 1024px) {
    .products-grid-listing {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-listing {
        padding: 4rem 0;
    }

    .filter-tabs {
        gap: 0.75rem;
    }

    .filter-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .products-grid-listing {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-card-listing {
        border-radius: 24px;
    }

    .product-card-listing::after {
        border-radius: 24px;
    }

    .product-content-listing {
        padding: 2rem 1.5rem;
    }

    .product-name-listing {
        font-size: 1.65rem;
    }

    .product-description-listing {
        font-size: 0.85rem;
    }

    .product-footer-listing {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .btn-product-order {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products-grid-listing {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card-listing {
        border-radius: 20px;
    }

    .product-card-listing::after {
        border-radius: 20px;
    }

    .product-content-listing {
        padding: 1.75rem 1.25rem;
    }

    .product-name-listing {
        font-size: 1.5rem;
    }

    .product-description-listing {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .products-page-header {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }
    
    .products-header-content {
        bottom: 2rem;
        left: 1.5rem;
        max-width: calc(100% - 3rem);
        padding: 0;
    }
}

@media (max-width: 480px) {
    .products-page-header {
        min-height: 40vh;
        padding: 6rem 0 3rem;
    }
    
    .products-header-content {
        bottom: 1.5rem;
        left: 1rem;
        max-width: calc(100% - 2rem);
    }

    .product-content-listing {
        padding: 1.5rem;
    }

    .product-name-listing {
        font-size: 1.5rem;
    }

    .product-description-listing {
        min-height: auto;
    }
}

/* ============================================
   Visual Gallery Page
   ============================================ */

.gallery-page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-header-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gallery-header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 1;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
}

.gallery-header-content {
    position: absolute;
    bottom: 4rem;
    left: 2rem;
    z-index: 2;
    max-width: 600px;
    padding: 0;
    width: auto;
    text-align: left;
}

.gallery-page-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-pistachio-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gallery-page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.gallery-page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-primary);
    font-weight: 400;
    line-height: 1.8;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

/* Gallery Filters */
.gallery-filters {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 70px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-filter-tab {
    padding: 0.875rem 2rem;
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text-secondary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.gallery-filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-pistachio);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.gallery-filter-tab:hover {
    border-color: var(--color-pistachio-mid);
    color: var(--color-text-primary);
}

.gallery-filter-tab:hover::before {
    left: 0;
}

.gallery-filter-tab.active {
    background: var(--gradient-pistachio);
    border-color: transparent;
    color: var(--color-text-primary);
    box-shadow: 0 2px 8px rgba(107, 168, 58, 0.2);
}

.gallery-filter-tab.active::before {
    left: 0;
}

/* Gallery Masonry Grid */
.visual-gallery {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    padding: 4rem 0 6rem;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95);
}

.gallery-item.large {
    /* Removed - all items same size now */
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-item.large .gallery-image {
    aspect-ratio: 4/3;
}

.gallery-image .image-placeholder,
.gallery-image img,
.gallery-image video {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image img,
.gallery-image video {
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-item:hover .gallery-image video {
    transform: scale(1.15);
}

.gallery-image .image-placeholder .placeholder-content {
    position: relative;
    z-index: 1;
    color: rgba(26, 26, 26, 0.4);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image .image-placeholder {
    transform: scale(1.15);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(107, 168, 58, 0.1);
    border-color: var(--color-pistachio-mid);
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-pistachio-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-pistachio-light);
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-icon {
    background: var(--gradient-pistachio);
    border-color: transparent;
    color: var(--color-text-primary);
    transform: scale(1.1);
}

.gallery-icon svg {
    width: 24px;
    height: 24px;
}

.gallery-caption {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lightbox-image-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.lightbox-image-wrapper img,
.lightbox-image-wrapper video {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
}

.lightbox.active .lightbox-image-wrapper {
    transform: scale(1);
}

.lightbox-image-placeholder {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    max-height: 80vh;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-caption {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    max-width: 800px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-pistachio-mid);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gradient-pistachio);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-filters {
        top: 0;
        position: relative;
    }

    .gallery-filter-tabs {
        gap: 0.75rem;
    }

    .gallery-filter-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item.large {
        grid-row: span 1;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-caption {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-page-header {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }
    
    .gallery-header-content {
        bottom: 2rem;
        left: 1.5rem;
        max-width: calc(100% - 3rem);
        padding: 0;
    }
}

@media (max-width: 480px) {
    .gallery-page-header {
        min-height: 40vh;
        padding: 6rem 0 3rem;
    }
    
    .gallery-header-content {
        bottom: 1.5rem;
        left: 1rem;
        max-width: calc(100% - 2rem);
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }

    .gallery-caption {
        font-size: 1rem;
    }
}

/* ============================================
   About Us Page - Minimal & Typography Focused
   ============================================ */

/* About Hero Image - Removed */

/* About Content Blocks */
.about-brand-story,
.about-mission,
.about-quality,
.about-tradition {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
    padding: 8rem 0;
}

.about-content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content-block + .about-content-block {
    margin-top: 6rem;
}

.about-section-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-pistachio-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: var(--color-text-primary);
    font-family: 'Playfair Display', serif;
}

.about-text-block {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.about-lead {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.about-text-block p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-text-block p:last-child {
    margin-bottom: 0;
}

.about-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.8;
    margin-top: 3rem;
    padding: 2rem;
    border-left: 4px solid var(--color-pistachio-light);
    background: linear-gradient(90deg, rgba(107, 168, 58, 0.05) 0%, transparent 100%);
    text-align: left;
    font-weight: 400;
}

/* Mission Section Specific */
.about-mission {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Quality Section Specific */
.about-quality {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #3a3a3a 100%);
}

/* Tradition Section Specific */
.about-tradition {
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .about-brand-story,
    .about-mission,
    .about-quality,
    .about-tradition {
        padding: 6rem 0;
    }

    .about-content-block + .about-content-block {
        margin-top: 4rem;
    }

    .about-text-block {
        text-align: center;
    }

    .about-quote {
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--color-pistachio-light);
        background: linear-gradient(180deg, rgba(107, 168, 58, 0.05) 0%, transparent 100%);
    }
}

@media (max-width: 768px) {
    .about-brand-story,
    .about-mission,
    .about-quality,
    .about-tradition {
        padding: 4rem 0;
    }

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

    .about-lead {
        font-size: 1.25rem;
    }

    .about-text-block p {
        font-size: 1rem;
    }

    .about-quote {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-section-label {
        font-size: 0.75rem;
    }

    .about-section-title {
        font-size: 1.75rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }
}

/* ============================================
   RTL Support for Arabic
   ============================================ */

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .nav-menu {
    direction: rtl;
}

html[dir="rtl"] .nav-wrapper {
    direction: rtl;
}

html[dir="rtl"] .hero-content {
    direction: rtl;
}

html[dir="rtl"] .hero-content.animate-to-corner {
    left: auto;
    right: 2rem;
    text-align: right;
}

@media (max-width: 768px) {
    html[dir="rtl"] .hero-content.animate-to-corner {
        right: 1.5rem;
        left: auto;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .hero-content.animate-to-corner {
        right: 1rem;
        left: auto;
    }
}

html[dir="rtl"] .hero-buttons {
    direction: rtl;
}

html[dir="rtl"] .lang-selector-wrapper {
    margin-left: 0;
    margin-right: 1rem;
}

html[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

html[dir="rtl"] .lang-selector-btn {
    text-align: right;
}

html[dir="rtl"] .lang-selector-btn.active::before {
    left: auto;
    right: 0.75rem;
}

html[dir="rtl"] .lang-selector-btn:hover {
    transform: translateX(-4px);
}

/* ============================================
   Product Lightbox Modal
   ============================================ */

.product-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    padding: 2rem;
}

.product-lightbox.active {
    display: flex;
    opacity: 1;
}

.product-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 24px;
    border: 1px solid var(--color-border);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.product-lightbox.active .product-lightbox-content {
    transform: scale(1);
}

.product-lightbox-image-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 60vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox-image-wrapper img {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-lightbox-info {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.product-lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    background: var(--gradient-pistachio);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.product-lightbox-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0;
}

.product-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-pistachio-mid);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    padding: 0;
}

.product-lightbox-close:hover {
    background: var(--gradient-pistachio);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(147, 197, 114, 0.4);
}

.product-lightbox-close svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .product-lightbox {
        padding: 1rem;
    }

    .product-lightbox-content {
        max-width: 95vw;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .product-lightbox-image-wrapper {
        max-height: 50vh;
    }

    .product-lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .product-lightbox-close svg {
        width: 20px;
        height: 20px;
    }

    .product-lightbox-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .product-lightbox-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .product-lightbox-content {
        padding: 1rem;
        gap: 1rem;
        border-radius: 16px;
    }

    .product-lightbox-image-wrapper {
        max-height: 40vh;
        border-radius: 12px;
    }

    .product-lightbox-title {
        font-size: 1.25rem;
    }

    .product-lightbox-description {
        font-size: 0.875rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
