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

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #f8f5f0;
            color: #2c2c2c;
        }

        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #f8f5f0, #e8dfd0, #f0e8d8, #f8f5f0);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(197, 157, 95, 0.3);
            border-radius: 50%;
            animation: float 20s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 30px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(248, 245, 240, 0.9);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: #c59d5f;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        /* Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            padding: 80px 30px 30px;
            overflow-y: auto;
        }

        .sidebar.open {
            right: 0;
        }

        .sidebar .nav-links {
            flex-direction: column;
            gap: 20px;
            padding: 20px 0;
        }

        .sidebar .nav-links a {
            font-size: 18px;
            padding: 10px 15px;
            display: block;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .sidebar .nav-links a:hover {
            background: rgba(197, 157, 95, 0.1);
            padding-left: 20px;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay.active {
            display: block;
            opacity: 1;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c2c2c;
            font-weight: 400;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #c59d5f;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 80px;
            position: relative;
        }

        .hero-content {
            flex: 1;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 72px;
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
            max-width: 500px;
            line-height: 1.8;
        }

        .cta-btn {
            padding: 18px 45px;
            background: transparent;
            border: 2px solid #c59d5f;
            color: #c59d5f;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            letter-spacing: 1px;
        }

        .cta-btn:hover {
            background: #c59d5f;
            color: white;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(197, 157, 95, 0.3);
        }

        .perfume-bottle {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

       .bottle-3d {
            width: 400px;
            height: 400px;
            /* background: linear-gradient(145deg, #f0e8d8, #c59d5f); */
            border-radius: 20px;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.4s ease;
            /* box-shadow: 0 30px 80px rgba(197, 157, 95, 0.4); */
        }

        .bottle-3d::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 100px;
            /* background: linear-gradient(145deg, #c59d5f, #d4af78); */
            border-radius: 10px;
        }
        .bottle-img{
            width: 600px;
            height: 650px;
        }

        .about {
            min-height: 100vh;
            padding: 150px 80px;
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .about-image {
            flex: 1;
            height: 600px;
            background: linear-gradient(135deg, #c59d5f, #d4af78);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            transform: perspective(1000px) rotateY(0deg);
            transition: transform 0.5s ease;
        }

        .about-image:hover {
            transform: perspective(1000px) rotateY(-5deg);
        }

        .about-content {
            flex: 1;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            margin-bottom: 30px;
            color: #2c2c2c;
        }

        .about-content p {
            font-size: 18px;
            line-height: 1.9;
            color: #666;
            margin-bottom: 20px;
        }

        .products {
            padding: 150px 80px;
            background: rgba(232, 223, 208, 0.3);
        }

        .products h2 {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            margin-bottom: 80px;
            color: #2c2c2c;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            cursor: pointer;
            transform-style: preserve-3d;
        }

        .product-card:hover {
            transform: translateY(-15px) rotateX(5deg);
            box-shadow: 0 20px 60px #C79A2A;
        }

        .product-image {
            width: 100%;
            height: 350px;
            background: #f8f5f0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
            padding: 20px;
            box-sizing: border-box;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-card:hover .product-image {
            background: linear-gradient(135deg,#f8f8f8, #C79A2f);
        }

        .product-info {
            padding: 30px;
        }

        .product-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            margin-bottom: 10px;
            color: #2c2c2c;
        }

        .product-info p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .price {
            font-size: 24px;
            color: #c59d5f;
            font-weight: 600;
        }

        .contact {
            min-height: 100vh;
            padding: 150px 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-container {
            max-width: 800px;
            width: 100%;
        }

        .contact h2 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            margin-bottom: 20px;
            text-align: center;
            color: #2c2c2c;
        }

        .contact p {
            text-align: center;
            color: #666;
            margin-bottom: 50px;
            font-size: 18px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .form-group label {
            font-weight: 600;
            color: #2c2c2c;
        }

        .form-group input,
        .form-group textarea {
            padding: 18px;
            border: 2px solid #e8dfd0;
            background: white;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #c59d5f;
            box-shadow: 0 0 20px rgba(197, 157, 95, 0.2);
        }

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

        .submit-btn {
            padding: 20px;
            background: transparent;
            border: 2px solid #c59d5f;
            color: #c59d5f;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            letter-spacing: 1px;
            border-radius: 10px;
        }

        .submit-btn:hover {
            background: #c59d5f;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(197, 157, 95, 0.4);
        }

        footer {
            padding: 40px 80px;
            text-align: center;
            background: rgba(232, 223, 208, 0.3);
            color: #666;
        }

        @media (max-width: 1024px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
            }

            .sidebar .nav-links {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            /* Base adjustments */
            :root {
                font-size: 14px;
            }

            /* Navigation */
            nav {
                padding: 20px 25px;
                flex-direction: column;
                align-items: flex-start;
            }

            .nav-links {
                margin-top: 20px;
                flex-direction: column;
                gap: 15px;
                width: 100%;
                display: none;
            }

            .nav-links.active {
                display: flex;
            }

            /* Hero Section */
            .hero {
                flex-direction: column;
                padding: 100px 25px 60px;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1rem;
                margin: 20px 0;
            }

            .cta-btn {
                padding: 12px 30px;
                font-size: 0.9rem;
            }

            /* Bottle Section */
            .bottle-3d {
                width: 280px;
                height: 350px;
                margin: 30px auto 0;
            }

            .bottle-img {
                width: 100%;
                height: auto;
                max-height: 350px;
            }

            /* About Section */
            .about {
                flex-direction: column;
                padding: 60px 25px;
            }

            .about-image {
                width: 100%;
                height: 300px;
                margin-bottom: 30px;
            }

            .about-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 20px;
            }

            /* Products Section */
            .products {
                padding: 60px 25px;
            }

            .product-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .product-card {
                max-width: 350px;
                margin: 0 auto;
            }

            /* Contact Section */
            .contact {
                padding: 60px 25px;
            }

            .contact-form {
                width: 100%;
            }

            /* Mobile Menu Toggle */
            /* Sidebar Toggle Button */
            .menu-toggle {
                display: none;
                position: fixed;
                right: 25px;
                top: 25px;
                width: 30px;
                height: 24px;
                cursor: pointer;
                z-index: 1001;
                background: transparent;
                border: none;
                outline: none;
            }

            .menu-toggle span {
                display: block;
                position: absolute;
                height: 3px;
                width: 100%;
                background: #2c2c2c;
                border-radius: 3px;
                opacity: 1;
                left: 0;
                transform: rotate(0deg);
                transition: .25s ease-in-out;
            }

            .menu-toggle span:nth-child(1) {
                top: 0px;
                transform-origin: left center;
            }

            .menu-toggle span:nth-child(2) {
                top: 10px;
                transform-origin: left center;
            }

            .menu-toggle span:nth-child(3) {
                top: 20px;
                transform-origin: left center;
            }

            .menu-toggle.open span:nth-child(1) {
                transform: rotate(45deg);
                top: -3px;
                left: 8px;
            }

            .menu-toggle.open span:nth-child(2) {
                width: 0%;
                opacity: 0;
            }

            .menu-toggle.open span:nth-child(3) {
                transform: rotate(-45deg);
                top: 25px;
                left: 8px;
            }
        }

        /* Tablet View */
        @media (min-width: 769px) and (max-width: 1024px) {
            .bottle-3d {
                width: 350px;
                height: 450px;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }