        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

        :root {
            --sage: #4B8367;
            --sage-dark: #3a6650;
            --black: #111111;
            --white: #ffffff;
            --gray: #f4f4f4;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
        }

        /* ===================== NAVBAR ===================== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 16px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: rgba(17, 17, 17, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .nav-links {
            display: flex;
            align-items: center;
        }

        .nav-links a {
            margin-left: 36px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 600;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--sage);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: rgba(255,255,255,0.85);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(17,17,17,0.98);
            z-index: 99;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }

        .mobile-menu.open { display: flex; }

        .mobile-menu a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s;
        }

        .mobile-menu a:hover { color: var(--sage); }

        /* ===================== HERO ===================== */
        .hero {
            height: 82vh;
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--black);
            overflow: hidden;
            margin-top: 73px;
        }

        .hero video, .hero img {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            object-fit: cover;
            opacity: 0.6;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -2px;
            margin-bottom: 20px;
            line-height: 1;
        }

        .hero-content p {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 40px;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.8);
        }

        .btn {
            display: inline-block;
            padding: 18px 45px;
            background-color: var(--sage);
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid var(--sage);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--white);
            border-color: var(--white);
        }

        /* ===================== DIVIDER ===================== */
        .section-divider {
            width: 100%;
            height: 80px;
            background: var(--black);
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            overflow: hidden;
        }

        .section-divider-text {
            color: var(--sage);
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 6px;
            white-space: nowrap;
            animation: marquee 20s linear infinite;
        }

        .section-divider-text span {
            color: rgba(255,255,255,0.3);
            margin: 0 15px;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ===================== COLLECTIONS ===================== */
        .collections {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            width: 100%;
            background: var(--black);
        }

        .col {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            background-size: cover;
            background-position: center;
            aspect-ratio: 1 / 1;
        }

        .col:last-child { border-right: none; }
        .col::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.52); transition: background 0.6s ease; }
        .col:hover::before { background: rgba(0, 0, 0, 0.15); }

        .col-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            height: 100%;
            width: 100%;
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .col-title {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            transform: rotate(-90deg);
            white-space: nowrap;
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            text-shadow: 0 4px 12px rgba(0,0,0,0.6);
            margin: 0;
        }

        .col:hover .col-title { transform: rotate(0); font-size: 3rem; letter-spacing: 4px; }

        .col-hidden-info {
            position: absolute;
            bottom: 40px;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            display: flex;
            justify-content: center;
            pointer-events: none;
        }

        .col:hover .col-hidden-info { 
            opacity: 1; 
            transform: translateY(0); 
            pointer-events: auto;
        }

        .col-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--sage);
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            border: 2px solid var(--sage);
        }

        .col-btn:hover { background-color: transparent; color: var(--white); border-color: var(--white); }

        .col-1 { background-image: url('Motivy/media__1782307647215.jpg'); }
        .col-2 { background-image: url('Motivy/media__1782307646977.png'); }
        .col-3 { background-image: url('Motivy/media__1782307647027.png'); }
        .col-4 { background-image: url('Motivy/media__1782307647078.png'); }
        .col-5 { background-image: url('Motivy/media__1782307647187.jpg'); }
        .col-6 { background-image: url('Motivy/piggee_37406_Vector_graphic_capybara_on_a_mountain_bike_minimal_88a2067b-a251-4889-9b39-65d1677fc154.png'); }
        .col-7 { background-image: url('Motivy/piggee_37406_Vector_illustration_cute_hamster_riding_a_mountain_ee51b76d-83f4-4067-8e61-c0cb3828d8d0.png'); }
        .col-8 { background-image: url('Motivy/piggee_37406_Vector_illustration_a_young_boy_confidently_riding_34efc561-519a-4669-b331-9e75079da4aa.png'); }
        .col-9 { background-image: url('Motivy/piggee_37406_Vector_illustration_of_a_young_boy_on_a_challengin_dfefbda7-0928-47d6-b6a9-a61642b99625.png'); }
        .col-10 { background-image: url('Motivy/piggee_37406_Vector_illustration_of_a_dramatic_stylized_mountai_53713564-6d9d-4245-90e0-470581392cd6.png'); }

        /* ===================== MEHR MOTIVE BAR ===================== */
        .mehr-motive-bar {
            display: block; 
            background: var(--sage); 
            color: var(--white); 
            text-align: center; 
            padding: 25px 40px; 
            text-decoration: none; 
            font-weight: 800; 
            text-transform: uppercase; 
            letter-spacing: 3px; 
            font-size: 0.9rem; 
            transition: all 0.3s ease; 
            border: none;
        }

        .mehr-motive-bar:hover {
            background-color: var(--sage-dark);
            letter-spacing: 4px;
        }

        /* ===================== PRODUCTS ===================== */
        .products {
            padding: 100px 0px; /* Reduced side padding to 0 for full-width support */
            background-color: transparent; /* Parent should not force a color */
            text-align: center;
        }

        .products h2 { font-size: 3rem; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 12px; }
        .products .subtitle { color: #666; font-size: 1.05rem; margin-bottom: 60px; line-height: 1.7; }
        .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1280px; margin: 0 auto; }

        .product-card {
            background: var(--white);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

        .product-img {
            width: 100%;
            aspect-ratio: 1 / 1;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            background-color: #ffffff;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img { transform: scale(1.04); }
        .product-info { padding: 20px; text-align: left; }
        .product-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--sage); margin-bottom: 6px; }
        .product-name { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; margin-bottom: 4px; }
        .product-price { font-size: 1rem; font-weight: 600; color: #444; }

        .product-card .btn-card {
            display: block;
            margin: auto 20px 20px;
            padding: 11px 20px;
            background: var(--black);
            color: var(--white);
            text-align: center;
            text-decoration: none;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: background 0.3s;
        }

        .product-card .btn-card:hover { background: var(--sage); }

        /* Scoped styles for categorization with full-width backgrounds */
        #products-page {
            width: 100%;
            padding: 0;
            overflow-x: hidden;
        }

        /* Category Sub-navigation (Sticky Glassmorphism) */
        .category-nav-bar {
            position: sticky;
            top: 85px; /* Fits exactly under the main menu */
            z-index: 90;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            padding: 18px 0;
            width: 100%;
        }

        .category-nav-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 36px;
            flex-wrap: wrap;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .cat-nav-link {
            text-decoration: none;
            color: var(--black);
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            padding: 4px 0;
            transition: color 0.3s ease;
        }

        .cat-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--sage);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .cat-nav-link:hover {
            color: var(--sage);
        }

        .cat-nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        @media (max-width: 600px) {
            .category-nav-bar {
                padding: 12px 0;
                top: 80px; /* main mobile navbar is slightly smaller */
            }
            .category-nav-links {
                gap: 12px 20px;
                padding: 0 20px;
            }
            .cat-nav-link {
                font-size: 0.72rem;
                letter-spacing: 1px;
            }
        }

        #products-page .category-section {
            padding: 100px 0;
            width: 100%;
            margin-bottom: 0px;
            text-align: left;
            transition: background 0.3s ease;
            scroll-margin-top: 145px; /* Offset so header doesn't cover top of categories when jumping */
        }

        #products-page .category-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        #products-page .category-title {
            font-size: 2.22rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 40px;
            padding-bottom: 12px;
            display: inline-block;
            border-bottom: 3px solid var(--sage);
        }

        /* Color variations for category sections */
        #products-page .category-section.bg-white { background-color: var(--white); color: var(--black); }
        #products-page .category-section.bg-white .category-title { color: var(--black); border-bottom-color: var(--sage); }

        #products-page .category-section.bg-black { background-color: var(--black); color: var(--white); }
        #products-page .category-section.bg-black .category-title { color: var(--white); border-bottom-color: var(--sage); }
        #products-page .category-section.bg-black .product-name { color: var(--white); }
        #products-page .category-section.bg-black .product-tag { color: rgba(255,255,255,0.6); }

        #products-page .category-section.bg-sage { background-color: var(--sage); color: var(--white); }
        #products-page .category-section.bg-sage .category-title { color: var(--white); border-bottom-color: var(--white); }
        #products-page .category-section.bg-sage .product-name { color: var(--white); }
        #products-page .category-section.bg-sage .product-tag { color: rgba(255,255,255,0.8); }

        #products-page .category-section.bg-gray { background-color: var(--gray); color: var(--black); }
        #products-page .category-section.bg-gray .category-title { color: var(--black); border-bottom-color: var(--sage); }

        #products-page .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 3;
            color: var(--white);
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 10px;
        }

        .product-badge.ausverkauft { background: #e30613 !important; }
        .product-badge.black { background: var(--black) !important; }
        .product-badge.sage { background: var(--sage) !important; }
        .product-card.sold-out .product-img { filter: grayscale(0.6); opacity: 0.7; }
        .restock-notice { 
            display: block; 
            padding: 11px 20px; 
            margin: auto 20px 20px; 
            background: #eee; 
            color: #888; 
            text-align: center; 
            font-size: 0.75rem; 
            font-weight: 700; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
        }

        /* ===================== SOCIAL PROOF ===================== */
        .social-proof { padding: 100px 40px; background-color: var(--white); }
        .social-proof-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px; margin: 0 auto; align-items: center; }
        .social-proof-text { text-align: left; }
        .social-proof-text h2 { font-size: 2.8rem; margin-bottom: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; }
        .social-proof-text p { color: #555; line-height: 1.8; font-size: 1.05rem; margin-bottom: 30px; }
        .eco-cert-section h3 { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--sage); margin-bottom: 16px; }
        .how-it-works { display: flex; gap: 20px; }
        .step-box { flex: 1; text-align: center; padding: 24px 16px; background: var(--gray); transition: transform 0.3s; }
        .step-box:hover { transform: translateY(-4px); }
        .step-number { font-size: 2rem; font-weight: 800; color: var(--sage); margin-bottom: 8px; }
        .step-box h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
        .step-box p { font-size: 0.78rem; color: #888; }

        /* ===================== TESTIMONIALS ===================== */
        .testimonials { padding: 100px 40px; background-color: var(--black); text-align: center; }
        .testimonials h2 { font-size: 2.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; color: var(--white); margin-bottom: 60px; }
        .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
        .review-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 32px; text-align: left; transition: border-color 0.3s; }
        .review-card:hover { border-color: var(--sage); }
        .review-stars { color: var(--sage); font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
        .review-text { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
        .review-author { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--sage); }
        .review-location { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

        /* ===================== INSTAGRAM ===================== */
        .instagram-section { padding: 100px 40px; background-color: var(--white); text-align: center; }
        .instagram-section h2 { font-size: 2.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 12px; }
        .instagram-handle { display: inline-block; color: var(--sage); font-weight: 700; font-size: 1.2rem; text-decoration: none; margin-bottom: 40px; transition: opacity 0.3s; }
        .instagram-handle:hover { opacity: 0.7; }
        .instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
        .insta-item { aspect-ratio: 1 / 1; background-color: var(--gray); overflow: hidden; position: relative; }
        .insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .insta-item:hover img { transform: scale(1.05); }

        /* ===================== SIDE CART ===================== */
        .cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(4px);
            z-index: 1000;
            display: none;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .cart-overlay.show { display: block; opacity: 1; }

        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100%;
            background: var(--white);
            z-index: 1001;
            box-shadow: -10px 0 40px rgba(0,0,0,0.1);
            transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            display: flex;
            flex-direction: column;
        }
        .cart-sidebar.open { right: 0; }

        .cart-header { padding: 30px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
        .cart-header h2 { font-size: 1.2rem; text-transform: uppercase; font-weight: 800; letter-spacing: 2px; }
        .cart-close { cursor: pointer; font-size: 1.5rem; color: #888; transition: color 0.3s; }
        .cart-close:hover { color: var(--black); }

        .cart-items { flex: 1; overflow-y: auto; padding: 20px 30px; }
        .cart-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
        .item-img { width: 80px; height: 80px; background: #f4f4f4; background-size: contain; background-repeat: no-repeat; background-position: center; flex-shrink: 0; }
        .item-info { flex: 1; }
        .item-name { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
        .item-variant { font-size: 0.72rem; color: #888; margin-bottom: 8px; }
        .item-price { font-size: 0.85rem; font-weight: 600; }
        .item-remove { font-size: 0.65rem; color: #aaa; text-decoration: underline; cursor: pointer; margin-top: 6px; display: inline-block; }
        .item-remove:hover { color: var(--black); }

        .cart-footer { padding: 30px; border-top: 1px solid #eee; background: #fafafa; }
        .cart-subtotal, .cart-shipping {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #777;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .cart-total { 
            display: flex; 
            justify-content: space-between; 
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
            margin-bottom: 25px; 
            font-weight: 800; 
            text-transform: uppercase; 
            font-size: 1.1rem; 
        }
        .btn-checkout { width: 100%; padding: 18px; background: var(--sage); color: white; border: none; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: background 0.3s; text-align: center; border-radius: 4px; }
        .btn-checkout:hover { background: #3d6f54; }
        .btn-paypal { width: 100%; padding: 16px; background: #FFC439; color: #003087; border: none; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; text-align: center; border-radius: 4px; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Inter', sans-serif; }
        .btn-paypal:hover { background: #f2ba36; }


        @media (max-width: 450px) {
            .cart-sidebar { width: 100%; right: -100%; }
        }

        /* ===================== COOKIE BANNER (DSGVO / TKG 2021 AUSTRIA) ===================== */
        .cookie-banner {
            position: fixed;
            bottom: -800px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 32px);
            max-width: 540px;
            max-height: calc(90vh - 30px);
            box-sizing: border-box;
            background: #141414;
            color: var(--white);
            padding: 22px;
            z-index: 999999;
            transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            gap: 12px;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 20px 60px rgba(0,0,0,0.85);
            border-radius: 8px;
            overflow-y: auto;
        }
        .cookie-banner.show { bottom: 20px; }
        .cookie-banner-header { display: flex; align-items: center; justify-content: space-between; }
        .cookie-banner h3 { font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin: 0; }
        .cookie-banner p { font-size: 0.78rem; line-height: 1.5; color: rgba(255,255,255,0.8); margin: 0; }
        .cookie-banner p a { color: var(--sage); text-decoration: underline; font-weight: 600; }
        .cookie-options { display: flex; flex-direction: column; gap: 8px; margin: 2px 0; background: rgba(255,255,255,0.04); padding: 10px 12px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.08); }
        .cookie-option-item { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.9); gap: 12px; }
        .cookie-option-desc { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 1px; line-height: 1.3; }
        .cookie-option-item input[type="checkbox"] { accent-color: var(--sage); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
        .cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; position: sticky; bottom: 0; background: #141414; padding-top: 6px; }
        .btn-cookie { flex: 1 1 120px; padding: 10px 14px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; border: none; transition: all 0.2s ease; text-align: center; border-radius: 4px; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; }
        .btn-accept { background: var(--sage); color: var(--white); border: 1px solid var(--sage); }
        .btn-accept:hover { background: #3d6f54; border-color: #3d6f54; }
        .btn-reject { background: rgba(255,255,255,0.14); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
        .btn-reject:hover { background: rgba(255,255,255,0.25); }
        .btn-settings { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); }
        .btn-settings:hover { background: rgba(255,255,255,0.08); color: var(--white); }

        /* Floating Cookie Settings Trigger Button (Re-opening / Revocation) */
        .cookie-badge {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 9998;
            background: #121212;
            color: rgba(255,255,255,0.8);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 30px;
            padding: 8px 14px;
            font-size: 0.72rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        .cookie-badge:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }

        /* ===================== CTA ===================== */
        .cta-section { padding: 120px 40px; background: var(--sage); text-align: center; }
        .cta-section h2 { font-size: 3.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: -2px; color: var(--white); margin-bottom: 16px; line-height: 1; }
        .cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
        .btn-cta { display: inline-block; padding: 18px 50px; background: var(--white); color: var(--black); text-decoration: none; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; transition: all 0.3s ease; border: 2px solid var(--white); }
        .btn-cta:hover { background: transparent; color: var(--white); }

        /* ===================== FOOTER ===================== */
        footer { background-color: var(--black); color: var(--white); padding: 60px 40px 30px; border-top: 1px solid rgba(255,255,255,0.1); }
        .footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .footer-col { display: flex; flex-direction: column; gap: 12px; min-width: 140px; }
        .footer-col-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
        .footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
        .footer-col a:hover { color: var(--sage); }
        .footer-newsletter { display: flex; flex-direction: column; gap: 12px; max-width: 280px; }
        .footer-newsletter p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
        .newsletter-form { display: flex; gap: 8px; }
        .newsletter-form input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: var(--white); outline: none; }
        .newsletter-form button { padding: 10px 18px; background: var(--sage); color: var(--white); border: none; font-weight: 700; cursor: pointer; }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; padding-top: 24px; }
        .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

        /* ===================== STORY LAYOUT ===================== */
        .story-section { padding: 100px 40px; position: relative; background: var(--white); }
        .story-section.bg-black { background-color: var(--black); color: var(--white); }
        .story-section.bg-black p { color: rgba(255,255,255,0.7); }
        .story-section.bg-black h2 { color: var(--white); }
        
        .story-section.bg-sage { background-color: var(--sage); color: var(--white); }
        .story-section.bg-sage p { color: rgba(255,255,255,0.9); }
        .story-section.bg-sage h2 { color: var(--white); }
        .story-section.bg-sage .signature { color: var(--white); }

        .story-container { max-width: 1100px; margin: 0 auto; }
        .story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; margin-bottom: 0px; }
        .story-grid.reverse { grid-template-columns: 1.2fr 1fr; }
        .story-grid .story-text { order: 1; }
        .story-grid .story-image { order: 2; }
        .story-grid.reverse .story-text { order: 2; }
        .story-grid.reverse .story-image { order: 1; }
        
        .story-text h2 { font-size: 2.8rem; font-weight: 800; text-transform: uppercase; margin-bottom: 24px; letter-spacing: -1px; line-height: 1.1; }
        .story-text p { font-size: 1.05rem; line-height: 1.8; color: #555; margin-bottom: 24px; }
        
        .story-image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--gray); display: flex; align-items: center; justify-content: center; }
        .story-image.img-full-height { aspect-ratio: auto !important; height: auto !important; min-height: 500px; }
        .story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
        .story-image.img-full-height img { height: auto !important; }
        .story-image:hover img { transform: scale(1.05); }

        /* CUSTOM POSITIONS */
        .img-top-focus { object-position: center 10% !important; }
        .img-center-focus { object-position: center center !important; }
        .img-full-height { aspect-ratio: auto !important; }
        .story-image.contain-photo { aspect-ratio: auto !important; height: auto !important; min-height: unset !important; background: transparent !important; }
        .story-image.contain-photo img { width: 100% !important; height: auto !important; max-height: 580px !important; object-fit: contain !important; }
        
        .story-full-width { width: 100%; height: 60vh; overflow: hidden; margin: 80px 0; background: var(--black); }
        .story-full-width img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }
        
        .signature { margin-top: 40px; font-family: inherit; font-weight: 800; font-size: 1.2rem; color: var(--sage); text-transform: uppercase; letter-spacing: 2px; }


        /* ===================== RESPONSIVE / MOBILE STYLES ===================== */
        @media (max-width: 1024px) {
            nav { padding: 14px 20px; }
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .hero { height: 70vh; margin-top: 60px; }
            .collections { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .social-proof-inner { grid-template-columns: 1fr; }
            .how-it-works { flex-direction: column; }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            /* STORY / UBER UNS SECTION MOBILE RESPONSIVE */
            .story-section { padding: 50px 20px; }
            .story-container { width: 100%; max-width: 100%; }
            .story-grid, 
            .story-grid.reverse { 
                display: flex !important; 
                flex-direction: column !important; 
                gap: 28px !important; 
                margin-bottom: 0 !important;
            }
            .story-grid .story-text, 
            .story-grid.reverse .story-text { 
                order: 1 !important; 
                width: 100% !important; 
            }
            .story-grid .story-image, 
            .story-grid.reverse .story-image { 
                order: 2 !important; 
                width: 100% !important; 
                aspect-ratio: 4 / 3 !important;
                height: auto !important;
                min-height: 260px !important;
                max-height: 420px !important;
                border-radius: 4px;
            }
            .story-image.img-full-height {
                aspect-ratio: 4 / 3 !important;
                height: auto !important;
                min-height: 260px !important;
            }
            .story-image.contain-photo,
            .story-image.contain-photo img {
                width: 100% !important;
                height: auto !important;
                max-height: 480px !important;
                object-fit: contain !important;
                aspect-ratio: auto !important;
                min-height: unset !important;
            }
            .story-image img, 
            .story-image.img-full-height img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
            }
            .story-text h2 { font-size: 1.8rem !important; margin-bottom: 16px !important; line-height: 1.2 !important; }
            .story-text p { font-size: 0.98rem !important; line-height: 1.65 !important; margin-bottom: 16px !important; }
            .story-full-width { height: 35vh; margin: 30px 0; }
            .signature { margin-top: 24px; font-size: 1.1rem; }
            
            /* INSTAGRAM & REVIEWS MOBILE */
            .instagram-section { padding: 60px 20px; }
            .instagram-section h2 { font-size: 2rem; }
            .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
            .review-card { padding: 24px; }
            .cta-section { padding: 80px 20px; }
            .cta-section h2 { font-size: 2.2rem; }
        }

        @media (max-width: 600px) {
            .collections { grid-template-columns: 1fr; }
            .products-grid { grid-template-columns: 1fr; }
            .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .cookie-banner { width: calc(100% - 20px); padding: 20px; }
            .cookie-banner.show { bottom: 12px; }
            .btn-cookie { flex: 1 1 100%; }
        }

