        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@300;400;500&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #3a3a3a;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .hero {
            background:linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),  url('https://img.freepik.com/free-photo/close-up-cleaning-sex-toys_23-2149151826.jpg?t=st=1757134245~exp=1757137845~hmac=92a7f83e3e5cec688527cd4b9ff9ff509db901cd9d4d7dd742f00fce349c21f6&w=1060');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-100px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(100px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .slide-in-bottom {
            opacity: 0;
            transform: translateY(100px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .visible {
            opacity: 1;
            transform: translate(0);
        }

        .product-card {
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .room-section {
            height: 100vh;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .room-content {
            background: rgba(255, 255, 255, 0.85);
            padding: 2.5rem;
            border-radius: 12px;
            max-width: 500px;
            margin-left: 10%;
        }

        .testimonial-card {
            /* opacity: 0; */
            transition: opacity 1s ease, transform 1s ease;
        }

        .color-swatch {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 10px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: transform 0.2s ease;
        }

        .color-swatch:hover {
            transform: scale(1.2);
        }

        .color-swatch.active {
            border-color: #3a3a3a;
        }

        .hotspot {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hotspot:hover {
            transform: scale(1.2);
            background: rgba(255, 255, 255, 0.9);
        }

        .hotspot::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.7);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 100;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            max-width: 500px;
            width: 90%;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .quiz-container {
            background: rgba(249, 247, 240, 0.95);
            padding: 2.5rem;
            border-radius: 12px;
            max-width: 600px;
            margin: 0 auto;
        }

        .quiz-option {
            padding: 1rem;
            border: 1px solid #d1c7b7;
            border-radius: 8px;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quiz-option:hover {
            background: #e8e2d6;
        }

        .nav-transparent {
            background: transparent;
        }

        .nav-solid {
            background: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }