/* ========================================
   ZEBRANO OUTDOOR - CINEMATIC LUXURY THEME
   Based on Uma Collection Design Language
======================================== */

/* Google Fonts loaded via HTML <link> for better performance */

:root {
    /* Palette */
    --olive: #7A8B69;
    --olive-light: #939F84;
    --olive-dark: #5C6B4E;

    --earth: #B8A88A;
    --earth-light: #D4C9B5;
    --earth-dark: #9A8B6F;

    --sand: #E8E2D6;
    --sand-light: #F5F2EC;

    --cream: #FAF9F6;
    --white: #FFFFFF;

    --stone: #8C8578;
    --charcoal: #2D2A26;
    --espresso: #3D3529;
    --warm-black: #1A1916;

    /* Fonts */
    --font-serif: 'Cormorant', Garamond, 'Times New Roman', serif;
    --font-sans: 'Outfit', Helvetica, Arial, sans-serif;

    /* Spacing */
    --header-h: 100px;
    --section-pad: clamp(80px, 10vw, 150px);
    --container-width: 1600px;

    /* Animation Easing */
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   PAGE TRANSITIONS (SWUP)
======================================== */
.transition-fade {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Swup v4: is-animating eklenir → içerik kaybolur, kaldırılır → içerik geri gelir */
html.is-animating .transition-fade {
    opacity: 0;
    transform: translateY(12px);
}

/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease, opacity 0.4s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

/* Typography Helpers */
.font-serif {
    font-family: var(--font-serif);
}

.font-sans {
    font-family: var(--font-sans);
}

.italic {
    font-style: italic;
}

/* Labels & Accents */
.label-text {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 30px;
    font-weight: 400;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--olive);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 20px;
}

/* ========================================
   HEADER - Full Width → Floating Capsule
======================================== */
/* Header - Protected from page-specific styles */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    display: flex !important;
    justify-content: center;
    padding: 0;
    transition: padding 0.8s var(--ease-expo);
    isolation: isolate;
    contain: layout style;
}

/* Scrolled state - Floating Capsule */
.site-header.scrolled {
    padding: 15px 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(122, 139, 105, 0.1);
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition:
        width 0.8s var(--ease-expo),
        max-width 0.8s var(--ease-expo),
        padding 0.6s var(--ease-expo),
        border-radius 0.8s var(--ease-expo),
        background 0.5s ease,
        box-shadow 0.6s ease,
        border 0.5s ease;
}

