@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   COLOR TOKENS
   ============================================ */
:root {
    --green-dark: #2d4a2d;
    --green-mid:  #4a6741;
    --green-btn:  #5a7a52;
    --cream:      #f0ede6;
    --dark:       #1a1a1a;
    --dark2:      #222;
    --dark3:      #2a2a2a;
    --text-light: #e8e4dc;
    --text-muted: #888;
    /* compat aliases */
    --bg:              #f0ede6;
    --surface:         #ffffff;
    --surface-2:       #e8e4dc;
    --text:            #1a1a1a;
    --border:          #e8e4dc;
    --onr-black:       #1a1a1a;
    --onr-washed-black:#2a2a2a;
    --onr-white:       #ffffff;
    --onr-raw-cotton:  #e8e4dc;
    --onr-fabric-gray: #888;
    --focus:           rgba(45,74,45,0.35);
    --btn-primary-bg:  var(--green-btn);
    --btn-primary-text:#ffffff;
    --btn-primary-hover:var(--green-dark);
}

/* ============================================
   BASE RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
img[loading="lazy"] { min-height: 100px; }

h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a {
    color: var(--dark);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: color 0.2s;
}
a:hover { color: var(--green-mid); text-decoration: none; }
a:focus  { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 2px; }

button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* ============================================
   SKIP LINK
   ============================================ */
.skip-to-main {
    position: absolute; top: -100%; left: 0;
    background: var(--dark); color: #fff;
    padding: 8px 16px; text-decoration: none;
    z-index: 10000; font-weight: 600;
    border-radius: 0 0 4px 0;
    opacity: 0; transform: translateY(-100%);
}
.skip-to-main:focus { top: 0; opacity: 1; transform: translateY(0); }

/* ============================================
   BACKGROUND DECORATIONS (cosmetic layer only)
   ============================================ */
.background-container {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -10; pointer-events: none; overflow: hidden;
}
.light-rays, .shimmer, .floating-elements, .geometric-shapes, .sparkles {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; z-index: -10;
}

/* ============================================
   NAVIGATION  —  [PREVIOUS CHANGE: keep structure]
   ============================================ */
.store-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    padding: 0 48px; height: 72px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* Logo — absolute left [PREVIOUS CHANGE] */
.store-nav .logo {
    position: absolute; left: 48px;
    display: flex; align-items: center;
}

.logo-nav-rework { width: 140px; height: auto; transition: transform 0.3s; }
.logo-nav-rework:hover { transform: scale(1.03); }

/* Nav links — centered [PREVIOUS CHANGE] */
.store-nav .nav-links {
    display: flex; align-items: center;
    gap: 40px; list-style: none;
}
.store-nav .nav-links a {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--dark);
}
.store-nav .nav-links a:hover { color: var(--green-mid); text-decoration: none; }

/* WhatsApp nav button — desktop top-right [PREVIOUS CHANGE] */
.nav-wa-btn {
    position: absolute; right: 48px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: white;
    transition: background 0.2s, transform 0.2s;
    z-index: 1001;
}
.nav-wa-btn:hover { background: var(--green-mid); transform: scale(1.08); text-decoration: none; }
.nav-wa-btn svg { width: 22px; height: 22px; fill: white; pointer-events: none; }

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none; flex-direction: column;
    background: none; border: none; cursor: pointer;
    padding: 5px; z-index: 1001;
}
.mobile-menu-toggle span {
    width: 25px; height: 3px;
    background-color: var(--dark); margin: 3px 0;
    transition: all 0.3s ease; 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; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-6px); }

/* Dropdown */
.dropdown { position: relative; display: inline-block; }
.dropbtn {
    background: transparent; border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--dark); cursor: pointer;
}
.dropbtn:hover { color: var(--green-mid); }
.dropdown-content {
    display: none; position: absolute;
    background: var(--cream); min-width: 160px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 10; border-top: 2px solid var(--green-dark);
}
.dropdown-content a {
    color: var(--dark); padding: 12px 16px; display: block;
    margin: 0; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.5px; text-transform: none;
}
.dropdown-content a:hover { background: var(--surface-2); color: var(--green-mid); }
.dropdown:hover .dropdown-content { display: block; }

