        <style>
        :root {
            --accent: #e63946;
            --bg-cream: #F9F7F2;
            --dark: #1a1a1a;
            --glass: rgba(255, 255, 255, 0.9);
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-cream);
            color: var(--dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .navbar-brand { font-family: 'Playfair Display', serif; }

        /* --- Floating Navigation --- */
        .custom-nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1300px;
            background: var(--glass);
            backdrop-filter: blur(15px);
            border-radius: 100px;
            padding: 10px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1050;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            margin: 0 12px;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            transition: color 0.3s;
        }
        .nav-links a:hover { color: var(--accent); }

        /* --- Mobile Toggle --- */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--dark);
            cursor: pointer;
        }

        /* --- Fullscreen Mobile Menu --- */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 2000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }
        .mobile-overlay.active { transform: translateY(0); }
        .mobile-overlay .close-menu { position: absolute; top: 30px; right: 30px; font-size: 2rem; cursor: pointer; }
        .mobile-overlay a { font-size: 1.8rem; font-family: 'Playfair Display', serif; color: var(--dark); text-decoration: none; margin: 12px 0; font-weight: 700; }

        /* --- Hero Slider --- */
        .hero-slider .carousel-item { height: 95vh; background-color: #000; }
        .hero-slider img { height: 100%; object-fit: cover; opacity: 0.6; }
        .carousel-caption { top: 50%; transform: translateY(-50%); bottom: initial; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
        .hero-slider h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; margin-bottom: 15px; }

        /* --- Bento Grid --- */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 360px;
            gap: 25px;
            padding: 40px 0;
        }
        .bento-item {
            background: white; border-radius: 32px; position: relative; text-decoration: none; color: inherit;
            display: flex; flex-direction: column; padding: 24px; border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); overflow: hidden; text-align: center;
        }
        .product-img-wrapper {
            flex-grow: 1; display: flex; align-items: center; justify-content: center;
            background: radial-gradient(circle, #fff 0%, #f3f3f3 100%); border-radius: 20px; margin-bottom: 15px; overflow: hidden;
        }
        .product-img-wrapper img { max-height: 180px; width: auto; max-width: 85%; object-fit: contain; transition: transform 0.6s ease; }
        .bento-item:hover { transform: translateY(-12px); box-shadow: 0 25px 50px -12px rgba(230, 57, 70, 0.15); border-color: var(--accent); }
        .bento-item:hover .product-img-wrapper img { transform: scale(1.1) rotate(3deg); }
        .large { grid-column: span 2; }
        .premium-badge { position: absolute; top: 20px; right: 20px; background: var(--accent); color: white; font-size: 0.65rem; padding: 6px 14px; border-radius: 50px; text-transform: uppercase; font-weight: 800; z-index: 10; }

        /* --- Horizontal Gallery --- */
        .image-gallery { display: flex; gap: 20px; overflow-x: auto; padding: 20px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
        .image-gallery::-webkit-scrollbar { display: none; }
        .image-container img { height: 350px; width: 280px; object-fit: cover; border-radius: 25px; scroll-snap-align: start; transition: 0.4s; }
        .image-container img:hover { filter: brightness(0.7); }

        /* --- Cookie Banner --- */
        .cookie-consent { position: fixed; bottom: 25px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 600px; background: var(--dark); color: white; padding: 15px 25px; border-radius: 100px; z-index: 2000; display: none; justify-content: space-between; align-items: center; }

        @media (max-width: 992px) {
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            .bento-grid { grid-template-columns: repeat(2, 1fr); }
            .custom-nav { width: 92%; border-radius: 50px; }
        }
        @media (max-width: 576px) {
            .bento-grid { grid-template-columns: 1fr; }
            .large { grid-column: span 1; }
        }
        </style>
 