/* Scrolled - Floating Capsule */
.site-header.scrolled .header-inner {
    width: 1280px;
    max-width: calc(100% - 40px);
    padding: 14px 35px;
    border-radius: 50px;
    border-bottom: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px) saturate(1.8);
    -webkit-backdrop-filter: blur(16px) saturate(1.8);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 2px 10px rgba(122, 139, 105, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ========================================
   LOGO
======================================== */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-img {
    height: 70px;
    width: auto;
    aspect-ratio: 1513 / 613;
    flex-shrink: 0;
    object-fit: contain;
    transition: height 0.5s var(--ease-expo);
}

.site-header.scrolled .site-logo-img {
    height: 56px;
}

/* ========================================
   NAVIGATION
======================================== */
.main-nav {
    position: relative;
    display: flex;
    gap: 5px;
    background: linear-gradient(135deg, rgba(122, 139, 105, 0.1) 0%, rgba(154, 175, 133, 0.15) 100%);
    padding: 8px 10px;
    border-radius: 30px;
    border: 1px solid rgba(122, 139, 105, 0.12);
    transition:
        background 0.5s ease,
        padding 0.5s var(--ease-expo),
        border-color 0.5s ease;
}

.site-header.scrolled .main-nav {
    background: transparent;
    border-color: transparent;
    padding: 0;
}

/* Sliding Indicator */
.nav-indicator {
    position: absolute;
    height: calc(100% - 16px);
    top: 8px;
    background: var(--olive);
    border-radius: 20px;
    transition:
        left 0.6s var(--ease-expo),
        width 0.5s var(--ease-expo),
        opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.site-header.scrolled .nav-indicator {
    height: 100%;
    top: 0;
}

.nav-link {
    position: relative;
    z-index: 1;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: var(--charcoal);
    padding: 10px 18px;
    border-radius: 20px;
    transition:
        color 0.3s ease,
        padding 0.5s var(--ease-expo),
        font-size 0.5s var(--ease-expo);
}

.site-header.scrolled .nav-link {
    padding: 8px 14px;
    font-size: 10px;
}

/* Active link text color (indicator provides background) */
.nav-link.active,
.nav-link[aria-current="page"] {
    color: var(--cream);
}

/* Hover effect - subtle background */
.nav-link:hover:not(.active):not([aria-current="page"]) {
    background: rgba(122, 139, 105, 0.15);
}

/* ========================================
   HEADER ACTIONS
======================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ========================================
   LANGUAGE SWITCH
======================================== */
.lang-switch {
    display: flex;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 1px;
}

.lang-switch a {
    text-decoration: none;
    color: var(--stone);
    padding: 8px 10px;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: color 0.3s ease, background 0.3s ease;
}

.lang-switch a:hover,
.lang-switch a:focus,
.lang-switch a.active,
.lang-switch a[aria-current="true"] {
    color: var(--olive-dark);
    background: rgba(122, 139, 105, 0.1);
}

.lang-switch a:focus-visible {
    outline: 2px solid var(--olive);
    outline-offset: 2px;
}

.lang-switch span {
    opacity: 0.3;
    display: flex;
    align-items: center;
}

/* ========================================
   MOBILE TOGGLE - Elegant Hamburger
======================================== */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1.5px solid rgba(45, 42, 38, 0.15);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.menu-toggle:hover,
.menu-toggle:focus {
    background: var(--olive);
    border-color: var(--olive);
    outline: none;
}

.menu-toggle:hover .hamburger-line,
.menu-toggle:focus .hamburger-line {
    background: var(--cream);
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--olive-dark);
    outline-offset: 3px;
}

.hamburger-line {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 1.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: all 0.3s var(--ease-expo);
}

.hamburger-line:nth-child(1) {
    top: 14px;
}

.hamburger-line:nth-child(2) {
    top: 21px;
}

.hamburger-line:nth-child(3) {
    top: 28px;
}

/* Hamburger → X Animation */
.menu-toggle[aria-expanded="true"] {
    background: var(--olive);
    border-color: var(--olive);
}

.menu-toggle[aria-expanded="true"] .hamburger-line {
    background: var(--cream);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* ========================================
   MOBILE MENU OVERLAY
======================================== */
/* Mobile Menu Overlay - Protected */
.mobile-menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(26, 25, 22, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 9998 !important;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   MOBILE NAVIGATION PANEL
======================================== */
/* Mobile Navigation Panel - Protected */
.mobile-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(340px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: var(--cream) !important;
    z-index: 9999 !important;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-expo);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 100px 32px 40px;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
    isolation: isolate;
}

.mobile-nav.active {
    transform: translateX(0);
}

/* Close Button */
.mobile-nav-close {
    position: absolute;
    top: 28px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1.5px solid rgba(45, 42, 38, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover,
.mobile-nav-close:focus {
    background: var(--olive);
    border-color: var(--olive);
}

.mobile-nav-close:hover .close-icon,
.mobile-nav-close:focus .close-icon {
    stroke: var(--cream);
}

.close-icon {
    width: 18px;
    height: 18px;
    stroke: var(--charcoal);
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

/* Mobile Nav Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    font-size: 16px;
    font-family: var(--font-serif);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--charcoal);
    padding: 16px 20px;
    border-radius: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Active state - only for current page */
.mobile-nav-link[aria-current="page"] {
    background: var(--olive);
    color: var(--cream);
}

/* Hover/Focus - only on devices that support hover */
@media (hover: hover) {
    .mobile-nav-link:hover:not([aria-current="page"]),
    .mobile-nav-link:focus:not([aria-current="page"]) {
        background: rgba(122, 139, 105, 0.15);
        color: var(--olive-dark);
    }
}

/* Touch feedback for mobile */
.mobile-nav-link:active:not([aria-current="page"]) {
    background: rgba(122, 139, 105, 0.2);
}

/* Mobile Language Switch */
.mobile-nav-lang {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(122, 139, 105, 0.2);
}

.mobile-nav-lang a {
    font-size: 14px;
    text-decoration: none;
    color: var(--stone);
    padding: 12px 20px;
    border-radius: 8px;
    min-height: 48px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav-lang a:hover,
.mobile-nav-lang a:focus,
.mobile-nav-lang a[aria-current="true"] {
    background: rgba(122, 139, 105, 0.15);
    color: var(--olive-dark);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--olive);
    color: var(--cream);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--olive-dark);
    outline-offset: 2px;
}

/* ========================================
   HERO - CINEMATIC
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--warm-black);
    color: var(--cream);
    display: flex;
    align-items: flex-end;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transform: scale(1.1);
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 25, 22, 0.8) 0%, transparent 60%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px 120px;
}

.hero-breadcrumb {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(60px, 12vw, 140px);
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero-title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--olive-light);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2vw, 24px);
    font-style: italic;
    color: var(--earth-light);
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--sand);
    cursor: pointer;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--cream);
    animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(300%);
    }
}

/* ========================================
   SECTIONS
======================================== */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.bg-sand-light {
    background: var(--sand-light);
}

.bg-warm-black {
    background: var(--warm-black);
    color: var(--cream);
}

/* ========================================
   INTRO - SPLIT
======================================== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--stone);
}

.intro-text p strong {
    color: var(--charcoal);
    font-weight: 500;
}

.intro-img {
    position: relative;
    overflow: hidden;
}

.intro-img img {
    height: 700px;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-img:hover img {
    transform: scale(1.05);
}

/* ========================================
   PRODUCTS GRID - LUXURY CARDS
======================================== */
.products-wrapper {
    background: var(--cream);
    overflow: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    display: block;
    position: relative;
    group: cursor-pointer;
}

.pc-image {
    position: relative;
    overflow: hidden;
    background: var(--sand);
    aspect-ratio: 3/4;
    margin-bottom: 24px;
}

.pc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .pc-image img {
    transform: scale(1.08);
}

.pc-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--olive);
    color: var(--cream);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 12px;
    z-index: 5;
}

.pc-quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(250, 249, 246, 0.95);
    color: var(--charcoal);
    text-align: center;
    padding: 15px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.product-card:hover .pc-quick-view {
    transform: translateY(0);
}

.pc-info {
    text-align: left;
}

.pc-title {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 400;
    color: var(--charcoal);
    transition: color 0.3s;
}

.product-card:hover .pc-title {
    color: var(--olive);
}

.pc-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--stone);
    display: block;
    margin-bottom: 15px;
}

.pc-price {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--olive-dark);
}

/* ========================================
   MATERIALS
======================================== */
.materials-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.materials-img {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.materials-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.materials-content {
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%);
    color: var(--cream);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.materials-content .section-label {
    color: var(--earth-light);
}

.materials-content .section-label::before {
    background: var(--earth-light);
}

.materials-content .section-title {
    color: var(--cream);
}

.mat-list li {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    gap: 30px;
}

.mat-num {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--earth-light);
    opacity: 0.8;
}

.mat-text h4 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.mat-text p {
    font-size: 15px;
    opacity: 0.8;
}

/* ========================================
   ANIMATIONS (REVEAL)
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   CTA
======================================== */
.cta-box {
    background: var(--warm-black);
    color: var(--cream);
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(122, 139, 105, 0.2), transparent 70%);
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border: 1px solid var(--olive);
    color: var(--cream);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.4s ease;
    background: transparent;
    margin-top: 30px;
}

.btn-luxury:hover {
    background: var(--olive);
    border-color: var(--olive);
}

/* ========================================
   FOOTER
======================================== */
/* Light & Airy Footer */
.site-footer {
    background: var(--sand-light);
    color: var(--charcoal);
    padding: 60px 0 28px;
    border-top: 1px solid var(--sand);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    display: block;
    margin-bottom: 12px;
}