/* ============================================
   WHATSAPP FLOAT — mobile only, bottom-right [PREVIOUS CHANGE]
   ============================================ */
.whatsapp-float {
    display: none; /* hidden on desktop */
    position: fixed; z-index: 10000;
    width: 60px; height: 60px;
    bottom: 30px; right: 30px;
    background-color: #25D366; color: #fff;
    border-radius: 50%;
    align-items: center; justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    border: none; outline: none; cursor: pointer; overflow: hidden;
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #128C7E; text-decoration: none; }
.whatsapp-float svg { width: 35px; height: 35px; fill: currentColor; pointer-events: none; display: block; }

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    50%       { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative; min-height: 100vh;
    margin-top: 72px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 60px 64px;
    color: white; overflow: hidden;
}

/* Background image */
.hero-grid {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; z-index: 0;
}
.hero-grid::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.55));
    z-index: 1;
}
.hero-grid img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

/* Content area */
.hero-content {
    position: relative; z-index: 2;
    max-width: 700px;
}

/* Remove old centered card overlay */
.hero-text {
    background: none; box-shadow: none;
    backdrop-filter: none; padding: 0;
    border-radius: 0; animation: none;
    display: block; text-align: left;
}

/* Old logo/brand inside hero — hide */
.hero-brand { display: none; }
.hero-logo  { display: none; }

.hero-badge {
    display: inline-block; background: var(--green-dark);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 8px 16px; margin-bottom: 28px;
    border-radius: 2px; color: white; width: fit-content;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700; line-height: 1.05;
    margin-bottom: 24px; color: white;
}

.hero-subtitle {
    font-size: 1.1rem; font-weight: 300; max-width: 500px;
    line-height: 1.6; margin-bottom: 40px;
    opacity: 0.95; color: white;
}

.hero-actions {
    display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}

