        :root {
            --primary: #E36A6A;
            --primary-hover: #9E3B3B;
            --text-dark: #111111;
            --text-gray: #4A4A4A;
            --card-bg: #FFFFFF;
        }

        body {
            font-family: 'Quicksand', sans-serif;
            margin: 0;
            padding: 0;
            overflow: hidden; /* Prevent body scroll, only card scrolls */
            background-color: #000;
        }

        /* Fixed Background Section */
        .fixed-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: url('https://i.pinimg.com/736x/d5/ce/a2/d5cea2c3333f1069e79d1cf2a3aa8651.jpg');
            background-size: cover;
            background-position: center;
            animation: slowZoom 40s infinite alternate;
        }

        .fixed-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.3);
        }

        @keyframes slowZoom {
            from { transform: scale(1); }
            to { transform: scale(1.2); }
        }

        /* Floating Card Architecture */
        .floating-card {
            position: absolute;
            top: 25rem;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 42%;
            max-width: 1000px;
            height: 85vh; /* Card takes most of height */
            background: var(--card-bg);
            display: flex;
            height: 80vh;
            flex-direction: column;
            overflow: hidden;
            z-index: 10;
        }

        /* Internal Scrollable Content */
        .card-content-area {
            flex: 1;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) transparent;
            scroll-behavior: smooth;
        }

        .card-content-area::-webkit-scrollbar { width: 4px; }
        .card-content-area::-webkit-scrollbar-thumb { background-color: var(--primary); border-radius: 10px; }

        /* Animation reveals */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .nav-link {
            position: relative;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            width: 0;
            height: 1px;
            background-color: var(--primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after, .nav-link.active::after { width: 100%; }
        .nav-link:hover { color: var(--primary-hover); }
        .nav-link.active { color: var(--primary); font-weight: 600; }

        /* Outer elements (Outside the Card) */
        .outer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 20;
            pointer-events: none;
        }

        .outer-overlay * { pointer-events: auto; }

        .product-strip {
            display: flex;
            overflow-x: auto;
            gap: 2rem;
            padding-bottom: 1.5rem;
            scrollbar-width: none;
        }
        .product-strip::-webkit-scrollbar { display: none; }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 99px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -5px rgba(227, 106, 106, 0.4);
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .floating-card { width: 82vh; height: 80vh;  top: 25rem;}
            .outer-overlay { flex-direction: column; gap: 1rem; }
            .outer-nav-mobile { pointer-events: auto; background: white; padding: 10px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        }

        /* Hover image transitions */
        .img-editorial {
            filter: grayscale(100%);
            transition: all 0.7s ease;
        }
        .img-editorial:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }
