/*
Theme Name: Life Bottled
Theme URI: https://lifebottled.com
Author: Life Bottled Inc.
Author URI: https://lifebottled.com
Description: Premium Luxury Alpine Spring Water Theme with High-Definition 3D Scroll Canvas Animation, Interactive Hotspots, 6-Feature Showcase Grid, 4-Bottle Size Slider, Validated Inquiry Form, and 3-Column Luxury Footer.
Version: 2.1.0
Text Domain: life-bottled
*/

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        :root {
            --warm-bg: #bdb2a7;
            --primary-color: #1a1814;
            --primary-light: #8c6827;
            --ink: #1a1a1a;
            --ink-soft: #5a554e;
            --gold: #c9a86a;
            --glass-bg: rgba(255, 255, 255, 0.45);
            --glass-border: rgba(255, 255, 255, 0.3);
            --glass-shadow: rgba(44, 37, 32, 0.08);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            background-color: var(--warm-bg); 
            color: var(--ink);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        /* ============================================================
           NON-STICKY HEADER STYLES (MENU ON RIGHT SIDE)
        ============================================================ */
        header.site-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px clamp(1.5rem, 4vw, 48px);
            z-index: 100;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .header-logo-img {
            height: clamp(88px, 6.5vw, 110px);
            width: auto;
            object-fit: contain;
            display: block;
            filter: drop-shadow(0 3px 10px rgba(26,24,20,0.1));
            transition: height 0.3s ease, transform 0.25s ease;
        }
        
        .header-logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .header-logo-link:hover .header-logo-img {
            transform: scale(1.05);
        }

        .header-right-group {
            display: flex;
            align-items: center;
            gap: clamp(1.5rem, 3vw, 44px);
            margin-left: auto;
        }

        nav.header-nav {
            display: flex;
            align-items: center;
            gap: clamp(16px, 2.5vw, 32px);
        }

        nav.header-nav a {
            text-decoration: none;
            color: #1a1a1a;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.25s ease;
            display: inline-block;
        }

        nav.header-nav a:not(.nav-contact-btn):hover {
            color: #8c6827;
        }

        /* THEME HARMONIOUS CONTACT US BUTTON */
        nav.header-nav a.nav-contact-btn {
            background: #d8cebf;
            color: #1a1814;
            padding: 9px 24px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.2px;
            border: 1px solid rgba(26, 24, 20, 0.22);
            box-shadow: 0 4px 12px rgba(26, 24, 20, 0.08);
            transition: all 0.25s ease;
        }

        nav.header-nav a.nav-contact-btn:hover {
            background: #c5b9a7;
            color: #1a1814;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(26, 24, 20, 0.15);
        }

        /* ============================================================
           MOBILE MENU (HAMBURGER & SLIDE-OUT DRAWER)
        ============================================================ */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: rgba(232, 226, 216, 0.9);
            border: 1px solid rgba(26, 24, 20, 0.18);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            cursor: pointer;
            padding: 0;
            gap: 5px;
            z-index: 105;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 12px rgba(26, 24, 20, 0.08);
        }

        .mobile-menu-toggle:hover {
            background: #ded5c8;
            transform: scale(1.05);
        }

        .hamburger-bar {
            display: block;
            width: 22px;
            height: 2px;
            background-color: #1a1814;
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .mobile-menu-toggle.is-active .hamburger-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .mobile-menu-toggle.is-active .hamburger-bar:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-toggle.is-active .hamburger-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* DRAWER OVERLAY */
        .mobile-nav-drawer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 9999;
            pointer-events: none;
            visibility: hidden;
            transition: visibility 0.35s ease;
        }

        .mobile-nav-drawer.is-open {
            pointer-events: auto;
            visibility: visible;
        }

        .mobile-nav-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 24, 20, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .mobile-nav-drawer.is-open .mobile-nav-backdrop {
            opacity: 1;
        }

        .mobile-nav-panel {
            position: absolute;
            top: 0;
            right: 0;
            width: min(85vw, 340px);
            height: 100%;
            background: #ded5c8;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            padding: 30px 24px;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            border-left: 1px solid rgba(26, 24, 20, 0.12);
        }

        .mobile-nav-drawer.is-open .mobile-nav-panel {
            transform: translateX(0);
        }

        .mobile-nav-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(26, 24, 20, 0.12);
            margin-bottom: 24px;
        }

        .mobile-nav-logo {
            height: 60px;
            width: auto;
            object-fit: contain;
        }

        .mobile-nav-close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(26, 24, 20, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #1a1814;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .mobile-nav-close:hover {
            background: #ffffff;
            transform: scale(1.05);
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 14px;
            flex: 1;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: #1a1814;
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 600;
            padding: 10px 14px;
            border-radius: 12px;
            transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
            display: flex;
            align-items: center;
        }

        .mobile-nav-links a:hover,
        .mobile-nav-links a:focus {
            background: rgba(255, 255, 255, 0.6);
            color: #8c6827;
            transform: translateX(4px);
        }

        .mobile-nav-links a.mobile-contact-btn {
            margin-top: 10px;
            background: #1a1814;
            color: #f7f4ef;
            justify-content: center;
            text-align: center;
            padding: 14px 20px;
            border-radius: 999px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 16px rgba(26, 24, 20, 0.15);
        }

        .mobile-nav-links a.mobile-contact-btn:hover {
            background: #332d26;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .mobile-nav-footer {
            padding-top: 20px;
            border-top: 1px solid rgba(26, 24, 20, 0.12);
            font-size: 0.82rem;
            color: rgba(26, 24, 20, 0.65);
        }

        .mobile-nav-footer p {
            margin-bottom: 4px;
            font-weight: 600;
        }

        .mobile-nav-footer a {
            color: #8c6827;
            text-decoration: none;
            font-weight: 600;
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .icon {
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: #1a1a1a;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .badge {
            position: absolute;
            top: -6px;
            right: -8px;
            background-color: #d89632;
            color: white;
            font-size: 10px;
            font-weight: 700;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        /* ============================================================
           HERO SECTION: 100% FULL-SCREEN COVER MODE
        ============================================================ */
        .scroll-container {
            height: 2800px;
            position: relative;
            background-color: var(--warm-bg);
        }

        .sticky-wrapper {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            height: 100dvh;
            overflow: hidden;
            background-color: var(--warm-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }

        .animation-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
            overflow: hidden;
        }

        #animation-canvas {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* Loader Overlay */
        .loader-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--warm-bg);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 20;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader-overlay.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(201, 168, 106, 0.25);
            border-top-color: #c9a86a;
            border-radius: 50%;
            animation: spin 1s infinite linear;
            margin-bottom: 16px;
        }

        .loader-text {
            font-family: var(--font-heading);
            font-size: 16px;
            color: var(--ink-soft);
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Hotspots Elements */
        .hotspots-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 15;
        }

        .hotspots-container.visible {
            pointer-events: auto;
            opacity: 1;
        }

        .hotspot {
            position: absolute;
            transform: translate(-50%, -50%);
            border-radius: 35px;
            z-index: 25;
        }

        #hotspot-source { top: 43.3%; left: 29.5%; width: 190px; height: 75px; }
        #hotspot-shop   { top: 62.5%; left: 36.5%; width: 150px; height: 75px; }
        #hotspot-ph     { top: 44.4%; left: 70.0%; width: 160px; height: 75px; }
        #hotspot-purity { top: 59.7%; left: 73.0%; width: 160px; height: 75px; }

        .hotspot-trigger {
            width: 100%;
            height: 100%;
            background: transparent;
            border: 1px solid transparent;
            border-radius: 35px;
            cursor: pointer;
            outline: none;
            display: block;
            transition: all 0.25s ease;
        }

        .hotspot-trigger:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.35);
        }

        /* Info Modals / Popovers */
        .modal-card {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            width: 420px;
            max-width: 90%;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(44, 37, 32, 0.2);
            z-index: 30;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            pointer-events: none;
        }

        .modal-card.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
            pointer-events: auto;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(44, 37, 32, 0.05);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--ink);
            transition: background 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(44, 37, 32, 0.1);
        }

        .modal-content h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--ink);
        }

        .modal-content p {
            font-size: 14.5px;
            line-height: 1.6;
            color: var(--ink-soft);
        }

        /* ============================================================
           PRODUCT SHOWCASE SECTION (MATCHES REFERENCE MOCKUP UI)
        ============================================================ */
        .showcase-section {
            background: var(--warm-bg);
            padding: 4.5rem 0 6rem 0;
            position: relative;
            z-index: 15;
            border-top: 1px solid rgba(26,24,20,0.06);
        }

        .showcase__container {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 clamp(1.25rem, 3.5vw, 3rem);
            display: grid;
            grid-template-columns: 390px 1fr;
            gap: 3.5rem;
            align-items: start;
        }

        /* LEFT: BOTTLE SHOWCASE CARD */
        .showcase__visual-card {
            background: #e8e2d8;
            border-radius: 0 0 54px 0;
            padding: 0;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 560px;
            box-shadow: 0 16px 36px rgba(26,24,20,0.04);
            border: 1px solid rgba(26,24,20,0.05);
            overflow: hidden;
        }

        .showcase__bottle-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 560px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase__bottle-img {
            width: 100%;
            height: 100%;
            min-height: 560px;
            max-height: 580px;
            object-fit: cover;
            object-position: center center;
            display: block;
            position: relative;
            z-index: 2;
        }

        /* ORBIT RING & SHOP NOW BUTTON */
        .bottle-orbit {
            position: absolute;
            width: 320px;
            height: 320px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 3;
        }

        .orbit-svg {
            width: 100%;
            height: 100%;
            overflow: visible;
        }

        .orbit-shop-btn {
            position: absolute;
            right: -25px;
            top: 48%;
            transform: translateY(-50%);
            pointer-events: auto;
            background: #f2eee9;
            border: 1px solid rgba(26,24,20,0.22);
            border-radius: 999px;
            padding: 0.45rem 1.15rem;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            color: var(--ink);
            box-shadow: 0 4px 14px rgba(26,24,20,0.06);
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 5;
        }

        .orbit-shop-btn:hover {
            background: var(--ink);
            color: #fff;
            border-color: var(--ink);
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 6px 20px rgba(26,24,20,0.15);
        }

        .showcase__sparkle {
            position: absolute;
            right: 1.25rem;
            bottom: 1.25rem;
            width: 20px;
            height: 20px;
            color: rgba(26,24,20,0.2);
        }

        /* RIGHT: FEATURES DETAILS */
        .showcase__details {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }

        /* 6 FEATURES GRID (STATIC) */
        .showcase__features-top {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.2rem 0;
            padding: 0.5rem 0;
        }

        .feature-col {
            padding: 0 1.6rem;
            border-right: 1px solid rgba(26,24,20,0.12);
            display: flex;
            flex-direction: column;
        }

        .feature-col:nth-child(3n+1) {
            padding-left: 0;
        }

        .feature-col:nth-child(3n) {
            border-right: none;
            padding-right: 0;
        }

        .feature-col__icon {
            width: 32px;
            height: 32px;
            color: var(--accent-gold, #c9a86a);
            margin-bottom: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 1.5rem;
            line-height: 1;
        }

        .feature-col__icon i {
            font-size: 1.45rem;
            color: var(--accent-gold, #c9a86a);
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .feature-col:hover .feature-col__icon i {
            transform: translateY(-2px) scale(1.08);
            color: var(--accent-gold-dark, #8c6827);
        }

        .feature-col__icon svg {
            width: 100%;
            height: 100%;
        }

        .feature-col__title {
            font-size: 1.02rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 0.45rem;
            letter-spacing: -0.01em;
        }

        .feature-col__desc {
            font-size: 0.78rem;
            font-weight: 400;
            line-height: 1.55;
            color: var(--ink-soft);
        }

        /* SPECS CARD CAROUSEL (ONLY THIS CARD SCROLLS) */
        .specs-carousel-viewport {
            width: 100%;
            overflow: hidden;
            border-radius: 20px;
            position: relative;
        }

        .specs-carousel-track {
            display: flex;
            width: 100%;
            transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: transform;
        }

        .specs-slide {
            width: 100%;
            min-width: 100%;
            flex: 0 0 100%;
            box-sizing: border-box;
            background: #e5ddd4;
            border-radius: 20px;
            padding: 2.2rem 2.2rem;
            box-shadow: 0 12px 36px rgba(26,24,20,0.03);
            border: 1px solid rgba(26,24,20,0.06);
            position: relative;
        }

        .specs-card__grid {
            display: grid;
            grid-template-columns: 1.15fr 1fr 1.05fr;
            gap: 1.75rem;
            align-items: start;
        }

        .specs-col {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .specs-col__header {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            margin-bottom: 0.9rem;
        }

        .specs-icon {
            width: 22px;
            height: 22px;
            color: var(--ink);
            flex-shrink: 0;
        }

        .specs-icon svg {
            width: 100%;
            height: 100%;
        }

        .specs-col__header h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--ink);
        }

        /* SPECS CHECKLIST */
        .specs-checklist {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            list-style: none;
        }

        .specs-checklist li {
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
            font-size: 0.74rem;
            line-height: 1.45;
            color: var(--ink);
        }

        .check-icon {
            width: 14px;
            height: 14px;
            color: var(--ink);
            flex-shrink: 0;
            margin-top: 1px;
        }

        .check-icon svg {
            width: 100%;
            height: 100%;
        }

        /* BALANCED PH & CREST */
        .specs-balanced-desc {
            font-size: 0.74rem;
            line-height: 1.45;
            color: var(--ink-soft);
        }

        .specs-monogram {
            margin-top: 1.1rem;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }

        .monogram-crest {
            position: relative;
            width: 70px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .monogram-crest svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .monogram-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 600;
            font-style: italic;
            color: var(--ink);
            position: relative;
            z-index: 2;
            letter-spacing: 0.05em;
        }

        .specs-netwt {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .specs-netwt span {
            font-size: 0.62rem;
            letter-spacing: 0.12em;
            color: var(--ink-soft);
        }

        .specs-netwt strong {
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            color: var(--ink);
            font-weight: 600;
        }

        /* NUTRITION & BARCODE */
        .specs-nutrition-box {
            border: 1px solid rgba(26,24,20,0.18);
            border-radius: 4px;
            padding: 0.4rem 0.55rem;
            background: rgba(255,255,255,0.25);
            margin-bottom: 0.85rem;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .nutrition-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.65rem;
            color: var(--ink);
        }

        .nutrition-row--head {
            font-weight: 600;
            border-bottom: 1px solid rgba(26,24,20,0.1);
            padding-bottom: 0.2rem;
            margin-bottom: 0.1rem;
        }

        .specs-barcode-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0.4rem 0.5rem;
            background: rgba(255,255,255,0.4);
            border-radius: 4px;
            border: 1px solid rgba(26,24,20,0.08);
        }

        .barcode-graphic {
            display: flex;
            align-items: stretch;
            height: 32px;
            gap: 1.5px;
        }

        .b-line {
            background: #1a1814;
            display: inline-block;
            height: 100%;
        }

        .b-w1 { width: 1.2px; }
        .b-w2 { width: 2.4px; }
        .b-w3 { width: 3.8px; }

        .b-space { width: 1.5px; display: inline-block; }
        .b-s1 { width: 2.5px; }
        .b-s2 { width: 4.5px; }

        .barcode-digits {
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.68rem;
            letter-spacing: 0.16em;
            color: var(--ink);
            margin-top: 0.2rem;
            font-weight: 600;
        }

        /* PAGINATION DOTS */
        .showcase__pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 0.5rem;
        }

        .pag-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(26,24,20,0.22);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .pag-dot:hover {
            background: rgba(26,24,20,0.45);
        }

        .pag-dot.is-active {
            width: 20px;
            border-radius: 999px;
            background: var(--ink);
        }

        /* ============================================================
           PRODUCT SLIDER SECTION (EDGE-TO-EDGE COVER IMAGE NO BORDERS)
        ============================================================ */
        .nature-banner-section {
            width: 100%;
            min-height: 600px;
            background: var(--warm-bg);
            position: relative;
            z-index: 15;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4.5rem 1.5rem 5.5rem 1.5rem;
            border-top: 1px solid rgba(26,24,20,0.06);
        }

        .nature-slider-container {
            max-width: 1360px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* SECTION HEADER */
        .nature-slider-header {
            text-align: center;
            max-width: 720px;
            margin-bottom: 3rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .nature-slider-badge {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #8c6827;
            background: rgba(201, 168, 106, 0.12);
            border: 1px solid rgba(201, 168, 106, 0.28);
            padding: 6px 18px;
            border-radius: 20px;
            margin-bottom: 1rem;
        }

        .nature-slider-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 3.8vw, 2.75rem);
            font-weight: 700;
            color: var(--ink);
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }

        .nature-slider-desc {
            font-size: clamp(0.95rem, 1.6vw, 1.1rem);
            color: var(--ink-soft);
            line-height: 1.6;
            max-width: 580px;
        }

        /* SLIDER WRAPPER & CONTROLS */
        .slider-viewport-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
        }

        .slider-cards-track {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 1.25rem 0.25rem;
            width: 100%;
            scrollbar-width: none;
        }

        .slider-cards-track::-webkit-scrollbar {
            display: none;
        }

        /* SLIDER PRODUCT CARD - EDGE TO EDGE COVER IMAGE (NO TOP/SIDE GAPS) */
        .nature-product-card {
            flex: 0 0 calc((100% - 3rem) / 3);
            min-width: 0;
            background: #e8e2d8;
            border-radius: 28px;
            padding: 0;
            box-shadow: 0 14px 32px rgba(26, 24, 20, 0.05);
            border: 1px solid rgba(26, 24, 20, 0.06);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }

        .nature-product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 44px rgba(26, 24, 20, 0.1);
            background: #eee8df;
        }

        /* CARD TOP IMAGE - CLEAN LUXURY CONTAINER FOR TRANSPARENT PNG BOTTLES */
        .card-visual-row {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
            background: #e8e2d8;
            padding: 24px 16px;
        }

        .card-bottle-img {
            max-width: 100%;
            max-height: 100%;
            height: 232px;
            width: auto;
            object-fit: contain;
            object-position: center;
            display: block;
            transition: transform 0.4s ease, filter 0.4s ease;
            filter: drop-shadow(0 8px 16px rgba(26, 24, 20, 0.14));
        }

        .nature-product-card:hover .card-bottle-img {
            transform: scale(1.08) translateY(-4px);
            filter: drop-shadow(0 14px 22px rgba(26, 24, 20, 0.22));
        }

        .card-badge-col {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            z-index: 3;
        }

        .badge-volume {
            background: linear-gradient(135deg, #c9a86a 0%, #b08d4b 100%);
            color: #1a1814;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.75rem 0.45rem;
            border-radius: 8px;
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            letter-spacing: 0.08em;
            box-shadow: 0 4px 12px rgba(201, 168, 106, 0.35);
        }

        .badge-pack {
            background: linear-gradient(135deg, #c9a86a 0%, #b08d4b 100%);
            color: #1a1814;
            font-size: 0.68rem;
            font-weight: 700;
            padding: 0.35rem 0.55rem;
            border-radius: 6px;
            display: flex;
            flex-direction: column;
            line-height: 1.1;
            box-shadow: 0 4px 10px rgba(201, 168, 106, 0.3);
        }

        .badge-pack span {
            font-size: 0.52rem;
            font-weight: 600;
            color: #1a1814;
            opacity: 0.9;
        }

        /* CARD DETAILS WRAPPER */
        .card-content-wrap {
            padding: 1.4rem 1.4rem 1.75rem 1.4rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .card-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #1a1814;
            margin-bottom: 0.35rem;
            line-height: 1.35;
        }

        .card-subtitle {
            font-size: 0.78rem;
            color: #6a645d;
            margin-bottom: 0.75rem;
        }

        .card-price-row {
            font-size: 1.35rem;
            font-weight: 800;
            color: #1a1814;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 0;
        }

        .card-price-row span {
            font-size: 0.75rem;
            font-weight: 500;
            color: #6a645d;
        }

        /* SLIDER NAV ARROWS */
        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #f2eee9;
            border: 1px solid rgba(26, 24, 20, 0.15);
            box-shadow: 0 4px 14px rgba(26, 24, 20, 0.08);
            color: #1a1814;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.25s ease;
        }

        .slider-nav-btn:hover {
            background: #ffffff;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 20px rgba(26, 24, 20, 0.15);
        }

        .slider-nav-btn--prev { left: -22px; }
        .slider-nav-btn--next { right: -22px; }

        /* ============================================================
           1. FULL-WIDTH MOUNTAIN NATURE BANNER SECTION
        ============================================================ */
        .nature-banner-showcase {
            width: 100%;
            min-height: 480px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.40) 50%, rgba(0, 0, 0, 0.72) 100%), url('assets/nature_bg.jpg') no-repeat center center / cover;
            position: relative;
            z-index: 15;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5rem clamp(1rem, 4vw, 3rem);
            box-shadow: inset 0 25px 40px rgba(0, 0, 0, 0.4), inset 0 -25px 40px rgba(0, 0, 0, 0.4);
        }

        .nature-banner__container {
            max-width: 960px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .nature-banner__badge {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #e5d5c5;
            background: rgba(229, 213, 197, 0.15);
            border: 1px solid rgba(229, 213, 197, 0.35);
            padding: 6px 18px;
            border-radius: 20px;
            margin-bottom: 1.25rem;
            backdrop-filter: blur(8px);
        }

        .nature-banner__title {
            font-family: var(--font-heading);
            font-size: clamp(2.1rem, 4vw, 3.2rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
            letter-spacing: -0.01em;
        }

        .nature-banner__subtitle {
            font-size: clamp(1rem, 1.7vw, 1.2rem);
            color: rgba(255, 255, 255, 0.92);
            max-width: 720px;
            line-height: 1.65;
            margin-bottom: 2.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
            font-weight: 400;
        }

        .nature-banner__stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            width: 100%;
            max-width: 820px;
            margin-top: 0.5rem;
        }

        .banner-stat-item {
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 1.25rem 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .banner-stat-item .stat-num {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: #c9a86a;
            line-height: 1.1;
        }

        .banner-stat-item .stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* ============================================================
           2. DEDICATED CONTACT / INQUIRY SECTION (BELOW MOUNTAIN IMAGE)
        ============================================================ */
        .dedicated-contact-section {
            width: 100%;
            background: #eee8df;
            position: relative;
            z-index: 15;
            padding: 5.5rem clamp(1rem, 4vw, 3rem);
            border-top: 1px solid rgba(26, 24, 20, 0.08);
        }

        .contact-section__container {
            max-width: 980px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-section__header {
            text-align: center;
            margin-bottom: 2.75rem;
            max-width: 740px;
        }

        .contact-badge {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #6a645d;
            background: rgba(26, 24, 20, 0.05);
            border: 1px solid rgba(26, 24, 20, 0.12);
            padding: 6px 18px;
            border-radius: 20px;
            margin-bottom: 1rem;
        }

        .contact-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 3.8vw, 2.75rem);
            font-weight: 700;
            color: #1a1814;
            line-height: 1.22;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }

        .contact-subtitle {
            font-size: clamp(0.95rem, 1.6vw, 1.1rem);
            color: #5a554e;
            line-height: 1.6;
            font-weight: 400;
        }

        /* CLEAN WHITE INQUIRY FORM CARD */
        .cta-inquiry-card {
            width: 100%;
            background: #ffffff;
            border: 1px solid rgba(26, 24, 20, 0.08);
            border-radius: 28px;
            padding: clamp(24px, 4vw, 44px);
            box-shadow: 0 16px 40px rgba(26, 24, 20, 0.05);
            color: #1a1814;
            text-align: left;
        }

        .form-section-block {
            margin-bottom: 2rem;
            padding-bottom: 1.75rem;
            border-bottom: 1px solid rgba(26, 24, 20, 0.08);
        }

        .form-section-block:last-of-type {
            margin-bottom: 2rem;
            padding-bottom: 0;
            border-bottom: none;
        }

        .form-section-title {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            color: #1a1814;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-section-title span.title-icon {
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }

        .form-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .form-grid-3 {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1fr;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .form-field-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 1.1rem;
        }

        .form-field-group:last-child {
            margin-bottom: 0;
        }

        .form-field-label {
            font-size: 0.86rem;
            font-weight: 600;
            color: #2c2520;
            letter-spacing: 0.2px;
        }

        .form-field-label span.req {
            color: #c94a4a;
            margin-left: 2px;
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 12px 16px;
            background: #f6f3ee;
            border: 1.5px solid rgba(26, 24, 20, 0.12);
            border-radius: 12px;
            font-family: var(--font-body);
            font-size: 0.94rem;
            color: #1a1814;
            outline: none;
            transition: all 0.25s ease;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            background: #ffffff;
            border-color: #c9a86a;
            box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.2);
        }

        .form-input::placeholder, .form-textarea::placeholder {
            color: #938a80;
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238C6827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

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

        .form-submit-row {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin-top: 1.5rem;
        }

        .btn-form-submit {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #1a1814;
            color: #ffffff;
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 600;
            padding: 14px 38px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(26, 24, 20, 0.25);
            transition: all 0.3s ease;
        }

        .btn-form-submit:hover {
            background: linear-gradient(135deg, #c9a86a 0%, #b08d4b 100%);
            color: #1a1814;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(201, 168, 106, 0.35);
        }

        /* FORM VALIDATION STYLES */
        .form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid {
            border-color: #dc3545 !important;
            background-color: #fff8f8 !important;
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
        }

        .form-input.is-valid, .form-select.is-valid {
            border-color: #8c6827 !important;
        }

        .field-error-msg {
            display: none;
            color: #dc3545;
            font-size: 0.78rem;
            font-weight: 600;
            margin-top: 4px;
            letter-spacing: 0.1px;
            animation: fadeInError 0.2s ease-in-out;
        }

        .field-error-msg.visible {
            display: block;
        }

        @keyframes fadeInError {
            from { opacity: 0; transform: translateY(-3px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* FORM SUCCESS BANNER */
        .form-success-banner {
            display: none;
            background: #fdfaf4;
            border: 1.5px solid #c9a86a;
            color: #1a1814;
            padding: 20px 24px;
            border-radius: 16px;
            margin-bottom: 24px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(201, 168, 106, 0.15);
            animation: fadeInError 0.3s ease;
        }

        .form-success-banner.visible {
            display: block;
        }

        .form-success-title {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #8c6827;
        }

        .form-success-desc {
            font-size: 0.92rem;
            color: #3d3730;
            line-height: 1.5;
        }

        .btn-form-submit svg {
            transition: transform 0.25s ease;
        }

        .btn-form-submit:hover svg {
            transform: translateX(4px);
        }

        /* ============================================================
           PREMIUM LUXURY FOOTER (3-COLUMN MINIMALIST LAYOUT)
        ============================================================ */
        .site-footer {
            position: relative;
            background: #b2a69a;
            color: #2c2520;
            padding: 60px clamp(1.5rem, 5vw, 60px) 35px;
            z-index: 50;
            border-top: 1px solid rgba(26, 24, 20, 0.12);
            font-family: var(--font-body);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: clamp(30px, 5vw, 60px);
            max-width: 1240px;
            margin: 0 auto 40px;
        }

        .brand-column {
            padding-right: 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            color: #1a1814;
        }

        .footer-logo-img {
            height: clamp(68px, 5vw, 88px);
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 3px 8px rgba(26,24,20,0.12));
        }

        .footer-logo-text {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #000000;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.75);
            border: 1px solid rgba(26, 24, 20, 0.18);
            color: #000000;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #1a1814;
            color: #ffffff;
            border-color: #1a1814;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(26, 24, 20, 0.25);
        }

        .footer-heading {
            font-family: var(--font-heading);
            font-size: 16.5px;
            font-weight: 800;
            color: #000000;
            letter-spacing: 0.3px;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 26px;
            height: 2.5px;
            background: #c9a86a;
            border-radius: 2px;
        }

        .footer-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-nav li a {
            color: #1a1814;
            text-decoration: none;
            font-size: 14.5px;
            font-weight: 600;
            transition: all 0.25s ease;
            display: inline-block;
        }

        .footer-nav li a:hover {
            color: #8c6827;
            transform: translateX(4px);
        }

        .footer-email-block {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-email-desc {
            font-size: 14px;
            line-height: 1.5;
            color: #3d3730;
            margin-bottom: 2px;
        }

        .footer-subscribe-form {
            width: 100%;
            margin-top: 6px;
            margin-bottom: 14px;
        }

        .footer-input-group {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(26, 24, 20, 0.22);
            border-radius: 30px;
            padding: 4px 5px 4px 16px;
            transition: all 0.3s ease;
        }

        .footer-input-group:focus-within {
            background: #ffffff;
            border-color: #c9a86a;
            box-shadow: 0 0 14px rgba(201, 168, 106, 0.3);
        }

        .footer-sub-input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: #1a1814;
            font-size: 13.5px;
            font-family: var(--font-body);
            min-width: 0;
        }

        .footer-sub-input::placeholder {
            color: #6b645b;
        }

        .footer-sub-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #1a1814;
            color: #ffffff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
            flex-shrink: 0;
        }

        .footer-sub-btn:hover {
            background: #c9a86a;
            color: #1a1814;
            transform: scale(1.06);
        }

        .footer-sub-msg {
            display: none;
            font-size: 12px;
            font-weight: 600;
            margin-top: 6px;
            padding-left: 8px;
        }

        .footer-sub-msg.success {
            display: block;
            color: #8c6827;
        }

        .footer-sub-msg.error {
            display: block;
            color: #b32d2e;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1240px;
            margin: 0 auto;
            padding-top: 22px;
            border-top: 1px solid rgba(26, 24, 20, 0.15);
            font-size: 13.5px;
            color: #1a1814;
            font-weight: 600;
        }

        .legal-links {
            display: flex;
            gap: 24px;
        }

        .legal-links a {
            color: #1a1814;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.25s ease;
        }

        .legal-links a:hover {
            color: #8c6827;
        }

        .visually-hidden {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        /* ============================================================
           COMPREHENSIVE RESPONSIVE BREAKPOINTS (AT END OF CSS)
        ============================================================ */
        
        /* 1. TABLET & SMALL LAPTOP (<= 1024px) */
        @media (max-width: 1024px) {
            .showcase__container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .showcase__visual-card {
                min-height: 440px;
                border-radius: 0 0 32px 32px;
            }
            .showcase__features-top {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.25rem;
            }
            .specs-card__grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.25rem;
            }
            .nature-product-card {
                flex: 0 0 calc((100% - 1.5rem) / 2);
            }
            .nature-banner__stats {
                max-width: 720px;
                gap: 1.25rem;
            }
            .banner-stat-item .stat-num {
                font-size: clamp(1.4rem, 2.4vw, 1.8rem);
            }
            .cta-inquiry-card {
                padding: 36px 30px;
            }
        }

        /* 2. TABLET PORTRAIT & MEDIUM TABLETS (<= 991px) */
        @media (max-width: 991px) {
            .mobile-menu-toggle {
                display: flex;
            }
            .header-logo-img {
                height: 80px;
            }
            .header-right-group {
                gap: 16px;
            }
            nav.header-nav {
                display: none;
            }
            .site-footer {
                padding: 50px 24px 30px;
            }
            .footer-main {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .brand-column {
                grid-column: span 1;
                padding-right: 0;
            }
            .form-grid-3 {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .form-grid-2 {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* 3. PHONES & SMALL TABLETS (<= 768px) */
        @media (max-width: 768px) {
            .scroll-container {
                height: 2400px;
            }
            .sticky-wrapper {
                height: 100vh;
                height: 100dvh;
                position: -webkit-sticky;
                position: sticky;
                top: 0;
            }
            .header-logo-img {
                height: 72px;
            }
            .showcase__features-top {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .feature-col {
                padding: 0;
                border-right: none;
                border-bottom: 1px solid rgba(26,24,20,0.1);
                padding-bottom: 1.25rem;
            }
            .feature-col:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
            .specs-card__grid {
                grid-template-columns: 1fr;
            }
            .nature-banner-showcase {
                padding: 4rem 1.25rem;
            }
            .nature-banner__stats {
                grid-template-columns: 1fr;
                gap: 0.85rem;
                max-width: 360px;
                width: 100%;
            }
            .banner-stat-item {
                padding: 1.1rem 1.25rem;
            }
            .slider-viewport-wrapper {
                position: relative;
                padding: 0;
            }
            .slider-cards-track {
                gap: 0;
                padding: 1rem 0;
                scroll-snap-type: x mandatory;
            }
            .nature-product-card {
                flex: 0 0 100%;
                width: 100%;
                scroll-snap-align: center;
                scroll-snap-stop: always;
            }
            .slider-nav-btn--prev { left: 8px; }
            .slider-nav-btn--next { right: 8px; }
            .form-grid-2, .form-grid-3 {
                grid-template-columns: 1fr;
                gap: 1.1rem;
            }
            .cta-inquiry-card {
                padding: 24px 18px;
            }
            .btn-form-submit {
                width: 100%;
                justify-content: center;
            }
            .modal-card { width: 90%; padding: 24px; }
            
            /* Responsive Footer on Mobile */
            .site-footer {
                padding: 45px 20px 25px;
            }
            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .brand-column {
                grid-column: span 1;
                padding-right: 0;
            }
            .footer-logo {
                margin-bottom: 14px;
            }
            .footer-logo-text {
                font-size: 24px;
            }
            .social-links {
                margin-top: 12px;
            }
            .footer-heading {
                margin-bottom: 16px;
            }
            .footer-email-block {
                width: 100%;
            }
            .footer-subscribe-form {
                width: 100%;
                max-width: 100%;
            }
            .footer-input-group {
                width: 100%;
                box-sizing: border-box;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 14px;
                text-align: center;
                padding-top: 20px;
            }
            .legal-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 18px;
            }
        }

        /* 4. COMPACT MOBILE (<= 480px) */
        @media (max-width: 480px) {
            .site-footer {
                padding: 40px 16px 20px;
            }
            .footer-main {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .brand-column {
                grid-column: span 1;
            }
            .footer-logo-img {
                height: 60px;
            }
            .footer-logo-text {
                font-size: 22px;
            }
            .footer-input-group {
                padding: 3px 4px 3px 14px;
            }
            .footer-sub-input {
                font-size: 13px;
            }
        }