:root {
    /* Color Palette - Premium Pink/Gold Theme */
    --primary-color: #ff6b95;
    --primary-dark: #e0527d;
    --primary-light: #ffebf0;
    --secondary-color: #d4a373;
    --accent-color: #ffd700;
    
    /* Light Mode */
    --bg-color: #ffffff;
    --bg-alt: #fef7f9;
    --text-color: #2d3436;
    --text-muted: #636e72;
    --nav-bg: rgba(255, 255, 255, 0.8);
    --card-bg: #ffffff;
    --border-color: #f1f2f6;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] {
    /* Dark Mode */
    --bg-color: #0f1113;
    --bg-alt: #1a1c1e;
    --text-color: #f1f2f6;
    --text-muted: #a4b0be;
    --nav-bg: rgba(15, 17, 19, 0.8);
    --card-bg: #1a1c1e;
    --border-color: #2d3436;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(26, 28, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.script-text {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.nav-logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.logo-accent {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 149, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 149, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.theme-toggle:hover {
    transform: rotate(20deg);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
}

.shape-1 { width: 300px; height: 300px; background: rgba(255, 107, 149, 0.1); top: -100px; right: -50px; }
.shape-2 { width: 400px; height: 400px; background: rgba(212, 163, 115, 0.1); bottom: -150px; left: -100px; }
.shape-3 { width: 250px; height: 250px; background: rgba(255, 215, 0, 0.05); top: 20%; left: 10%; }

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
    align-self: center;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: visible;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-float-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: var(--shadow);
}

.float-card-1 { top: 10%; left: -30px; color: var(--primary-color); }
.float-card-2 { bottom: 10%; right: -30px; }

.rating-stars { color: var(--accent-color); font-size: 0.8rem; }

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 20px;
    margin: 0 auto 25px;
}

/* Catalog Section */
.catalog {
    padding: 100px 0;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

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

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-content {
    padding: 25px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    background: var(--bg-color);
    width: 100%;
    max-width: 900px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    animation: modalIn 0.4s ease-out;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 40px;
}

/* ===== CTA Section ===== */
.cta-section { padding: 80px 0; }
.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark), var(--secondary-color));
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: white; font-size: 2.2rem; margin-bottom: 15px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== Contact Section ===== */
.contact { padding: 100px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}
.contact-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--primary-color); }
.contact-icon {
    width: 60px; height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}
.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 10px;
}
.contact-status { font-size: 0.85rem; color: #27ae60; display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 10px; }
.contact-status i { font-size: 0.5rem; }

/* ===== Footer ===== */
.footer { background: var(--bg-alt); padding: 60px 0 30px; border-top: 1px solid var(--border-color); }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.3rem; font-weight: 700; color: var(--text-color); margin-bottom: 15px; }
.footer-logo i { color: var(--primary-color); }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 40px; height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}
.footer-socials a:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); }
.footer-links h4 { font-family: 'Inter', sans-serif; font-size: 1rem; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary-color); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 25px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom i { color: var(--primary-color); }

/* ===== Scroll Indicator ===== */
.hero-scroll-indicator { text-align: center; margin-top: 30px; }
.hero-scroll-indicator a { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.8rem; }
.scroll-mouse { width: 26px; height: 40px; border: 2px solid var(--text-muted); border-radius: 15px; position: relative; }
.scroll-wheel { width: 4px; height: 8px; background: var(--primary-color); border-radius: 3px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollAnim 1.5s infinite; }
@keyframes scrollAnim { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }

/* ===== Modal Details ===== */
.modal-category { font-size: 0.8rem; color: var(--primary-color); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }
.modal-title { font-size: 1.6rem; margin-bottom: 12px; }
.modal-description { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; line-height: 1.7; }
.modal-details { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.modal-detail-item { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.9rem; }
.modal-detail-item i { color: var(--primary-color); }
.modal-price { margin-bottom: 20px; }
.price-label { font-size: 0.8rem; color: var(--text-muted); display: block; }
.price-value { font-size: 1.6rem; font-weight: 700; color: var(--secondary-color); }
.modal-flavors h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; margin-bottom: 10px; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ===== Testimonial Controls ===== */
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 25px; }
.testimonial-btn { width: 45px; height: 45px; border-radius: 50%; border: 1px solid var(--border-color); background: var(--card-bg); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; color: var(--text-color); }
.testimonial-btn:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); }

