:root {
    --primary: #f5e427;
    /* Bright Yellow from Logo */
    --primary-hover: #faec52;
    --secondary: #ffffff;
    /* White from Logo */
    --accent: #f75c03;
    /* Kept for pop, though used sparingly */
    --dark-bg: #0b3b24;
    /* Deep Forest Green from Logo */
    --card-bg: rgba(11, 59, 36, 0.4);
    /* Forest green glass */
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-main: #f0f5f1;
    --text-muted: #c2d6c9;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* For custom cursor */
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor.hovered {
    width: 40px;
    height: 40px;
    background-color: rgba(137, 192, 59, 0.2);
}

/* Utility */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

.image-glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.image-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

img.product-img,
img.hero-img,
img.intro-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px rgba(137, 192, 59, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(137, 192, 59, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.mt-4 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #fff;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Animations */
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
    opacity: 1;
    transform: translate(0);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    border-top: none;
    border-left: none;
    border-right: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 110px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    /* Ensure it stays above the overlay */
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

/* Mobile Menu Styles */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 59, 36, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--primary);
}

.mobile-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1003;
    transition: transform 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-close-btn:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* Hero */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(137, 192, 59, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-img {
    aspect-ratio: 4/5;
}

/* Intro */
.intro {
    padding: 8rem 0;
}

.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-img {
    aspect-ratio: 1/1;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Products */
.products {
    padding: 8rem 0;
    position: relative;
}

.exotic-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -20%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(232, 176, 49, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.salad-bg {
    background: linear-gradient(180deg, rgba(15, 46, 26, 0.5) 0%, transparent 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.flavor-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.flavor-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.flavor-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.emoji {
    font-size: 1.8rem;
}

.flavor-name {
    font-weight: 500;
    color: #fff;
}

.product-img {
    aspect-ratio: 1/1;
}

/* Benefits */
.benefits {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card:hover {
    transform: translateY(-15px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-desc {
    color: var(--text-muted);
}

/* Wholesale */
.wholesale {
    padding: 8rem 0;
}

.wholesale-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wholesale-perks {
    list-style: none;
    margin: 2rem 0;
}

.wholesale-perks li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: var(--primary);
    font-weight: bold;
    background: rgba(137, 192, 59, 0.1);
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.wholesale-form-wrapper {
    padding: 2rem;
    border-radius: 20px;
}

.wholesale-form .form-group {
    margin-bottom: 1.5rem;
}

.wholesale-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.wholesale-form input,
.wholesale-form select {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.wholesale-form input:focus,
.wholesale-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #050a07;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-tagline {
    color: var(--text-muted);
    margin: 1rem 0;
}

.social-links a {
    color: var(--text-muted);
    transition: color 0.3s;
    display: inline-block;
    margin-top: 1rem;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-links-group h4,
.footer-contact h4,
.footer-newsletter h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-links-group a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.footer-newsletter {
    padding: 1.5rem;
    border-radius: 16px;
}

.footer-newsletter p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}

.newsletter-form .small-btn {
    padding: 0.8rem;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-container,
    .intro-container,
    .products-grid,
    .wholesale-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-img,
    .intro-img,
    .product-img {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .cta-order {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro,
    .products,
    .wholesale,
    .benefits {
        padding: 4rem 0;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 4rem;
        min-height: auto;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .wholesale-contact-card {
        padding: 1.5rem !important;
    }

    .wholesale-contact-card h3 {
        font-size: 1.25rem !important;
    }

    .flavor-list li {
        font-size: 1.2rem;
        padding: 0.75rem 1rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    /* WhatsApp Brand Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    /* ensure icon stays white on hover */
    transform: translateY(-5px);
    box-shadow: 0px 12px 28px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}