.footer-logo-img {
    max-width: 140px;
    height: auto;
    object-fit: contain;
}

.footer-desc {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.7;
    max-width: 300px;
}

.footer-h {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--stone);
}

.footer-links a {
    font-size: 13px;
    color: var(--stone);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--olive-dark);
}

/* Footer Bottom with Social Icons */
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--sand);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--stone);
    opacity: 0.6;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social-icons a {
    color: var(--stone);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--olive-dark);
    opacity: 1;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .intro-grid,
    .materials-section {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .header-inner {
        padding: 16px 30px;
    }

    .site-header.scrolled .header-inner {
        padding: 12px 20px;
        border-radius: 40px;
    }

    .nav-link {
        padding: 10px 14px;
        font-size: 10px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .main-nav,
    .lang-switch {
        display: none;
    }

    .menu-toggle {
        display: block !important;
        pointer-events: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-inner {
        padding: 14px 20px;
    }

    .site-header.scrolled .header-inner {
        padding: 10px 16px;
    }

    .site-logo-img {
        height: 50px;
    }

    .site-header.scrolled .site-logo-img {
        height: 38px;
    }

    /* Layout Mobile */
    .products-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .hero-content {
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 56px;
    }
}

/* ========================================
   SHOWROOMS - CINEMATIC STYLES
======================================== */

/* ========================================
   CINEMATIC HERO - Vignette & Background Text
======================================== */
.showrooms-hero-cinematic {
    align-items: center;
    justify-content: center;
}

.showrooms-hero-cinematic .hero-content {
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

/* Refined showrooms hero typography */
.showrooms-hero-cinematic .hero-breadcrumb {
    letter-spacing: 5px;
    color: var(--earth-light);
    margin-bottom: 28px;
}

.showrooms-hero-cinematic .hero-breadcrumb::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--olive-light);
    margin: 0 auto 18px;
}

.showrooms-hero-cinematic .hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.showrooms-hero-cinematic .hero-subtitle {
    font-family: var(--font-sans);
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    color: rgba(232, 226, 214, 0.85);
    line-height: 1.8;
    letter-spacing: 0.3px;
    max-width: 520px;
}

/* Dark overlay for text readability */
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(26, 25, 22, 0.55);
    pointer-events: none;
}

/* Subtle Radial Glow - olive tones */
.hero-radial-glow {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        radial-gradient(ellipse 120% 80% at 50% 50%, rgba(122, 139, 105, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(184, 168, 138, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 20%, rgba(122, 139, 105, 0.08) 0%, transparent 35%);
    pointer-events: none;
}

/* Large Background Text - Watermark Style */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(80px, 16vw, 240px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--cream);
    opacity: 0.06;
    white-space: nowrap;
    pointer-events: none;
    z-index: 4;
    user-select: none;
    text-transform: uppercase;
}

/* Hero Visual Background - Fallback */
.showrooms-hero .hero-media {
    background: linear-gradient(135deg, var(--warm-black) 0%, #2a2520 50%, var(--espresso) 100%);
}

/* Hero image darker */
.showrooms-hero-cinematic .hero-media img {
    filter: brightness(0.7) saturate(0.9);
}

/* ========================================
   SHOWROOMS HERO - Minimal Variant
   ======================================== */
.showrooms-hero-minimal {
    height: auto;
    min-height: 70vh;
    align-items: center;
    justify-content: center;
}

.showrooms-hero-minimal .hero-content {
    padding: 180px 40px 100px;
}

.showrooms-hero-minimal .hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.showrooms-hero-minimal .hero-subtitle {
    font-family: var(--font-sans);
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    color: rgba(232, 226, 214, 0.8);
    line-height: 1.8;
    max-width: 480px;
}

.showrooms-hero-minimal .hero-media img {
    filter: brightness(0.55) saturate(0.9);
    animation: none;
    transform: none;
}

.showrooms-hero-minimal .hero-breadcrumb {
    letter-spacing: 5px;
    color: var(--olive-light);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .showrooms-hero-minimal {
        min-height: 60vh;
    }

    .showrooms-hero-minimal .hero-content {
        padding: 140px 24px 80px;
    }

    .showrooms-hero-minimal .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .showrooms-hero-minimal .hero-subtitle {
        font-size: 14px;
    }
}

/* ========================================
   SHOWROOMS STATS - Compact Strip
   ======================================== */
.showrooms-stats-strip {
    background: var(--warm-black);
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-strip-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.stats-strip-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.stats-strip-number {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stats-strip-suffix {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    color: var(--olive-light);
    margin-left: -2px;
}

.stats-strip-label {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand);
    opacity: 0.5;
    margin-top: 4px;
}

.stats-strip-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
    .stats-strip-row {
        gap: 24px;
    }

    .stats-strip-divider {
        height: 28px;
    }

    .stats-strip-number {
        font-size: 28px;
    }
}

/* Placeholder background for missing images */
.showroom-placeholder-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--earth-light) 0%, var(--sand) 50%, var(--olive-light) 100%);
    position: relative;
}

.showroom-placeholder-bg::after {
    content: 'ZEBRANO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--white);
    opacity: 0.3;
}

