
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f5f2;
            color: #333;
            line-height: 1.6;
        }

        /* Ultra Compact Header */
        header {
            background-color: white;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.02);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #f0f0f0;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: #1a1a1a;
            text-decoration: none;
            letter-spacing: 0.3px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-image {
            height: 1.1rem; /* Same as the crown icon size */
            width: auto;
            object-fit: contain;
        }

        .logo span {
            color: #b89a7a;
            font-weight: 400;
        }

        /* Desktop Navigation */
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
            align-items: center;
        }

        .desktop-nav a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .desktop-nav a:hover {
            color: #b89a7a;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 160px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-radius: 6px;
            padding: 6px 0;
            z-index: 1;
            top: 100%;
            left: 0;
            border: 1px solid #f0f0f0;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            display: block;
            padding: 6px 14px;
            color: #555;
            font-size: 0.85rem;
        }

        .dropdown-content a:hover {
            background-color: #f8f5f2;
        }

        /* Mobile Hamburger Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.2rem;
            color: #555;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-nav {
            display: none;
            background-color: white;
            padding: 15px;
            border-top: 1px solid #f0f0f0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav li {
            margin-bottom: 10px;
        }

        .mobile-nav a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            display: block;
            padding: 8px 0;
            font-size: 0.95rem;
        }

        .mobile-dropdown-content {
            display: none;
            padding-left: 15px;
            margin-top: 5px;
            border-left: 2px solid #f0f0f0;
        }

        .mobile-dropdown-content.active {
            display: block;
        }

        .mobile-dropdown-btn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            color: #555;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 0;
            cursor: pointer;
            text-align: left;
        }

        /* Smaller Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('https://images.unsplash.com/photo-1445205170230-053b83016050?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 20px;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .hero-content p {
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto 20px;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            background-color: #b89a7a;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
            font-size: 0.9rem;
        }

        .cta-button:hover {
            background-color: #a58868;
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 15px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            text-align: center;
            margin-bottom: 30px;
            color: #1a1a1a;
        }

        /* Genre/Category Grid */
        .genre-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .genre-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .genre-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        }

        .genre-image {
            height: 180px;
            overflow: hidden;
        }

        .genre-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .genre-info {
            padding: 15px;
            text-align: center;
        }

        .genre-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 6px;
            color: #1a1a1a;
        }

        /* Company Profile Download Section */
        .profile-download-section {
            text-align: center;
            margin: 50px 0 30px;
            padding: 30px;
            background: linear-gradient(135deg, #f9f6f2 0%, #f1ebe4 100%);
            border-radius: 12px;
            border: 1px solid #e8dfd4;
            box-shadow: 0 4px 12px rgba(184, 154, 122, 0.08);
        }

        .profile-download-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .profile-download-section p {
            color: #666;
            max-width: 600px;
            margin: 0 auto 20px;
            font-size: 0.95rem;
        }

        .profile-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #1a1a1a;
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            border: 2px solid #1a1a1a;
        }

        .profile-button:hover {
            background-color: transparent;
            color: #1a1a1a;
            transform: translateY(-2px);
        }

        .profile-button i {
            font-size: 1.1rem;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
        }

        .product-image {
            height: 240px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .product-details {
            padding: 15px;
        }

        .product-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            margin-bottom: 6px;
            color: #1a1a1a;
        }

        .product-price {
            color: #b89a7a;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background-color: #25D366;
            color: white;
            padding: 8px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: background-color 0.3s ease;
        }

        .whatsapp-btn:hover {
            background-color: #1da851;
        }

        .whatsapp-icon {
            margin-right: 5px;
            font-size: 0.9rem;
        }

        /* About Us Page */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .about-content p {
            margin-bottom: 15px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: #ddd;
            padding: 30px 15px 15px;
            margin-top: 50px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }

        .footer-column h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: #f8f5f2;
        }

        .footer-column p {
            margin-bottom: 10px;
            font-size: 0.85rem;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 12px;
        }

        .social-icons a {
            color: #ddd;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #b89a7a;
        }

        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid #333;
            font-size: 0.8rem;
            color: #aaa;
        }

        /* Page visibility */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* Back button */
        .back-button {
            display: inline-block;
            margin-bottom: 20px;
            color: #b89a7a;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
        }

        .back-button:hover {
            text-decoration: underline;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                height: 40vh;
                padding: 15px;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content p {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }
            
            .container {
                margin: 30px auto;
            }
            
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }
            
            .genre-grid,
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 15px;
            }
            
            .genre-image {
                height: 150px;
            }
            
            .product-image {
                height: 200px;
            }
            
            .profile-download-section {
                margin: 40px 0 25px;
                padding: 25px 20px;
            }
            
            .profile-download-section h3 {
                font-size: 1.4rem;
            }
            
            .profile-button {
                padding: 10px 24px;
                font-size: 0.9rem;
            }
            
            .about-content {
                padding: 20px;
            }
            
            .about-content h2 {
                font-size: 1.4rem;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 8px 12px;
            }
            
            .logo {
                font-size: 1.2rem;
            }
            
            .hero {
                height: 35vh;
            }
            
            .hero-content h1 {
                font-size: 1.6rem;
            }
            
            .genre-grid,
            .product-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .profile-download-section {
                padding: 20px 15px;
            }
            
            .profile-download-section h3 {
                font-size: 1.3rem;
            }
        }
