@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.03);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 50;
    padding: 1.5rem;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.menu-item {
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    /* Ganti warna oranye ke biru */
}

.menu-item .bg-orange-500 {
    background-color: #2563eb !important;
    /* Ganti warna oranye ke biru */
}

.menu-item .text-orange-500 {
    color: #2563eb !important;
    /* Ganti warna oranye ke biru */
}

.menu-item .hover\:bg-orange-100:hover {
    background-color: #ebf2ff !important;
    /* Ganti warna oranye ke biru */
}

.menu-item .hover\:text-orange-600:hover {
    color: #1d4ed8 !important;
    /* Ganti warna oranye ke biru */
}

.filter-btn.active {
    background-color: #2563eb;
    /* Ganti warna oranye ke biru */
    color: white;
}

.category-tab.active {
    border-bottom: 3px solid #2563eb;
    /* Ganti warna oranye ke biru */
    color: #2563eb;
    font-weight: 600;
}

input:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.5);
    /* Ganti warna oranye ke biru */
}

.filter-btn.active {
    background-color: #2563eb;
    /* Ganti warna oranye ke biru */
    color: white;
}

.category-tab.active {
    border-bottom: 3px solid #2563eb;
    /* Ganti warna oranye ke biru */
    color: #2563eb;
    font-weight: 600;
}

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

.product-image:hover {
    transform: scale(1.03);
}

.ingredient-chip {
    transition: all 0.2s ease;
}

.ingredient-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nutrition-bar {
    height: 6px;
    border-radius: 3px;
}

.add-to-cart-btn {
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease forwards;
}