/* ========================================
   SHOWROOMS STATS SECTION - Impressive
======================================== */
.showrooms-stats-section {
    background: var(--warm-black);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.showrooms-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(122, 139, 105, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(184, 168, 138, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.stats-hero {
    position: relative;
    z-index: 2;
}

.stats-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--olive-light);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-hero.visible .stats-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Group */
.stats-counter-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-hero.visible .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.stats-hero.visible .stat-item:nth-child(1) { transition-delay: 0.1s; }
.stats-hero.visible .stat-item:nth-child(3) { transition-delay: 0.25s; }
.stats-hero.visible .stat-item:nth-child(5) { transition-delay: 0.4s; }

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(72px, 12vw, 140px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-item-main .stat-number {
    font-size: clamp(90px, 15vw, 180px);
    background: linear-gradient(135deg, var(--cream) 0%, var(--olive-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 300;
    color: var(--olive-light);
    vertical-align: super;
    margin-left: -5px;
}

.stat-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand);
    margin-top: 10px;
    opacity: 0.7;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--olive-light), transparent);
    opacity: 0.3;
}

/* Stats Headline */
.stats-headline {
    font-family: var(--font-serif);
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.stats-hero.visible .stats-headline {
    opacity: 1;
    transform: translateY(0);
}

.stats-headline em {
    font-style: italic;
    color: var(--olive-light);
}

.stats-tagline {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--sand);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

.stats-hero.visible .stats-tagline {
    opacity: 0.7;
    transform: translateY(0);
}

/* Stats Responsive */
@media (max-width: 768px) {
    .showrooms-stats-section {
        padding: 80px 0 60px;
    }

    .stats-counter-group {
        gap: 20px;
    }

    .stat-divider {
        height: 50px;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .stats-counter-group {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }
}

/* ========================================
   SHOWROOMS LIST PAGE
======================================== */

/* Featured Showroom - Large Card */
.showroom-featured {
    margin-bottom: 60px;
}

.showroom-featured-link {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 600px;
    text-decoration: none;
    background: var(--warm-black);
    overflow: hidden;
    position: relative;
}

.showroom-featured-image {
    position: relative;
    overflow: hidden;
}

.showroom-featured-image img,
.showroom-featured-image .showroom-placeholder-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-expo);
}

.showroom-featured-link:hover .showroom-featured-image img,
.showroom-featured-link:hover .showroom-featured-image .showroom-placeholder-bg {
    transform: scale(1.08);
}

.showroom-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    position: relative;
}

.showroom-featured-content::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--olive), transparent);
}

.showroom-featured-badge {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--olive-light);
    margin-bottom: 30px;
}

.showroom-featured-title {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin: 0 0 16px;
}

.showroom-featured-city {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--olive-light);
    margin: 0 0 30px;
}

.showroom-featured-details {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--sand);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.8;
}

.showroom-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    transition: gap 0.4s var(--ease-expo);
}

.showroom-featured-link:hover .showroom-featured-cta {
    gap: 24px;
}

.showroom-featured-cta svg {
    transition: transform 0.4s var(--ease-expo);
}

.showroom-featured-link:hover .showroom-featured-cta svg {
    transform: translateX(8px);
}

/* Showrooms Mosaic Grid */
.showrooms-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Showroom Tile */
.showroom-tile {
    position: relative;
    display: block;
    text-decoration: none;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--charcoal);
}

.showroom-tile-image {
    position: absolute;
    inset: 0;
}

.showroom-tile-image img,
.showroom-tile-image .showroom-placeholder-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-expo);
}

.showroom-tile:hover .showroom-tile-image img,
.showroom-tile:hover .showroom-tile-image .showroom-placeholder-bg {
    transform: scale(1.1);
}

.showroom-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 25, 22, 0.95) 0%,
        rgba(26, 25, 22, 0.3) 50%,
        transparent 100%
    );
    transition: opacity 0.4s ease;
}

.showroom-tile:hover .showroom-tile-overlay {
    background: linear-gradient(
        to top,
        rgba(26, 25, 22, 0.98) 0%,
        rgba(26, 25, 22, 0.5) 60%,
        rgba(26, 25, 22, 0.2) 100%
    );
}

.showroom-tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
}

.showroom-tile-city {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--olive-light);
    margin-bottom: 12px;
}

.showroom-tile-name {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: var(--cream);
    margin: 0 0 16px;
    line-height: 1.2;
}

.showroom-tile-info {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.showroom-tile:hover .showroom-tile-info {
    opacity: 1;
    transform: translateY(0);
}

.showroom-tile-phone {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--sand);
}

.showroom-tile-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--cream);
    opacity: 0;
    transform: translate(10px, -10px);
    transition: all 0.4s var(--ease-expo);
}

.showroom-tile:hover .showroom-tile-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* Experience Section - Cinematic */
.showroom-experience-section {
    background: var(--warm-black);
    position: relative;
    overflow: hidden;
    padding: 120px 0 !important;
}

.showroom-experience-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(122, 139, 105, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(184, 168, 138, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* Floating text marquee */
.experience-marquee {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.experience-marquee-text {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    animation-play-state: paused;
    white-space: nowrap;
}
.experience-marquee-text.is-visible {
    animation-play-state: running;
}

.experience-marquee-text span {
    font-family: var(--font-serif);
    font-size: clamp(100px, 15vw, 200px);
    font-weight: 300;
    color: var(--cream);
    opacity: 0.03;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    padding-right: 100px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.showroom-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.showroom-experience-text {
    position: relative;
}

.showroom-experience-text .section-label {
    color: var(--olive-light);
}

.showroom-experience-text .section-label::before {
    background: var(--olive-light);
}

.showroom-experience-text .section-title {
    color: var(--cream);
}

.showroom-experience-text .section-title em {
    color: var(--olive-light);
}

.showroom-experience-text p {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    color: var(--sand);
    line-height: 1.9;
    margin: 24px 0 40px;
    opacity: 0.8;
}

.experience-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-features li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--cream);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showroom-experience-text.visible .experience-features li {
    opacity: 1;
    transform: translateX(0);
}

.showroom-experience-text.visible .experience-features li:nth-child(1) { transition-delay: 0.1s; }
.showroom-experience-text.visible .experience-features li:nth-child(2) { transition-delay: 0.2s; }
.showroom-experience-text.visible .experience-features li:nth-child(3) { transition-delay: 0.3s; }

.experience-features li:last-child {
    border-bottom: none;
}

.exp-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(122, 139, 105, 0.15);
    border: 1px solid rgba(122, 139, 105, 0.3);
    border-radius: 50%;
    color: var(--olive-light);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.experience-features li:hover .exp-icon {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--cream);
    transform: scale(1.1);
}

/* Experience Visual Grid - Cinematic */
.exp-visual-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 600px;
}

.exp-visual-item {
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.showroom-experience-visual.visible .exp-visual-item {
    opacity: 1;
    transform: scale(1);
}

.showroom-experience-visual.visible .exp-visual-item:nth-child(1) { transition-delay: 0s; }
.showroom-experience-visual.visible .exp-visual-item:nth-child(2) { transition-delay: 0.15s; }
.showroom-experience-visual.visible .exp-visual-item:nth-child(3) { transition-delay: 0.3s; }

.exp-visual-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(122, 139, 105, 0.2) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.exp-visual-item:hover::after {
    opacity: 1;
}

.exp-visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-expo);
    /* Performance optimizations */
    content-visibility: auto;
    contain-intrinsic-size: 400px 300px;
}