/* Hero stats */
.hero-stats {
    display: flex; gap: 0; margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2); padding-top: 32px;
}
.hero-stat {
    flex: 1; padding-right: 32px;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.hero-stat:last-child  { border-right: none; padding-left: 32px; padding-right: 0; }
.hero-stat:not(:first-child) { padding-left: 32px; }
.hero-stat .stat-num   { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.hero-stat .stat-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; margin-top: 6px; }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
    background: var(--dark); color: var(--text-light);
    overflow: hidden; white-space: nowrap; padding: 14px 0;
}
.marquee-inner {
    display: inline-flex; animation: marquee 18s linear infinite;
}
.marquee-inner span {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; padding: 0 20px;
}
.marquee-inner span.dot { color: var(--green-btn); font-size: 1rem; padding: 0 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes popIn {
    0%   { opacity: 0; transform: scale(0.5); }
    50%  { transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Legacy classes — kept for compatibility, no auto-fire */
.pop-in     {}
.fade-in-up {}

/* ---- Scroll-triggered animation system ---- */
.anim {
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.anim:not(.visible) { opacity: 0; }
.anim.slide-up:not(.visible)    { transform: translateY(50px); }
.anim.slide-left:not(.visible)  { transform: translateX(-60px); }
.anim.slide-right:not(.visible) { transform: translateX(60px); }
.anim.pop-anim:not(.visible)    { transform: scale(0.82); }
.anim.visible { opacity: 1 !important; transform: none !important; }

.anim.delay-1 { transition-delay: 0.12s; }
.anim.delay-2 { transition-delay: 0.24s; }
.anim.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
    .anim { transition: opacity 0.3s ease !important; }
    .anim:not(.visible) { transform: none !important; }
}

/* ============================================
   SHARED SECTION LABELS
   ============================================ */
.section-label {
    text-align: center; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--green-mid); margin-bottom: 20px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    text-align: center; font-weight: 700; line-height: 1.2;
    margin-bottom: 64px; color: var(--dark);
}

/* ============================================
   HERO BUTTONS
   ============================================ */
.cta-button {
    background: var(--green-btn); color: white;
    border: none; cursor: pointer;
    padding: 18px 40px; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s;
    display: inline-block; font-family: 'Inter', sans-serif;
}
.cta-button:hover { background: var(--green-dark); color: white; text-decoration: none; transform: none; }
.cta-button:focus { outline: 3px solid var(--focus); outline-offset: 2px; }

.btn-secondary-link {
    color: white; text-decoration: none;
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.5px; opacity: 0.9;
    transition: opacity 0.2s;
}
.btn-secondary-link:hover { opacity: 1; color: white; text-decoration: none; }

/* ============================================
   IMPACT / WHY SECTION  — old card style
   ============================================ */
.impact-section {
    background: var(--cream);
    padding: 80px 20px;
    text-align: center;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.impact-item {
    text-align: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}
.impact-icon {
    font-size: clamp(2em, 5vw, 3em);
    margin-bottom: 20px;
}
.impact-item h3 {
    font-size: clamp(1.2em, 3vw, 1.5em);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
    word-wrap: break-word;
}
.impact-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: clamp(0.9em, 2vw, 1em);
    margin: 0;
    word-wrap: break-word;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.philosophy-left {
    background: var(--green-dark);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 48px; position: relative; overflow: hidden;
}
.philosophy-left .est-badge {
    position: absolute; top: 40px; left: 40px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
    color: white; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 8px 16px; border-radius: 2px;
}
.philosophy-logo-bg {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; font-weight: 900;
    color: rgba(255,255,255,0.12);
    letter-spacing: -4px; line-height: 1;
}
.philosophy-right {
    background: var(--dark2); color: white;
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 64px;
}
.philosophy-right .section-label { text-align: left; color: var(--green-btn); }
.philosophy-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; line-height: 1.2; margin-bottom: 28px; color: white;
}
.philosophy-right p { font-size: 1rem; line-height: 1.7; color: #ccc; margin-bottom: 16px; }
.btn-primary-dark {
    display: inline-block; background: var(--green-btn); color: white;
    padding: 18px 40px; text-decoration: none; font-size: 0.75rem;
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    margin-top: 16px; transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}
.btn-primary-dark:hover { background: var(--green-dark); color: white; text-decoration: none; }

/* ============================================
   COMMUNITY / TESTIMONIALS — dark bg with horizontal scrolling
   ============================================ */
.testimony-section {
    background: var(--dark); padding: 100px 0;
    overflow: hidden;
}
.testimony-section .section-label { 
    color: var(--green-btn); 
    text-align: center;
    padding: 0 64px;
}
.testimony-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    text-align: center; font-weight: 700; line-height: 1.2;
    margin-bottom: 60px; color: white;
    padding: 0 64px;
}

/* Scrolling container */
.testimonials-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Scrolling track with animation */
.testimonials-scroll-track {
    display: flex;
    gap: 24px;
    animation: scroll-testimonials 60s linear infinite;
    width: fit-content;
}

/* Pause animation on hover */
.testimonials-scroll-track:hover {
    animation-play-state: paused;
}

/* Keyframe animation for smooth horizontal scrolling */
@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: #2e2e2e; 
    border-radius: 4px; 
    padding: 40px 32px;
    display: flex; 
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
}
.testimonial-card:hover { 
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.quote-icon { font-size: 2rem; color: var(--green-btn); margin-bottom: 20px; line-height: 1; }
.testimony-text {
    color: #ccc; font-size: 0.95rem; line-height: 1.7;
    margin-bottom: 32px; font-style: normal;
    flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--green-btn);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: white; font-size: 1rem;
    flex-shrink: 0; overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 700; color: white; font-size: 0.9rem; }
.author-role { font-size: 0.75rem; color: #888; }
.stars { color: #f5c518; font-size: 0.9rem; margin-top: 12px; }

/* Hide old carousel */
.carousel-container { display: none; }

/* ============================================
   MODELS / GALLERY — cream bg  [PREVIOUS CHANGE: dropdown logic kept]
   ============================================ */
.models-section {
    background: var(--cream); padding: 100px 64px;
}
.models-section .section-label { margin-bottom: 20px; }
.models-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    text-align: center; font-weight: 700; line-height: 1.2;
    margin-bottom: 10px; color: var(--dark);
}
.models-subtitle {
    text-align: center; font-size: 0.95rem; color: #666;
    margin-bottom: 48px; max-width: 600px;
    margin-left: auto; margin-right: auto;
}
.models-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    max-width: 1200px; margin: 0 auto; padding: 0;
}
.model-card {
    overflow: hidden; border-radius: 2px;
    position: relative; background: none; box-shadow: none;
}
.model-card:hover { transform: none; box-shadow: none; }
.model-card img {
    width: 100%; height: 300px; object-fit: cover;
    transition: transform 0.4s ease; cursor: pointer; display: block;
}
.model-card:hover img { transform: scale(1.04); }
.model-overlay { display: none; }

/* Expand/collapse [PREVIOUS CHANGE] */
.models-extra {
    max-height: 0; overflow: hidden; transition: max-height 0.6s ease;
}
.models-extra.expanded { max-height: 3000px; }
.models-extra .models-grid { margin-top: 12px; }

.models-expand-btn {
    display: block; margin: 32px auto 0;
    padding: 14px 36px;
    background: var(--green-dark); color: white;
    border: none; font-family: 'Inter', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s;
}
.models-expand-btn:hover { background: var(--green-mid); }
.models-expand-btn .expand-icon {
    display: inline-block; margin-left: 8px;
    transition: transform 0.3s ease;
}
.models-expand-btn.open .expand-icon { transform: rotate(180deg); }

/* ============================================
   COLLABORATIONS / PARTNERS — dark bg
   ============================================ */
.collaborations-section {
    background: var(--dark3); padding: 80px 64px;
}
.collaborations-section .section-label { color: var(--green-btn); }
.collaborations-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    text-align: center; font-weight: 700; line-height: 1.2;
    margin-bottom: 48px; color: white;
}
.collaborations-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 350px)); gap: 24px;
    max-width: 1200px; margin: 0 auto;
    justify-content: center;
}
.collaboration-item {
    background: #333; border-radius: 4px; padding: 40px 32px;
    text-align: center; transition: transform 0.3s; box-shadow: none;
}
.collaboration-item:hover { transform: translateY(-4px); }
.partner-logo {
    width: 80px; height: 80px; object-fit: contain;
    margin: 0 auto 20px; display: block; border-radius: 4px;
}
.collaboration-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; color: white; margin-bottom: 8px; font-weight: 700;
}
.collaboration-item p { color: #888; font-size: 0.85rem; margin: 0; }

/* ============================================
   MODALS
   ============================================ */
.modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex; justify-content: center; align-items: center; z-index: 2000;
}
.modal.hidden { display: none; }
.modal-content {
    background: white; border-radius: 4px;
    max-width: 700px; width: 90%; padding: 30px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    display: flex; gap: 30px; flex-wrap: wrap;
    align-items: center; position: relative;
}
.close-btn {
    position: absolute; top: 15px; right: 20px;
    font-size: 2em; font-weight: 700; color: #888;
    background: none; border: none; cursor: pointer;
    line-height: 1; padding: 5px 10px; transition: color 0.2s;
}
.close-btn:hover { color: var(--dark); }
.modal-content img { width: 300px; height: 300px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.modal-details { flex: 1; }
.modal-details h3 { margin-top: 0; font-family: 'Playfair Display', serif; font-size: 1.8em; color: var(--dark); }
.modal-details p { font-size: 1.1em; color: #666; margin-bottom: 15px; }
.modal-price { font-weight: 700; font-size: 1.3em; color: var(--dark); }
#modalDescription { white-space: pre-wrap; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none; position: fixed; z-index: 10000;
    padding: 50px 20px 20px; inset: 0;
    overflow: auto; background: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content {
    margin: auto; display: block;
    max-width: 90%; max-height: 90vh; object-fit: contain;
    animation: zoomIn 0.3s ease;
}
@keyframes zoomIn { from { transform: scale(0.8); } to { transform: scale(1); } }
.lightbox-close {
    position: absolute; top: 15px; right: 35px;
    color: #f1f1f1; font-size: 50px; font-weight: bold;
    cursor: pointer; z-index: 10001; line-height: 40px; transition: color 0.3s;
}
.lightbox-close:hover { color: #bbb; }
.lightbox-caption {
    margin: auto; display: block; width: 80%; max-width: 700px;
    text-align: center; color: #ccc; padding: 10px 0; font-size: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.store-footer {
    background: #111; color: var(--text-light);
    padding: 80px 64px 40px; margin-top: auto;
    font-family: 'Inter', sans-serif;
}
.footer-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 2fr 1fr 1fr;
    gap: 60px; padding-bottom: 60px;
    border-bottom: 1px solid #222;
}
.footer-column { display: flex; flex-direction: column; }
.left-column { gap: 20px; align-items: flex-start; }
.award-badge { width: 140px; height: auto; margin: 0 0 12px; display: block; object-fit: contain; }
.land-acknowledgment { font-size: 0.85rem; color: #666; line-height: 1.7; margin: 0; }

.menu-column h4 {
    font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: #666; margin-bottom: 20px; font-weight: 700;
}
.footer-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.menu-group h5 {
    font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: #666; margin-bottom: 15px; font-weight: 700;
}
.menu-group a { display: block; color: #ccc; margin-bottom: 10px; font-size: 0.9rem; transition: color 0.2s; }
.menu-group a:hover { color: white; }

.newsletter-column h4 {
    font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: #666; margin-bottom: 15px; font-weight: 700;
}
.newsletter-column p { color: #888; font-size: 0.85rem; margin-bottom: 16px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
    flex: 1; background: #222; border: 1px solid #333; color: white;
    padding: 14px 16px; font-size: 0.85rem; outline: none;
    border-right: none; font-family: 'Inter', sans-serif;
}
.newsletter-form input::placeholder { color: #555; }
.newsletter-form input:focus { border-color: var(--green-btn); }
.newsletter-form button {
    background: var(--green-btn); border: none; cursor: pointer;
    padding: 14px 20px; color: white; font-size: 1.1rem; transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--green-dark); }

.social-column h4 {
    font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: #666; margin-bottom: 25px; font-weight: 700;
}
.social-column ul { list-style: none; padding: 0; margin: 0; }
.social-column li { margin-bottom: 12px; }
.social-column a { color: #ccc; font-size: 0.9rem; transition: color 0.2s; }
.social-column a:hover { color: white; }

.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding: 28px 0 20px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: #555;
    border-top: 1px solid #222;
}
.bottom-left select {
    background: transparent; border: none; color: #888;
    font-size: 0.85rem; padding: 5px; cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.bottom-left select:hover { color: white; }
.bottom-center { display: flex; align-items: center; gap: 15px; }
.bottom-center span { white-space: nowrap; }
.bottom-right .payment-icons { display: flex; gap: 10px; font-size: 1.2em; }

/* ============================================
   STORE / PRODUCT SUB-PAGES
   ============================================ */
.store-header { padding: 120px 20px 60px; text-align: center; background: var(--cream); }
.store-header h1 { font-family: 'Playfair Display', serif; font-size: 2.5em; font-weight: 700; margin-bottom: 10px; }
.store-header p  { font-size: 1.1em; color: #666; margin: 0; }

.product-section { max-width: 1200px; margin: 0 auto 80px; padding: 0 20px; position: relative; z-index: 10; }
.product-section h2 { text-align: center; margin-bottom: 40px; font-family: 'Playfair Display', serif; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; position: relative; z-index: 10; }
.product-card {
    background: transparent; border: none; padding: 10px;
    cursor: pointer; transition: transform 0.2s;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; z-index: 10;
}
.product-card:hover { transform: scale(1.02); }
.product-card img { width: 100%; height: 280px; object-fit: cover; border-radius: 2px; margin-bottom: 10px; }
.product-card h3 { margin: 0 0 5px; font-size: 1em; font-weight: 600; color: var(--dark); }
.product-card p.price { font-weight: 600; color: var(--dark); font-size: 1em; margin: 0; }
.product-card.sold-out { opacity: 0.7; position: relative; }
.product-card.sold-out::before {
    content: "SOLD OUT"; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark); color: white;
    padding: 8px 16px; font-weight: 700; font-size: 0.9em; z-index: 10;
}

/* ============================================
   RESPONSIVE — MOBILE  [PREVIOUS CHANGES preserved]
   ============================================ */
@media (max-width: 768px) {
    /* Show WA float, bottom-right [PREVIOUS CHANGE] */
    .whatsapp-float {
        display: flex;
        width: 50px; height: 50px;
        bottom: 20px; right: 20px; left: auto;
    }
    .whatsapp-float svg { width: 28px; height: 28px; }
    /* Hide nav WA on mobile [PREVIOUS CHANGE] */
    .nav-wa-btn { display: none; }

    /* Mobile nav */
    .mobile-menu-toggle { display: flex; order: -1; }
    .store-nav { padding: 0 20px; height: 64px; justify-content: space-between; }
    .store-nav .logo { position: static; }
    .store-nav .nav-links {
        position: fixed; top: 64px; left: 0; right: 0;
        background: var(--cream); flex-direction: column;
        padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%); opacity: 0; visibility: hidden;
        transition: all 0.3s ease; z-index: 999; gap: 0;
    }
    .store-nav .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .store-nav .nav-links a {
        padding: 15px 10px; border-bottom: 1px solid rgba(0,0,0,0.08);
        text-align: center; display: block; margin: 0;
    }
    .store-nav .nav-links a:last-child { border-bottom: none; }
    .logo-nav-rework { width: 110px; }
    .dropbtn { padding: 15px 10px; display: block; width: 100%; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .dropdown-content { position: static; box-shadow: none; background: transparent; display: none; border-top: none; }
    .dropdown.active .dropdown-content { display: block; }
    .dropdown-content a { padding: 10px 20px; border-left: 3px solid var(--green-dark); margin-left: 15px; }

    /* Hero */
    .hero-section { padding: 40px 28px; margin-top: 64px; }
    .hero-text h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-stat { border-right: none; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 20px; }
    .hero-stat:last-child { border-bottom: none; }
    .hero-actions { flex-direction: column; }
    .cta-button { width: 100%; text-align: center; }

    /* Sections */
    .impact-section { padding: 50px 10px; }
    .impact-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 15px; }
    .impact-item { padding: 10px; }
    .philosophy-section { grid-template-columns: 1fr; }
    .philosophy-left { min-height: 280px; }
    .philosophy-right { padding: 48px 28px; }
    .testimony-section { padding: 60px 0; }
    .testimony-section h2 { padding: 0 24px; margin-bottom: 40px; }
    .testimony-section .section-label { padding: 0 24px; }
    .testimonial-card { min-width: 300px; max-width: 300px; padding: 30px 24px; }
    .testimonials-scroll-track { animation-duration: 40s; }
    .models-section { padding: 60px 24px; }
    .models-grid { grid-template-columns: 1fr; gap: 12px; }
    .model-card img { height: 280px; }
    .collaborations-section { padding: 60px 24px; }
    .collaborations-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
        justify-content: center;
    }

    /* Footer */
    .store-footer { padding: 60px 24px 30px; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }

    /* Modal / Lightbox */
    .modal-content { flex-direction: column; padding: 20px; max-width: 95%; }
    .modal-content img { width: 100%; max-width: 300px; height: auto; }
    .lightbox-close { font-size: 40px; right: 20px; top: 10px; }
    .lightbox-content { max-width: 95%; max-height: 85vh; }
    .lightbox { padding: 40px 10px 10px; }
}

@media (max-width: 480px) {
    .impact-section, .models-section, .testimony-section, .collaborations-section { padding: 50px 20px; }
    .store-footer { padding: 50px 20px 30px; }
    .footer-menu-grid { grid-template-columns: 1fr; }
    .hero-section { padding: 30px 20px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section { padding: 50px 40px; }
    .impact-section, .models-section, .collaborations-section { padding: 80px 40px; }
    .testimony-section { padding: 80px 0; }
    .testimony-section h2 { padding: 0 40px; }
    .testimony-section .section-label { padding: 0 40px; }
    .testimonial-card { min-width: 380px; max-width: 380px; }
    .models-grid { grid-template-columns: repeat(2, 1fr); }
    .store-footer { padding: 60px 40px 30px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
    .philosophy-right { padding: 60px 40px; }
}
