/* ===== CSS Variables & Reset ===== */
:root {
    /* Colors */
    --primary-gradient: linear-gradient(135deg, #FF6B35 0%, #F72585 50%, #7209B7 100%);
    --strawberry: #E63946;
    --strawberry-light: #FFCCD5;
    --mango: #FFB703;
    --mango-light: #FFF3CD;
    --fruit-gradient: linear-gradient(135deg, #FF6B35, #F72585);

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --mid-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #1A1A2E;

    /* Accent */
    --accent-blue: #4CC9F0;
    --accent-green: #06D6A0;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(247, 37, 133, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 37, 133, 0.1));
    color: var(--strawberry);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--mid-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--light-gray);
}

.btn-secondary:hover {
    background: var(--off-white);
    border-color: var(--strawberry);
    color: var(--strawberry);
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-gray);
    transition: var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFF8E7 50%, #F0F8FF 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-carousel {
    position: relative;
    height: calc(100vh - 80px);
}

.carousel-slides {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.hero-text {
    z-index: 2;
}

.tagline {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--strawberry);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--mid-gray);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.4s both;
}

.hero-image img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.floating-badge .badge-icon {
    font-size: 1.25rem;
}

.badge-1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 25%;
    left: 0;
    animation-delay: 1.5s;
}

.carousel-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 10;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.carousel-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: var(--dark-gray);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    transition: var(--transition-normal);
}

.dot.active {
    background: var(--primary-gradient);
    transform: scale(1.2);
}

.dot:hover {
    transform: scale(1.2);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== Products Section ===== */
.products {
    padding: var(--section-padding);
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white), var(--light-gray));
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge.natural {
    background: rgba(6, 214, 160, 0.9);
    color: white;
}

.badge.weight {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-gray);
}

.badge.coming {
    background: rgba(255, 183, 3, 0.9);
    color: var(--black);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    padding: 14px 28px;
    background: var(--white);
    color: var(--black);
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.product-card:hover .view-details {
    transform: translateY(0);
}

.view-details:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.product-info p {
    color: var(--mid-gray);
    margin-bottom: 20px;
}

.product-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== About Section ===== */
.about {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--mid-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--mid-gray);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.highlight-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.highlight-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--mid-gray);
    line-height: 1.6;
}

/* Nutrition Section */
.nutrition-section {
    text-align: center;
}

.nutrition-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
}

.nutrition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.nutrition-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.nutrition-header {
    padding: 24px;
    color: var(--white);
}