.exp-visual-item:hover img {
    transform: scale(1.08);
}

.exp-visual-large {
    grid-row: span 2;
}

/* ========================================
   SHOWROOM DETAIL PAGE
======================================== */

/* Breadcrumb */
.showroom-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-size: 13px;
}

.showroom-breadcrumb a {
    color: var(--sand);
    text-decoration: none;
    transition: color 0.3s;
}

.showroom-breadcrumb a:hover {
    color: var(--cream);
}

.showroom-breadcrumb span {
    color: var(--stone);
}

/* Content Section */
.showroom-content-section {
    background: var(--cream);
}

.showroom-content-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

/* Info Blocks */
.showroom-info {
    position: sticky;
    top: 120px;
}

.showroom-info-block {
    padding: 32px 0;
    border-bottom: 1px solid var(--sand);
}

.showroom-info-block:first-child {
    padding-top: 0;
}

.showroom-info-block .section-label {
    margin-bottom: 16px;
}

.showroom-address {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.8;
    margin: 0 0 20px;
}

.showroom-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--olive);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.showroom-directions-link:hover {
    gap: 12px;
}

.showroom-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--charcoal);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s;
}

.showroom-contact-link:hover {
    color: var(--olive);
}

.showroom-contact-link svg {
    color: var(--olive);
}

/* WhatsApp Button */
.showroom-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 20px 32px;
    margin-top: 32px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.4s var(--ease-expo);
}

.showroom-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

/* Main Content */
.showroom-main {
    padding-top: 8px;
}

.showroom-description {
    margin-bottom: 48px;
}

.showroom-description p {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 2;
}

/* Map */
.showroom-map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

#showroom-map {
    width: 100%;
    height: 450px;
    background: var(--sand-light);
}

/* Gallery Grid */
.showroom-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-expo);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 25, 22, 0.4);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Other Showrooms */
.other-showrooms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.other-showrooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.other-showroom-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.other-showroom-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 20px;
}

.other-showroom-image img,
.other-showroom-image .showroom-placeholder-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-expo);
}

.other-showroom-card:hover .other-showroom-image img,
.other-showroom-card:hover .other-showroom-image .showroom-placeholder-bg {
    transform: scale(1.06);
}

.other-showroom-content {
    position: relative;
}

.other-showroom-city {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--olive);
}

.other-showroom-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--charcoal);
    margin: 8px 0 0;
    transition: color 0.3s;
}

.other-showroom-card:hover .other-showroom-name {
    color: var(--olive-dark);
}

.other-showroom-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--olive);
    opacity: 0;
    transition: all 0.3s ease;
}

.other-showroom-card:hover .other-showroom-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

/* ========================================
   SHOWROOM CARDS - Modern Text-Based Design
   ======================================== */
.showrooms-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.showroom-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-expo);
    /* Reveal animation initial state */
    opacity: 0;
    transform: translateY(60px) scale(0.95);
}

.showroom-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.showroom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--olive);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-expo);
}

.showroom-card:hover {
    background: var(--warm-black);
    border-color: var(--warm-black);
    box-shadow: 0 32px 64px rgba(0,0,0,0.15);
}

.showroom-card.visible:hover {
    transform: translateY(-8px) scale(1);
}

.showroom-card:hover::before {
    transform: scaleX(1);
}

.showroom-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.showroom-card-city {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--olive);
    transition: color 0.4s ease;
}

.showroom-card:hover .showroom-card-city {
    color: var(--olive-light);
}

.showroom-card-badge {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: var(--olive);
    padding: 5px 12px;
    border-radius: 2px;
    white-space: nowrap;
}

.showroom-card-name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.2;
    margin: 0 0 16px;
    transition: color 0.4s ease;
}

.showroom-card:hover .showroom-card-name {
    color: var(--cream);
}

.showroom-card-address {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--stone);
    line-height: 1.6;
    margin: 0 0 20px;
    flex-grow: 1;
    transition: color 0.4s ease;
}

.showroom-card:hover .showroom-card-address {
    color: var(--sand);
}

.showroom-card-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.showroom-card-phone svg {
    opacity: 0.5;
}

.showroom-card:hover .showroom-card-phone {
    color: var(--cream);
}

.showroom-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    transition: border-color 0.4s ease;
}

.showroom-card:hover .showroom-card-footer {
    border-color: rgba(255,255,255,0.1);
}

.showroom-card-cta {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    transition: color 0.4s ease;
}

.showroom-card:hover .showroom-card-cta {
    color: var(--olive-light);
}

.showroom-card-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    color: var(--charcoal);
    transition: all 0.4s var(--ease-expo);
}

.showroom-card:hover .showroom-card-arrow {
    background: var(--olive);
    border-color: var(--olive);
    color: #fff;
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .showrooms-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .showrooms-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .showroom-card {
        padding: 30px;
    }
    .showroom-card-name {
        font-size: 24px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-modal .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 25, 22, 0.97);
    backdrop-filter: blur(12px);
}

.lightbox-modal .lightbox-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-modal .lightbox-wrapper img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.lightbox-modal .lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--cream);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-modal .lightbox-close:hover {
    background: var(--olive);
    border-color: var(--olive);
}

.lightbox-modal .lightbox-prev,
.lightbox-modal .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--cream);
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-modal .lightbox-prev { left: -100px; }
.lightbox-modal .lightbox-next { right: -100px; }

.lightbox-modal .lightbox-prev:hover,
.lightbox-modal .lightbox-next:hover {
    background: var(--olive);
    border-color: var(--olive);
}

