  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #ffffff;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: #ffffff;
            padding: 0.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            align-items: center;
        }

        .brand-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .brand-name .one {
            color: #2a9d2a;
        }

        .brand-name .ayu {
            background: linear-gradient(135deg, #8b5a3c 0%, #c89066 50%, #d4a574 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .brand-subtitle {
            font-size: 0.75rem;
            color: #1a5c3a;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        nav {
            display: flex;
            gap: 3rem;
        }

        nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: #6b4ba5;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #6b4ba5;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(107, 75, 165, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
            padding: 100px 3rem 60px;
            display: flex;
            align-items: center;
            min-height: 90vh;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            color: #2d3436;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content h1 .highlight {
            color: #6b4ba5;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #636e72;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-image img {
            width: 100%;
            max-width: 600px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #6b4ba5 0%, #8e44ad 100%);
            color: white;
            padding: 16px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(107, 75, 165, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(107, 75, 165, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #6b4ba5;
            color: #6b4ba5;
            margin-left: 1rem;
        }

        .btn-outline:hover {
            background: #6b4ba5;
            color: white;
        }

        /* About Section */
        .about {
            padding: 100px 3rem;
            background: #fafafa;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: #2d3436;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            color: #636e72;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }

        /* Products Section */
        .products {
            padding: 40px 3rem;
            background: white;
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            color: #2d3436;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #636e72;
        }

        .product-grid {
            display: flex;
            gap: 3rem;
            margin-bottom: 4rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 2rem;
            scrollbar-width: thin;
            scrollbar-color: #6b4ba5 #f0f0f0;
        }

        .product-grid::-webkit-scrollbar {
            height: 8px;
        }

        .product-grid::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 10px;
        }

        .product-grid::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #6b4ba5 0%, #8e44ad 100%);
            border-radius: 10px;
        }

        .product-grid::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #8e44ad 0%, #6b4ba5 100%);
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            flex: 0 0 400px;
            min-width: 350px;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(107, 75, 165, 0.15);
        }

        .product-image {
            background: linear-gradient(135deg, #f5f0e8 0%, #faf8f4 100%);
            padding: 1rem;
            text-align: center;
        }

        .product-image img {
            width: 100%;
            max-width: 300px;
            height: auto;
        }

        .product-info {
            padding: 2.5rem;
        }

        .product-info h3 {
            font-size: 1.8rem;
            color: #2d3436;
            margin-bottom: 1rem;
        }

        .product-info .subtitle {
            color: #6b4ba5;
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .product-price {
            font-size: 2.5rem;
            color: #2d3436;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .product-price .currency {
            font-size: 1.8rem;
            color: #6b4ba5;
        }

        .product-price .price-label {
            font-size: 0.9rem;
            color: #636e72;
            font-weight: 500;
            background: linear-gradient(135deg, rgba(107, 75, 165, 0.1) 0%, rgba(142, 68, 173, 0.1) 100%);
            padding: 0.3rem 1rem;
            border-radius: 20px;
        }

        .product-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .product-features li {
            padding: 0.6rem 0;
            color: #636e72;
            position: relative;
            padding-left: 30px;
        }

        .product-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #6b4ba5;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .coming-soon-card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 600px;
        }

        .coming-soon-image {
            background: linear-gradient(135deg, #f5f0e8 0%, #faf8f4 100%);
            padding: 1rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 320px;
        }

        .coming-soon-image img {
            width: 100%;
            max-width: 300px;
            height: auto;
            filter: blur(6px);
            opacity: 0.35;
            animation: floatIcon 3s ease-in-out infinite;
        }

        .coming-soon-content {
            text-align: center;
            padding: 2.5rem;
            background: white;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .coming-soon-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #6b4ba5;
            margin-bottom: 1rem;
        }

        .coming-soon-content p {
            color: #636e72;
            font-size: 1rem;
            line-height: 1.7;
        }

        .scroll-hint {
            text-align: center;
            color: #6b4ba5;
            font-weight: 500;
            margin-top: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .scroll-hint::after {
            content: ' →';
            animation: slideHint 1.5s ease-in-out infinite;
            display: inline-block;
        }

        @keyframes slideHint {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(10px);
            }
        }

        /* Features Section */
        .features {
            padding: 100px 3rem;
            background: linear-gradient(135deg, rgba(107, 75, 165, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Ingredients Carousel */
        .features-grid-wrapper {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
            padding: 0 60px;
        }

        #ingredientsCarousel {
            display: flex;
            gap: 3rem;
            transition: transform 0.5s ease;
        }

        #ingredientsCarousel .feature-box {
            flex: 0 0 calc((100% - 6rem) / 3);
            min-width: 280px;
            max-width: 400px;
        }

        .feature-box {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .feature-box:nth-child(1) {
            animation-delay: 0.1s;
        }

        .feature-box:nth-child(2) {
            animation-delay: 0.2s;
        }

        .feature-box:nth-child(3) {
            animation-delay: 0.3s;
        }

        .feature-box:nth-child(4) {
            animation-delay: 0.4s;
        }

        .feature-box:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(107, 75, 165, 0.2);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .feature-box:hover .feature-icon {
            animation: floatIcon 1s ease-in-out infinite;
        }

        .feature-box h3 {
            font-size: 1.5rem;
            color: #2d3436;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }

        .feature-box:hover h3 {
            color: #6b4ba5;
        }

        .feature-box p {
            color: #636e72;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .feature-box:hover p {
            color: #2d3436;
        }

        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #6b4ba5 0%, #8e44ad 100%);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(107, 75, 165, 0.3);
        }

        .carousel-nav:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 20px rgba(107, 75, 165, 0.4);
        }

        .carousel-nav.prev {
            left: 0;
        }

        .carousel-nav.next {
            right: 0;
        }

        .carousel-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .carousel-nav:disabled:hover {
            transform: translateY(-50%);
        }

        /* Contact Section */
        .contact {
            padding: 100px 3rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            margin-top: 3rem;
        }

        .contact-form-container {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .contact-form-container h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #2d3436;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #636e72;
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
            background: #f8f9fa;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #6b4ba5;
            background: white;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-info-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            display: flex;
            align-items: start;
            gap: 1.5rem;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .contact-info-card:hover {
            transform: translateX(5px);
            border-left-color: #6b4ba5;
            box-shadow: 0 8px 30px rgba(107, 75, 165, 0.15);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6b4ba5 0%, #8e44ad 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .contact-info-content h4 {
            color: #2d3436;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact-info-content p {
            color: #636e72;
            line-height: 1.6;
            margin: 0;
        }

        .contact-info-content a {
            color: #6b4ba5;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .contact-info-content a:hover {
            color: #8e44ad;
        }

        .btn-submit {
            width: 100%;
            margin-top: 1rem;
        }

        /* Footer */
        footer {
            background: #2d3436;
            color: white;
            padding: 3rem;
            text-align: center;
        }

        footer p {
            margin: 0.5rem 0;
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 35px;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
            z-index: 9999;
            display: flex !important;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            visibility: visible;
            opacity: 1;
        }

        .whatsapp-float:hover {
            background-color: #20ba5a;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
            }
            50% {
                box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
            }
            100% {
                box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes floatIcon {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container,
            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0 1.5rem;
            }

            .logo-img {
                height: 50px;
            }

            .brand-name {
                font-size: 1.2rem;
            }

            .brand-subtitle {
                font-size: 0.65rem;
            }

            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                transition: left 0.3s;
            }

            nav.active {
                left: 0;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                padding: 120px 1.5rem 60px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .btn-outline {
                margin-left: 0;
                margin-top: 1rem;
            }

            .about,
            .products,
            .features,
            .contact {
                padding: 60px 1.5rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .product-grid {
                padding-bottom: 1rem;
                gap: 2rem;
            }

            .product-card {
                flex: 0 0 85vw;
                min-width: 300px;
            }

            .product-info {
                padding: 2rem 1.5rem;
            }

            .product-info h3 {
                font-size: 1.5rem;
            }

            .product-price {
                font-size: 2rem;
                gap: 0.5rem;
                flex-wrap: wrap;
            }

            .product-price .currency {
                font-size: 1.5rem;
            }

            .product-price .price-label {
                font-size: 0.8rem;
                padding: 0.2rem 0.8rem;
            }

            .coming-soon-card {
                min-height: 500px;
            }

            .coming-soon-image {
                min-height: 250px;
                padding: 1rem;
            }

            .coming-soon-image img {
                max-width: 250px;
            }

            .coming-soon-content {
                padding: 2rem 1.5rem;
            }

            .coming-soon-content h3 {
                font-size: 1.6rem;
            }

            .coming-soon-content p {
                font-size: 1rem;
            }

            .scroll-hint {
                font-size: 0.9rem;
            }

            .btn {
                font-size: 1rem;
                padding: 14px 35px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .features-grid-wrapper {
                padding: 0 50px;
            }

            #ingredientsCarousel .feature-box {
                flex: 0 0 100%;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-form-container {
                padding: 2rem 1.5rem;
            }

            .contact-info-card {
                padding: 1.5rem;
            }

            .contact-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .contact-info-content h4 {
                font-size: 1.1rem;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
                font-size: 30px;
            }
        }