.nutrition-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.nutrition-header span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.strawberry-bg {
    background: linear-gradient(135deg, var(--strawberry), #D62839);
}

.mango-bg {
    background: linear-gradient(135deg, var(--mango), #FB8500);
}

.nutrition-body {
    padding: 24px;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.nutrition-item:last-child {
    border-bottom: none;
}

.nutrition-item span:first-child {
    color: var(--mid-gray);
}

.nutrition-item span:last-child {
    font-weight: 600;
    color: var(--black);
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.contact-info>p {
    font-size: 1.1rem;
    color: var(--mid-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 24px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 37, 133, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--strawberry);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.contact-text a,
.contact-text p {
    font-size: 0.95rem;
    color: var(--mid-gray);
    display: block;
}

.contact-text a:hover {
    color: var(--strawberry);
}

/* WhatsApp Styling */
.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

.whatsapp-icon svg {
    fill: white !important;
    stroke: none !important;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-link:hover {
    color: #25D366 !important;
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--mid-gray);
    margin-top: 16px;
    max-width: 280px;
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: var(--radius-sm);
}

.footer-links h4,
.footer-products h4,
.footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul,
.footer-products ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-products a {
    color: var(--mid-gray);
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-contact li {
    color: var(--mid-gray);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--mid-gray);
    font-size: 0.875rem;
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 24px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-normal);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--off-white);
    font-size: 1.5rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--light-gray);
}

.modal-body {
    padding: 24px;
}

.modal-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.modal-body h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.modal-body p {
    color: var(--mid-gray);
    margin-bottom: 24px;
}

.modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.modal-feature {
    padding: 10px 18px;
    background: var(--off-white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-gray);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(247, 37, 133, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translateY(0);
    }

    40%,
    43% {
        transform: translateY(-8px);
    }

    70% {
        transform: translateY(-4px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== Enhanced Hover Effects ===== */
.btn-primary {
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    animation: gradientFlow 3s ease infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.btn-secondary:hover::after {
    width: 80%;
}

/* Product Card Animations */
.product-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card .product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

/* Feature Card Animations */
.feature {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s ease;
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateY(-8px);
    border-color: var(--strawberry-light);
}

.feature:hover .feature-icon {
    animation: bounce 0.6s ease;
}

/* Highlight Card Animations */
.highlight-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    animation: pulse 1s ease infinite;
}

/* Nutrition Card Animations */
.nutrition-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nutrition-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.nutrition-header {
    background-size: 200% 200%;
    animation: gradientFlow 4s ease infinite;
}

/* Contact Item Animations */
.contact-item {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-6px);
}

.contact-item:hover .contact-icon {
    animation: pulse 1s ease;
}

/* Logo Animation */
.logo img {
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Nav Link Underline Animation */
.nav-links a::after {
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section Headers Animation */
.section-tag {
    animation: fadeInUp 0.6s ease;
}

.section-header h2 {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.section-header p {
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Gradient Text Animation */
.gradient-text {
    background-size: 200% 200%;
    animation: gradientFlow 3s ease infinite;
}

/* Footer Link Animations */
.footer-links a,
.footer-products a {
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a::before,
.footer-products a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.3s ease, left 0.3s ease;
}

.footer-links a:hover::before,
.footer-products a:hover::before {
    opacity: 1;
    left: -12px;
}

/* Carousel Dot Animations */
.dot {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease,
        width 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 6px;
}

/* Carousel Button Animations */
.carousel-btn {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.carousel-btn:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-md);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Modal Animations */
.modal-content {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease;
}

.modal.active .modal-content {
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* View Details Button Animation */
.view-details {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.view-details:hover {
    box-shadow: 0 4px 20px rgba(247, 37, 133, 0.4);
}

/* Badge Animations */
.badge {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover .badge {
    transform: scale(1.05);
}

/* Stat Value Animation */
.stat-value {
    transition: color 0.3s ease, transform 0.3s ease;
}

.product-card:hover .stat-value {
    color: var(--strawberry);
    transform: scale(1.1);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .floating-badge {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        order: -1;
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-carousel {
        height: auto;
        min-height: calc(100vh - 80px);
    }

    .hero-content {
        padding: 40px 16px 100px;
        gap: 30px;
    }

    .hero-image img {
        max-height: 50vh;
    }

    .carousel-controls {
        bottom: 40px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-image {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature {
        padding: 16px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .highlight-card {
        padding: 20px;
    }

    .nutrition-cards {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        text-align: center;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .tagline {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 12px 24px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .product-info {
        padding: 16px;
    }

    .product-info h3 {
        font-size: 1.25rem;
    }

    .product-stats {
        padding-top: 16px;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .about-content h2,
    .contact-info h2 {
        font-size: 1.75rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-text h4 {
        font-size: 0.9rem;
    }

    .feature-text p {
        font-size: 0.8rem;
    }

    .highlight-icon {
        font-size: 2rem;
    }

    .highlight-card h4 {
        font-size: 1rem;
    }

    .nutrition-header {
        padding: 16px;
    }

    .nutrition-body {
        padding: 16px;
    }

    .nutrition-item {
        padding: 10px 0;
        font-size: 0.9rem;
    }

    .contact-item {
        padding: 20px 16px;
    }

    .modal-body {
        padding: 16px;
    }

    .modal-body h3 {
        font-size: 1.5rem;
    }

    .modal-features {
        gap: 8px;
    }

    .modal-feature {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-logo {
        height: 50px;
    }
}