/* ========================================
   SHOWROOMS RESPONSIVE
======================================== */

/* Cinematic Hero Responsive */
@media (max-width: 1024px) {
    .hero-bg-text {
        font-size: clamp(50px, 14vw, 140px);
        opacity: 0.05;
    }
}

@media (max-width: 768px) {
    .hero-bg-text {
        font-size: clamp(40px, 12vw, 90px);
        opacity: 0.04;
    }

    .showrooms-hero-cinematic .hero-content {
        padding-bottom: 60px;
    }

    .showrooms-hero-cinematic .hero-title {
        font-size: clamp(40px, 10vw, 56px);
    }

    .showrooms-hero-cinematic .hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .showrooms-hero-cinematic .hero-breadcrumb::before {
        margin-bottom: 14px;
        width: 24px;
    }
}

@media (max-width: 1200px) {
    .showroom-featured-link {
        grid-template-columns: 1fr 1fr;
    }

    .showroom-featured-content {
        padding: 60px;
    }

    .showrooms-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }

    .showroom-content-grid {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }

    .showroom-experience-grid {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .showroom-featured-link {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .showroom-featured-image {
        height: 400px;
    }

    .showroom-featured-content {
        padding: 50px;
    }

    .showroom-featured-content::before {
        display: none;
    }

    .showrooms-mosaic {
        grid-template-columns: 1fr;
    }

    .showroom-tile {
        aspect-ratio: 16/9;
    }

    .showroom-content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .showroom-info {
        position: static;
    }

    .showroom-experience-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .experience-marquee-text span {
        font-size: clamp(60px, 12vw, 120px);
    }

    .exp-visual-grid {
        height: 400px;
    }

    .showroom-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .other-showrooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .showroom-featured-image {
        height: 300px;
    }

    .showroom-featured-content {
        padding: 32px;
    }

    .showroom-tile-content {
        padding: 24px;
    }

    .exp-visual-grid {
        grid-template-columns: 1fr 1fr;
        height: 300px;
    }

    .exp-visual-large {
        grid-row: span 1;
    }

    .showroom-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:first-child {
        grid-column: span 1;
    }

    .other-showrooms-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .other-showrooms-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-modal .lightbox-prev { left: 16px; }
    .lightbox-modal .lightbox-next { right: 16px; }
}

/* ========================================
   WISHLIST / FAVORITES
======================================== */

/* Header Wishlist Icon */
.header-wishlist {
    position: relative;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px;
    display: flex;
    align-items: center;
}

.header-wishlist .wishlist-icon {
    width: 20px;
    height: 20px;
}

.header-wishlist:hover {
    color: var(--olive);
}

.wishlist-badge {
    position: absolute;
    top: -4px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    background: var(--olive);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}

/* Product Card Wishlist Toggle */
.wishlist-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--stone);
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-card:hover .wishlist-toggle {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-toggle:hover {
    background: #fff;
    transform: translateY(0) scale(1.1);
}

.wishlist-toggle.wishlisted {
    opacity: 1;
    transform: translateY(0);
    color: #dc2626;
}

.wishlist-toggle.wishlisted:hover {
    color: #b91c1c;
}

@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.wishlist-toggle.wishlisted i {
    animation: heartPulse 0.3s ease;
}

/* Wishlist Toast Notification */
.wishlist-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--charcoal);
    color: #fff;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    white-space: nowrap;
}

.wishlist-toast i {
    color: #dc2626;
    margin-right: 8px;
}

.wishlist-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Product Detail Gallery Wishlist Button */
.gallery-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--stone);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.gallery-wishlist-btn svg {
    width: 20px;
    height: 20px;
}

.gallery-wishlist-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.gallery-wishlist-btn.wishlisted {
    color: #dc2626;
}

.gallery-wishlist-btn.wishlisted svg {
    fill: #dc2626;
    animation: heartPulse 0.3s ease;
}

.gallery-wishlist-btn.wishlisted:hover {
    color: #b91c1c;
}

.gallery-wishlist-btn.wishlisted:hover svg {
    fill: #b91c1c;
}

/* Mobile: always show wishlist toggle on cards */
@media (max-width: 768px) {
    .wishlist-toggle {
        opacity: 1;
        transform: translateY(0);
        width: 36px;
        height: 36px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }

    .gallery-wishlist-btn {
        width: 38px;
        height: 38px;
        top: 12px;
        right: 12px;
    }

    .gallery-wishlist-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   COOKIE CONSENT - FLOATING PILL
======================================== */
.cookie-consent {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 40px));
    z-index: 99999;
    opacity: 0;
    transition: transform 0.6s var(--ease-expo), opacity 0.4s ease;
    pointer-events: none;
}

.cookie-consent.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-consent-inner {
    background: var(--warm-black);
    padding: 14px 16px 14px 24px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.cookie-consent-text {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(250, 249, 246, 0.8);
}

.cookie-consent-text a {
    color: var(--olive-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
    color: var(--cream);
}

.cookie-consent-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--olive);
    color: var(--cream);
    padding: 10px 22px;
    border-radius: 40px;
}

.cookie-btn-accept:hover {
    background: var(--olive-light);
}

.cookie-btn-decline {
    background: rgba(250, 249, 246, 0.1);
    color: rgba(250, 249, 246, 0.5);
    padding: 10px 18px;
    border-radius: 40px;
}

.cookie-btn-decline:hover {
    background: rgba(250, 249, 246, 0.15);
    color: var(--cream);
}

/* Animation for close */
.cookie-consent.hiding {
    transform: translateX(-50%) translateY(calc(100% + 40px));
    opacity: 0;
}