/* ========================================= */
/* ===== RESPONSIVE - TABLET (<=992px) ===== */
/* ========================================= */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { order: -1; max-width: 350px; margin: 0 auto; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .hero-stats { justify-content: center; }
    .hero-title { font-size: 2.6rem; }
    .hero-description { margin: 0 auto 30px; }
    .hero-badge { margin-bottom: 15px; }
    .modal-body { grid-template-columns: 1fr; }
    .modal-image { height: 250px; }
    .modal-info { padding: 25px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .cta-card { padding: 40px 25px; }
    .cta-content h2 { font-size: 1.8rem; }
    .section-title { font-size: 2.2rem; }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

@media (max-width: 768px) {
    .hamburger { display: block; }
    .btn-nav { display: none; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        z-index: 1000;
    }

    .nav-links.mobile-active { right: 0; }
    .nav-links li { margin: 15px 0; }
    .nav-link { font-size: 1.1rem; }

    /* Hero Mobile */
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 1rem; margin-bottom: 25px; }
    .hero-buttons { flex-direction: column; gap: 12px; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
    .btn-lg { padding: 14px 28px; font-size: 1rem; }
    .hero-stats { gap: 15px; flex-wrap: wrap; }
    .stat-number { font-size: 1.4rem; }
    .stat-label { font-size: 0.8rem; }
    .hero-visual { max-width: 280px !important; }
    .hero-float-card { padding: 10px 14px; font-size: 0.8rem; }
    .float-card-1 { left: -10px; top: 5%; }
    .float-card-2 { right: -10px; bottom: 5%; }
    .hero-scroll-indicator { display: none; }
    .hero-badge { font-size: 0.75rem; padding: 6px 12px; }

    /* Sections */
    .about, .catalog, .testimonials, .contact { padding: 60px 0; }
    .cta-section { padding: 50px 0; }
    .section-header { margin-bottom: 35px; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 0.95rem; }

    /* Features */
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-card { padding: 30px 20px; }
    .feature-card:hover { transform: none; }

    /* Catalog */
    .catalog-filters { gap: 8px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
    .filter-btn { padding: 8px 16px; font-size: 0.85rem; white-space: nowrap; flex-shrink: 0; }
    .product-grid { grid-template-columns: 1fr; gap: 20px; }
    .product-img { height: 220px; }
    .product-card:hover { transform: none; }
    .product-content { padding: 20px; }
    .product-title { font-size: 1.2rem; }

    /* Modal */
    .modal-overlay { padding: 10px; align-items: flex-end; }
    .modal-content { border-radius: 24px 24px 0 0; max-height: 90vh; overflow-y: auto; }
    .modal-image { height: 200px; }
    .modal-info { padding: 20px; }
    .modal-title { font-size: 1.3rem; }
    .modal-details { gap: 12px; }
    .price-value { font-size: 1.3rem; }

    /* Testimonials */
    .testimonial-card { padding: 25px; }
    .testimonial-text { font-size: 1rem; }

    /* CTA */
    .cta-card { padding: 35px 20px; border-radius: 20px; }
    .cta-content h2 { font-size: 1.5rem; }
    .cta-content p { font-size: 0.95rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .contact-card { padding: 25px 15px; border-radius: 18px; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-socials { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* WhatsApp Float */
    .whatsapp-float { width: 55px; height: 55px; font-size: 26px; bottom: 20px; right: 20px; }
    .whatsapp-tooltip { display: none; }
}

/* ========================================= */
/* ===== RESPONSIVE - SMALL PHONE (<=480px) */
/* ========================================= */
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-title { font-size: 1.7rem; }
    .hero-description { font-size: 0.9rem; }
    .hero-visual { max-width: 220px !important; }
    .section-title { font-size: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-logo { font-size: 1.2rem; }
    .nav-logo i { font-size: 1.4rem; }
    .product-img { height: 200px; }
    .hero-float-card { display: none; }
    .hero-stats { gap: 10px; }
    .stat-divider { height: 30px; }
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-alt);
}

.testimonial-track {
    display: flex;
    gap: 30px;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-card {
    min-width: 100%;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.testimonial-info h4 {
    font-family: 'Inter', sans-serif;
    margin-bottom: 5px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Flavor Tags */
.flavor-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.flavor-tag {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
