﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #0f2818 0%, #1a472a 50%, #2d5f47 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Logo Image Styling */
.logo-img {
    width: 70px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.logo:hover .logo-img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Hero Section */
.hero {
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    background: linear-gradient(135deg, rgba(15, 40, 24, 0.9), rgba(26, 71, 42, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(168,213,186,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>');
}

.carousel {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    animation: slideInDown 0.8s ease-out;
    max-width: 100%;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fade {
    animation: fade 0.5s ease-in-out;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
    background-color: rgba(255, 215, 0, 1);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.cta-button {
    background: linear-gradient(135deg, #FFD700, #FFC700);
    color: #1a472a;
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #FFC700, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

/* Products Section */
.products {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #FFD700, #FFC700, #FFD700);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.products-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(168, 213, 186, 0.05) 100%);
    padding: 40px 0;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(168, 213, 186, 0.2);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    gap: 25px;
    padding: 10px 25px;
    box-sizing: border-box;
    overflow-x: visible;
    overflow-y: visible;
    justify-content: center;
}

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    color: inherit;
    flex: 0 0 calc(25% - 19px);
    min-width: 250px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 18px;
    position: relative;
    border: 2px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFC700, #FFD700);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 10;
}

.product-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.2);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    background: white;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0) 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-info {
    padding: 25px;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(248, 255, 254, 0.8));
}

.product-info h3 {
    color: #1a472a;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.price-section {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    justify-content: center;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.85rem;
    font-weight: 500;
}

.sale-price {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.product-button {
    width: auto;
    padding: 8px 24px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a472a, #2d5f47);
    color: white;
    box-shadow: 0 4px 12px rgba(26, 71, 42, 0.2);
}

.product-button:hover:not(.sold-out) {
    background: linear-gradient(135deg, #FFD700, #FFC700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.product-button.sold-out {
    background: #f4b860;
    color: #333;
    cursor: not-allowed;
}

/* Carousel Navigation */
.carousel-navigation {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-nav-btn {
    width: 55px;
    height: 55px;
    border: none;
    background: linear-gradient(135deg, #FFD700, #FFC700);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #1a472a;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.carousel-nav-btn::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;
}

.carousel-nav-btn:hover::before {
    left: 100%;
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, #FFC700, #FFD700);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0f2818 0%, #1a472a 50%, #2d5f47 100%);
    padding: 100px 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, #a8d5ba 0%, #7fb3a0 100%);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    box-shadow: 0 20px 60px rgba(127, 179, 160, 0.4);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    font-weight: 500;
    font-size: 1.05rem;
}

.about-text h3 {
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.about-text ul li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Flavors Section */
.flavors {
    background: linear-gradient(135deg, #0f2818 0%, #1a472a 50%, #2d5f47 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.flavors::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.flavors-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.flavors-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 500;
}

.flavor-showcase {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(168, 213, 186, 0.05) 100%);
    border-radius: 30px;
    border: 1px solid rgba(168, 213, 186, 0.2);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.flavor-carousel {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavor-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    text-align: center;
}

.flavor-item.active {
    opacity: 1;
}

.flavor-emoji-large {
    font-size: 6rem;
    display: block;
    animation: bobbing 3s ease-in-out infinite;
}

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

.flavor-content {
    flex: 1;
    text-align: left;
}

.flavor-item h3 {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.flavor-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.flavor-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trait {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8a50);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.flavor-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.flavor-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.flavor-dot.active {
    background-color: #ff6b35;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
    border-color: #ff8a50;
}

.flavor-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.flavors-closing {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(168, 213, 186, 0.05) 100%);
    border-radius: 18px;
    border: 1px solid rgba(168, 213, 186, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 60px;
}

.flavors-closing p {
    color: white;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Contact Section */
.contact {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.contact h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 60px;
    color: white;
    font-weight: 800;
    position: relative;
    padding-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #FFD700, #FFC700, #FFD700);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    z-index: 0;
    transition: all 0.5s ease;
}

.contact-item:hover::before {
    top: -25%;
    right: -25%;
}

.contact-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.2);
}

.contact-item h3 {
    color: #1a472a;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.contact-item a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #FFC700;
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f2818 0%, #1a472a 100%);
    color: white;
    margin-top: 80px;
    border-top: 3px solid #FFD700;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #aaa;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    header {
        padding: 1rem 0.5rem;
        width: 100%;
        overflow: hidden;
    }

    .logo-img {
        width: 55px;
    }

    .product-card {
        flex: 0 0 calc(25% - 19px);
    }
    
    .section-title {
        font-size: 2.8rem;
    }

    .products {
        margin: 60px auto;
        width: 100%;
        overflow: hidden;
    }

    .products-carousel-container {
        padding: 30px 0;
        width: 100%;
        overflow: hidden;
    }

    .products-grid {
        width: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .flavor-showcase {
        padding: 40px 30px;
    }

    .flavor-item {
        gap: 30px;
    }

    .flavor-emoji-large {
        font-size: 4.5rem;
    }

    .flavor-item h3 {
        font-size: 2rem;
    }

    .flavor-item p {
        font-size: 1rem;
    }

    .about {
        padding: 80px 20px;
        margin-top: 60px;
        width: 100%;
        overflow: hidden;
    }

    .about-content {
        gap: 40px;
        width: 100%;
    }

    .about-image {
        height: 350px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .contact {
        margin: 60px auto;
        width: 100%;
        overflow: hidden;
    }

    .contact h2 {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    .contact-grid {
        gap: 30px;
        width: 100%;
    }

    .footer-content {
        padding: 40px 20px;
        gap: 30px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    header {
        flex-wrap: wrap;
        padding: 0.75rem 0.5rem;
        width: 100%;
        overflow: hidden;
    }

    .logo-img {
        width: 50px;
        height: auto;
    }

    nav {
        display: none !important;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .carousel {
        height: 300px;
        width: 100%;
    }

    .hero {
        min-height: 350px;
        width: 100%;
        padding: 0;
        overflow: hidden;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .products {
        margin: 50px auto;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .products-carousel-container {
        padding: 30px 0;
        border-radius: 20px;
        margin-bottom: 30px;
        width: 100%;
        overflow: hidden;
    }

    .products-grid {
        gap: 18px;
        padding: 10px 15px;
        width: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .product-card {
        flex: 0 0 calc(33.333% - 17px);
        min-width: 180px;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 15px;
        min-height: 100px;
    }

    .product-info h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .sale-price {
        font-size: 1.2rem;
    }

    .carousel-navigation {
        gap: 15px;
        margin-top: 30px;
        width: 100%;
    }

    .carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .about {
        padding: 50px 15px;
        margin-top: 50px;
        width: 100%;
        overflow: hidden;
    }

    .about-container {
        padding: 0 10px;
        width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .about-image {
        height: 280px;
        border-radius: 15px;
        width: 100%;
    }

    .about-image img {
        border-radius: 15px;
    }

    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .about-text h3 {
        font-size: 1.1rem;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .about-text ul li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
        padding-bottom: 20px;
        width: 100%;
    }

    .section-title::after {
        width: 80px;
        height: 4px;
    }

    .flavors {
        padding: 50px 15px;
        width: 100%;
        overflow: hidden;
    }

    .flavors-intro {
        font-size: 1rem;
        margin-bottom: 40px;
        width: 100%;
    }

    .flavor-showcase {
        padding: 30px 15px;
        border-radius: 20px;
        margin-bottom: 40px;
        width: 100%;
        overflow: hidden;
    }

    .flavor-carousel {
        height: 280px;
        width: 100%;
    }

    .flavor-item {
        flex-direction: column;
        gap: 20px;
        height: auto;
        text-align: center;
        width: 100%;
    }

    .flavor-content {
        text-align: center;
        width: 100%;
    }

    .flavor-emoji-large {
        font-size: 3rem;
    }

    .flavor-item h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .flavor-item p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .flavor-traits {
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .trait {
        font-size: 0.8rem;
        padding: 6px 14px;
        flex-shrink: 0;
    }

    .flavor-dots {
        gap: 8px;
        margin-top: 20px;
        width: 100%;
    }

    .flavor-dot {
        width: 12px;
        height: 12px;
    }

    .flavors-closing {
        padding: 25px;
        margin-top: 40px;
        border-radius: 15px;
        width: 100%;
        overflow: hidden;
    }

    .flavors-closing p {
        font-size: 1rem;
    }

    .contact {
        margin: 50px auto;
        padding: 0 15px;
        width: 100%;
        overflow: hidden;
    }

    .contact h2 {
        font-size: 2rem;
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .contact h2::after {
        width: 80px;
        height: 4px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
    }

    .contact-item {
        padding: 30px;
        border-radius: 15px;
        width: 100%;
    }

    .contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .contact-item p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }

    footer {
        margin-top: 50px;
        width: 100%;
        overflow: hidden;
    }

    .footer-content {
        padding: 30px 15px;
        gap: 25px;
        width: 100%;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 0.85rem;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        max-width: 100%;
    }

    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0.5rem;
        width: 100%;
    }

    .logo-img {
        width: 45px;
        height: auto;
    }

    nav {
        display: none !important;
    }

    .carousel {
        height: 200px;
        width: 100%;
    }

    .carousel-dots {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .hero {
        min-height: 250px;
        width: 100%;
        padding: 0;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.85rem;
        border-radius: 40px;
    }

    .products {
        margin: 40px auto;
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        padding-bottom: 15px;
        width: 100%;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .products-carousel-container {
        padding: 20px 0;
        border-radius: 15px;
        margin-bottom: 20px;
        width: 100%;
        overflow: hidden;
    }

    .products-grid {
        gap: 12px;
        padding: 8px 10px;
        width: 100%;
        flex-wrap: wrap;
        overflow-x: hidden;
        overflow-y: visible;
        justify-content: center;
    }

    .product-card {
        flex: 0 0 calc(50% - 6px);
        border-radius: 12px;
        min-width: calc(50% - 6px);
    }

    .product-image {
        height: 140px;
    }

    .product-info {
        padding: 12px;
        min-height: 70px;
    }

    .product-info h3 {
        font-size: 0.8rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .price-section {
        margin-bottom: 4px;
        gap: 4px;
    }

    .original-price {
        font-size: 0.65rem;
    }

    .sale-price {
        font-size: 0.9rem;
    }

    .product-button {
        padding: 5px 12px;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .carousel-navigation {
        gap: 8px;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        display: none;
    }

    .carousel-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
        flex-shrink: 0;
    }

    .about {
        padding: 30px 10px;
        margin-top: 30px;
        width: 100%;
        overflow: hidden;
    }

    .about-container {
        padding: 0;
        width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .about-image {
        height: 220px;
        border-radius: 12px;
        width: 100%;
    }

    .about-image img {
        border-radius: 12px;
    }

    .about-text h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .about-text p {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .about-text h3 {
        font-size: 0.95rem;
        margin-top: 12px;
        margin-bottom: 8px;
    }

    .about-text ul li {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .flavors {
        padding: 30px 10px;
        width: 100%;
        overflow: hidden;
    }

    .flavors-container {
        padding: 0;
        width: 100%;
    }

    .flavors-intro {
        font-size: 0.9rem;
        margin-bottom: 30px;
        line-height: 1.6;
        width: 100%;
    }

    .flavor-showcase {
        padding: 20px 10px;
        border-radius: 15px;
        margin-bottom: 30px;
        width: 100%;
        overflow: hidden;
    }

    .flavor-carousel {
        height: 250px;
        width: 100%;
    }

    .flavor-item {
        flex-direction: column;
        gap: 15px;
        padding: 0 5px;
        width: 100%;
    }

    .flavor-content {
        text-align: center;
        width: 100%;
    }

    .flavor-emoji-large {
        font-size: 2rem;
    }

    .flavor-item h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .flavor-item p {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .flavor-traits {
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
        width: 100%;
    }

    .trait {
        font-size: 0.7rem;
        padding: 4px 10px;
        border-radius: 20px;
        flex-shrink: 0;
    }

    .flavor-dots {
        gap: 6px;
        margin-top: 15px;
        width: 100%;
    }

    .flavor-dot {
        width: 10px;
        height: 10px;
    }

    .flavors-closing {
        padding: 15px;
        margin-top: 25px;
        border-radius: 12px;
        width: 100%;
        overflow: hidden;
    }

    .flavors-closing p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .contact {
        margin: 30px auto;
        padding: 0 10px;
        width: 100%;
        overflow: hidden;
    }

    .contact h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .contact h2::after {
        width: 50px;
        height: 3px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }

    .contact-item {
        padding: 20px;
        border-radius: 12px;
        width: 100%;
    }

    .contact-item:hover {
        transform: translateY(-8px);
    }

    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .contact-item p {
        font-size: 0.8rem;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .contact-item a {
        font-size: 0.85rem;
        word-wrap: break-word;
    }

    footer {
        margin-top: 30px;
        border-top: 2px solid #FFD700;
        width: 100%;
        overflow: hidden;
    }

    .footer-content {
        padding: 20px 10px;
        gap: 15px;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footer-section {
        text-align: center;
        width: 100%;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .footer-section ul li {
        margin-bottom: 5px;
    }

    .footer-section a {
        font-size: 0.8rem;
        word-wrap: break-word;
    }

    .footer-section a:hover {
        transform: none;
    }

    .footer-bottom {
        padding-top: 10px;
        margin-top: 15px;
        font-size: 0.75rem;
        word-wrap: break-word;
    }
}