/* Mobile: bottom sheet */
@media (max-width: 600px) {
    .cookie-consent {
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateX(0) translateY(100%);
    }

    .cookie-consent.visible {
        transform: translateX(0) translateY(0);
    }

    .cookie-consent-inner {
        border-radius: 16px 16px 0 0;
        padding: 20px 18px;
        flex-direction: column;
        gap: 14px;
        white-space: normal;
    }

    .cookie-consent-inner::before {
        content: '';
        display: block;
        width: 32px;
        height: 3px;
        background: rgba(250, 249, 246, 0.15);
        border-radius: 2px;
        margin: 0 auto 2px;
    }

    .cookie-consent-text {
        text-align: center;
        font-size: 12px;
        line-height: 1.6;
    }

    .cookie-consent-actions {
        display: flex;
        gap: 8px;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
        padding: 14px;
        border-radius: 8px;
    }

    .cookie-btn-decline {
        border: 1px solid rgba(250, 249, 246, 0.1);
    }

    .cookie-consent.hiding {
        transform: translateX(0) translateY(100%);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent {
        transition: opacity 0.2s ease;
    }
}

/* ========================================
   ARCHITECT PORTAL - Header Icon
======================================== */
.header-architect {
    position: relative;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px;
    display: flex;
    align-items: center;
}

.header-architect .architect-icon {
    width: 20px;
    height: 20px;
}

.header-architect:hover {
    color: var(--olive);
}

.architect-badge-dot {
    position: absolute;
    top: 2px;
    right: 0;
    width: 8px;
    height: 8px;
    background: var(--olive);
    border-radius: 50%;
    border: 2px solid var(--cream);
}

.site-header.scrolled .architect-badge-dot {
    border-color: rgba(255,255,255,0.45);
}

/* ========================================
   ARCHITECT PORTAL - Auth Pages
======================================== */
.arch-page {
    min-height: 100vh;
    padding-top: var(--header-h);
}

.arch-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--header-h));
}

.arch-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.arch-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.arch-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(122,139,105,0.85) 0%, rgba(92,107,78,0.9) 100%);
}

.arch-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 60px;
    max-width: 500px;
}

.arch-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.arch-hero-content p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.arch-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arch-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    opacity: 0.9;
}

.arch-features li i {
    width: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.arch-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: var(--cream);
}

.arch-form-container {
    width: 100%;
    max-width: 480px;
}

.arch-form-header {
    margin-bottom: 40px;
}

.arch-form-header h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--warm-black);
    margin-bottom: 10px;
}

.arch-form-header p {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.6;
}

.arch-form-group {
    margin-bottom: 20px;
}

.arch-form-group label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--stone);
    margin-bottom: 8px;
    font-weight: 500;
}

.arch-form-group input,
.arch-form-group select,
.arch-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0ddd8;
    background: #fff;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--charcoal);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.arch-form-group input:focus,
.arch-form-group select:focus,
.arch-form-group textarea:focus {
    outline: none;
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(122,139,105,0.1);
}

.arch-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.arch-form-btn {
    width: 100%;
    padding: 16px;
    background: var(--olive);
    color: #fff;
    border: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.arch-form-btn:hover {
    background: var(--olive-dark);
}

.arch-form-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.arch-form-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: var(--stone);
}

.arch-form-footer a {
    color: var(--olive);
    text-decoration: none;
    font-weight: 500;
}

.arch-form-footer a:hover {
    text-decoration: underline;
}

/* Password Strength */
.arch-password-strength {
    margin-top: 8px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.arch-str-bar {
    flex: 1;
    height: 3px;
    background: #e0ddd8;
    transition: background 0.3s ease;
}

.arch-str-bar.active.weak { background: #dc2626; }
.arch-str-bar.active.fair { background: #f59e0b; }
.arch-str-bar.active.good { background: #0969da; }
.arch-str-bar.active.strong { background: #1a7f37; }

.arch-str-text {
    font-size: 11px;
    margin-left: 8px;
    min-width: 60px;
}

/* Privacy checkbox */
.arch-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.arch-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--olive);
    flex-shrink: 0;
}

.arch-checkbox span {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.5;
}

/* Success message */
.arch-success {
    text-align: center;
    padding: 40px 20px;
}

.arch-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #eefbea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1a7f37;
}

.arch-success h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--warm-black);
    margin-bottom: 10px;
}

.arch-success p {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.6;
}

/* Alert messages */
.arch-alert {
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
}

.arch-alert-error {
    background: #fef2f2;
    color: #dc2626;
    border-left: 3px solid #dc2626;
}

.arch-alert-success {
    background: #eefbea;
    color: #1a7f37;
    border-left: 3px solid #1a7f37;
}

.arch-alert-info {
    background: #f0f5ff;
    color: #0969da;
    border-left: 3px solid #0969da;
}

/* Login centered layout */
.arch-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warm-black);
    padding: 40px 20px;
}

.arch-login-card {
    background: #fff;
    padding: 50px 40px;
    width: 100%;
    max-width: 440px;
}

.arch-login-card .arch-form-header {
    text-align: center;
}

.arch-login-card .arch-form-header .arch-brand {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--warm-black);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 30px;
}

/* Dashboard */
.arch-dashboard {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 80px;
    min-height: 100vh;
    background: #f8f7f5;
}

.arch-dashboard .container {
    max-width: 1200px;
}

.arch-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.arch-dash-header h1 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--warm-black);
}

.arch-dash-tabs {
    display: flex;
    gap: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    margin-bottom: 30px;
}

.arch-dash-tab {
    flex: 1;
    padding: 16px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--stone);
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.arch-dash-tab:hover {
    color: var(--charcoal);
    background: #fafaf9;
}

.arch-dash-tab.active {
    color: var(--olive);
    border-bottom-color: var(--olive);
    font-weight: 500;
}

.arch-dash-panel {
    display: none;
}

.arch-dash-panel.active {
    display: block;
}

.arch-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.arch-stat-card {
    background: #fff;
    padding: 25px;
    border: 1px solid #e8e8e8;
    text-align: center;
}

.arch-stat-card h4 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--warm-black);
    margin-bottom: 5px;
}

.arch-stat-card p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--stone);
}

.arch-section-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 30px;
    margin-bottom: 25px;
}

.arch-section-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Verify / Simple Pages */
.arch-verify-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 40px 20px;
}

.arch-verify-card {
    background: #fff;
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    border: 1px solid #e8e8e8;
}

/* ========================================
   PRODUCT PAGE - Technical Documents (used inside tabs)
======================================== */
/* Document List */
.pd-docs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-doc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.pd-doc-item:hover {
    border-color: var(--olive-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.pd-doc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border-radius: 8px;
}

.pd-doc-type-cad { background: #f0f5ff; color: #0969da; }
.pd-doc-type-technical_drawing { background: #eefbea; color: var(--olive-dark); }
.pd-doc-type-3d_model { background: #f5f0ff; color: #8250df; }
.pd-doc-type-specification { background: #fff8e6; color: #9a6700; }
.pd-doc-type-brochure { background: #f0fafb; color: #0e7490; }
.pd-doc-type-other { background: #f5f5f5; color: #666; }

.pd-doc-info {
    flex: 1;
    min-width: 0;
}

.pd-doc-name {
    display: block;
    font-weight: 500;
    color: var(--charcoal);
    font-size: 14px;
    margin-bottom: 4px;
}

.pd-doc-desc {
    display: block;
    font-size: 12px;
    color: var(--stone);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-doc-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--stone);
}

.pd-doc-type-badge {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pd-doc-download {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--olive);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.pd-doc-download:hover {
    background: var(--olive-dark);
}

/* Locked State */
.pd-docs-locked {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.pd-docs-locked-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--stone);
}

.pd-docs-locked h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--warm-black);
    margin-bottom: 8px;
}

.pd-docs-locked p {
    font-size: 14px;
    color: var(--stone);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pd-docs-locked-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.pd-docs-btn {
    padding: 12px 28px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pd-docs-btn.primary {
    background: var(--olive);
    color: #fff;
}

.pd-docs-btn.primary:hover {
    background: var(--olive-dark);
}

.pd-docs-btn.secondary {
    border: 1px solid var(--olive);
    color: var(--olive);
}

.pd-docs-btn.secondary:hover {
    background: var(--olive);
    color: #fff;
}

/* ========================================
   ARCHITECT PORTAL - Responsive
======================================== */
@media (max-width: 900px) {
    .arch-split {
        grid-template-columns: 1fr;
    }

    .arch-hero {
        min-height: 300px;
    }

    .arch-hero-content {
        padding: 40px 30px;
    }

    .arch-form-side {
        padding: 40px 20px;
    }

    .arch-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .arch-form-row {
        grid-template-columns: 1fr;
    }

    .arch-login-card {
        padding: 40px 24px;
    }

    .arch-dashboard {
        padding-top: calc(var(--header-h) + 20px);
    }

    .arch-dash-tabs {
        flex-wrap: wrap;
    }

    .arch-dash-tab {
        flex: 1 0 auto;
        min-width: 100px;
        padding: 12px 8px;
        font-size: 11px;
    }

    .arch-stat-grid {
        grid-template-columns: 1fr;
    }

    .arch-section-card {
        padding: 20px;
    }

    .pd-doc-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    .pd-doc-download {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .arch-hero-content {
        padding: 30px 20px;
    }

    .arch-hero-content h1 {
        font-size: 28px;
    }

    .pd-docs-locked-actions {
        flex-direction: column;
    }

    .pd-docs-btn {
        text-align: center;
    }
}

/* ========================================
   404 PAGE - ELEGANT TYPOGRAPHIC
======================================== */
.notfound {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--cream);
    padding: clamp(60px, 8vw, 120px) 0;
}

/* Giant watermark "404" behind content */
.notfound-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(250px, 40vw, 600px);
    font-weight: 300;
    color: var(--sand);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
    letter-spacing: -0.05em;
}

/* Olive branch decoration */
.notfound-deco {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(80px, 10vw, 160px);
    color: var(--olive);
    pointer-events: none;
    opacity: 0.7;
}

/* Content wrapper */
.notfound-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Label - uppercase section label style */
.notfound-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 30px;
    font-weight: 400;
}

.notfound-label::before,
.notfound-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--olive);
}

/* Main "404" number */
.notfound-number {
    font-family: var(--font-serif);
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

/* The "0" in 404 - olive accent */
.notfound-zero {
    color: var(--olive);
    position: relative;
    display: inline-block;
}

.notfound-zero::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--olive);
    border-radius: 50%;
    opacity: 0.5;
}

/* Description message */
.notfound-message {
    font-family: var(--font-sans);
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 300;
    color: var(--stone);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

/* Decorative divider */
.notfound-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--earth), transparent);
    margin: 0 auto 30px;
}

/* Suggestion text */
.notfound-suggestion {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--earth-dark);
    margin-bottom: 24px;
}

/* Navigation links grid */
.notfound-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.notfound-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid var(--sand);
    background: var(--white);
    text-decoration: none;
    transition: all 0.4s var(--ease-expo);
}

.notfound-link:hover {
    border-color: var(--olive);
    background: var(--olive);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(122, 139, 105, 0.15);
}

.notfound-link-icon {
    font-size: 14px;
    color: var(--olive);
    transition: color 0.4s ease;
}

.notfound-link:hover .notfound-link-icon {
    color: var(--white);
}

.notfound-link-text {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    transition: color 0.4s ease;
}

.notfound-link:hover .notfound-link-text {
    color: var(--white);
}

/* CTA button - visible on light background */
.notfound-btn {
    margin: 0 auto;
    color: var(--olive);
    border-color: var(--olive);
}

.notfound-btn:hover {
    color: var(--cream);
}

/* ---- 404 Responsive ---- */
@media (max-width: 768px) {
    .notfound {
        min-height: calc(100vh - var(--header-h));
        padding: 60px 0;
    }

    .notfound-watermark {
        font-size: 200px;
        opacity: 0.35;
    }

    .notfound-deco {
        display: none;
    }

    .notfound-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .notfound-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .notfound-watermark {
        font-size: 150px;
        opacity: 0.25;
    }

    .notfound-number {
        font-size: 72px;
    }

    .notfound-label {
        font-size: 9px;
        letter-spacing: 4px;
    }

    .notfound-link {
        padding: 12px 20px;
    }
}