/* ===================================
   ELLY ICE - CSS STYLESHEET
   ================================== */

/* ===================================
   CSS RESET & BASE STYLES
   ================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --color-primary: #BE1241;
    --color-primary-light: #F64776;
    --color-white: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg-light: #F9F9F9;
    --color-border: #F4F4F4;

    /* Fonts */
    --font-display: 'Pacifico', cursive;
    --font-body: 'Montserrat', sans-serif;

    /* Font Weights */
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===================================
   UTILITY CLASSES
   ================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-family: var(--font-body);
    font-weight: var(--fw-extrabold);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-description {
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

/* ===================================
   HERO SECTION
   ================================== */
.hero {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-light) 100%
    );
    min-height: 100vh;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

/* ===================================
   NAVIGATION
   ================================== */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    position: relative;
    z-index: 100;
}

.nav__logo img {
    height: 60px;
    width: auto;
}

.nav__menu {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav__link {
    font-weight: var(--fw-bold);
    font-size: 1.125rem;
    transition: opacity var(--transition);
}

.nav__link:hover {
    opacity: 0.8;
}

.nav__link--active {
    position: relative;
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-white);
}

.btn--cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#cartCount {
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: var(--fw-extrabold);
}

/* ===================================
   BUTTONS
   ================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: var(--fw-bold);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

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

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

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

.btn--primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(190, 18, 65, 0.3);
}

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

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

/* ===================================
   HERO CONTENT
   ================================== */
.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-md);
    position: relative;
}

.hero__text {
    max-width: 800px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-weight: var(--fw-extrabold);
    font-size: clamp(2rem, 2vw, 4rem);
    margin-bottom: var(--spacing-md);
}

.hero__description {
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.hero__description .highlight {
    font-weight: var(--fw-extrabold);
    text-transform: uppercase;
}

.hero__cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* ===================================
   HERO IMAGE
   ================================== */
.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__icecream {
    max-height: 700px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

/* ===================================
   ABOUT SECTION
   ================================== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.about__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about__title {
    font-family: var(--font-body);
    font-weight: var(--fw-extrabold);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.about__text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

/* ===================================
   LABORATORY SECTION
   ================================== */
.laboratory {
    padding: 0;
    background: var(--color-bg-light);
}

.laboratory__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.laboratory__image {
    overflow: hidden;
}

.laboratory__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.laboratory__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
    max-width: 600px;
}

.laboratory__title {
    font-family: var(--font-body);
    font-weight: var(--fw-extrabold);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.laboratory__text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.laboratory__highlight {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    line-height: 1.6;
}

/* ===================================
   FLAVORS SECTION
   ================================== */
.flavors {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.flavors__title {
    font-family: var(--font-body);
    font-weight: var(--fw-extrabold);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.flavors__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.flavor-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.flavor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.flavor-card__image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.flavor-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.flavor-card:hover .flavor-card__image {
    transform: scale(1.05);
}

.flavor-card__content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.flavor-card__title {
    font-weight: var(--fw-bold);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.flavor-card__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-light);
    flex: 1;
}

/* ===================================
   SEMIFREDDO SECTION
   ================================== */
.semifreddo {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.semifreddo__main-title {
    font-family: var(--font-body);
    font-weight: var(--fw-extrabold);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.semifreddo__subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.semifreddo__intro-box {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.semifreddo__intro-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.semifreddo__section-title {
    text-align: center;
    font-weight: var(--fw-bold);
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xl);
}

.semifreddo__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto var(--spacing-xl);
}

.semifreddo-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.semifreddo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.semifreddo-card__image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.semifreddo-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.semifreddo-card:hover .semifreddo-card__image img {
    transform: scale(1.05);
}

.semifreddo-card__content {
    padding: var(--spacing-lg);
    flex: 1;
    background: var(--color-bg-light);
}

.semifreddo-card__title {
    font-weight: var(--fw-bold);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.semifreddo-card__list {
    list-style: none;
    padding: 0;
}

.semifreddo-card__list li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.semifreddo-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: var(--fw-bold);
}

.semifreddo__cta {
    text-align: center;
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(190, 18, 65, 0.2);
}

/* ===================================
   QUALITY SECTION
   ================================== */
.quality {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-white) 100%);
}

.quality__content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.quality__title {
    font-family: var(--font-body);
    font-weight: var(--fw-extrabold);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.quality__intro {
    font-size: 1.25rem;
    color: var(--color-text-light);
    font-weight: var(--fw-semibold);
    font-style: italic;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quality__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.quality__feature {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}

.quality__feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.quality__icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.quality__feature h3 {
    font-weight: var(--fw-bold);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.quality__feature p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ===================================
   REVIEWS SECTION
   ================================== */

.reviews {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef5f8 0%, #fff 100%);
    width: 100%;
    overflow: hidden;
}

.reviews__container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.reviews__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.reviews__title-wrapper {
    flex: 1;
}

.reviews__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.reviews__rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviews__stars {
    font-size: 1.25rem;
    line-height: 1;
}

.reviews__rating-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.reviews__rating-text span {
    font-weight: 600;
    color: #111827;
}

.reviews__write-btn {
    background: #dc2626 !important;
    border: none !important;
    white-space: nowrap;
}

.reviews__write-btn:hover {
    background: #b91c1c !important;
}

.reviews__carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    padding: 2rem 0;
}

.reviews__carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
    padding: 0 2rem;
}

.review-card {
    min-width: 300px;
    max-width: 300px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #a01248;
}

.review-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-card__logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card__stars {
    font-size: 1rem;
    line-height: 1;
    color: #fbbf24;
}

.review-card__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.25rem;
    min-height: 80px;
}

.review-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
    background: #f3f4f6;
    display: block;
    flex-shrink: 0;
}

.review-card__avatar--fallback {
    background: linear-gradient(135deg, #a01248 0%, #d91d5d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    border-color: #a01248;
}

.review-card__author-info {
    flex: 1;
}

.review-card__author {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.125rem;
}

.review-card__date {
    font-size: 0.75rem;
    color: #9ca3af;
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #374151;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reviews__nav:hover {
    background: #a01248;
    border-color: #a01248;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(160, 18, 72, 0.3);
}

.reviews__nav--prev {
    left: 1rem;
}

.reviews__nav--next {
    right: 1rem;
}

@media (max-width: 1024px) {
    .reviews__carousel {
        gap: 1rem;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .reviews__nav--prev {
        left: 1rem;
    }
    
    .reviews__nav--next {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
    }
    
    .reviews__header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1rem;
    }
    
    .reviews__write-btn {
        width: 100%;
        text-align: center;
    }
    
    .reviews__carousel {
        padding: 0 1rem;
    }
    
    .review-card {
        min-width: 260px;
        max-width: 260px;
        padding: 1.25rem;
    }
    
    .reviews__nav {
        width: 44px;
        height: 44px;
    }
    
    .reviews__nav--prev {
        left: 0.5rem;
    }
    
    .reviews__nav--next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .reviews__carousel {
        padding: 0 0.5rem;
    }
    
    .review-card {
        min-width: 240px;
        max-width: 240px;
        padding: 1rem;
    }
    
    .review-card__text {
        min-height: 60px;
        font-size: 0.8125rem;
    }
    
    .reviews__nav {
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   FOOTER
   ================================== */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: var(--spacing-lg) 0;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.footer__logo {
    height: 50px;
    width: auto;
}

.footer__info {
    text-align: right;
}

.footer__contact {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    opacity: 0.9;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.75rem 0;
    font-size: 0.875rem;
}

.footer__links a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition);
    opacity: 0.8;
}

.footer__links a:hover {
    color: var(--color-primary);
    opacity: 1;
}

.footer__links span {
    color: var(--color-text-light);
    opacity: 0.5;
}

@media (max-width: 640px) {
    .footer__links {
        flex-direction: column;
        gap: 0.375rem;
    }
    
    .footer__links span {
        display: none;
    }
}

.footer__copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer__credit {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

.footer__credit a {
    color: inherit;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer__credit a:hover {
    opacity: 1;
}

.footer__legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__legal a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer__legal a:hover {
    transform: translateY(-5px);
}

.footer__legal img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .footer__legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer__legal img {
        width: 150px !important;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   ================================== */

/* Tablets */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
    }

    .hero__image {
        order: -1;
    }

    .hero__icecream {
        max-height: 500px;
    }

    .nav__menu {
        gap: var(--spacing-md);
    }

    .laboratory__container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .laboratory__content {
        padding: var(--spacing-lg);
    }

    .flavors__grid {
        grid-template-columns: 1fr;
    }

    .semifreddo__grid {
        grid-template-columns: 1fr;
    }

    .quality__features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .quality__feature {
        padding: var(--spacing-lg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    .nav {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .nav__logo {
        margin-bottom: var(--spacing-xs);
    }

    .nav__menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
        width: 100%;
    }

    .nav__link {
        font-size: 0.9375rem;
    }

    .btn--cart {
        font-size: 0.9375rem;
        padding: 0.75rem 1.25rem;
    }

    #cartCount {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }

    .hero__title {
        font-size: 4rem;
    }

    .hero__subtitle {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__cta {
        flex-direction: column;
    }

    .about__text {
        font-size: 1.125rem;
    }

    .flavor-card__image-wrapper {
        height: 300px;
    }

    .footer__main {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer__info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ===================================
   HERO BADGE (NEW)
   ================================== */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(190, 18, 65, 0.15);
}

.hero__badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(190, 18, 65, 0.25);
    background: linear-gradient(135deg, #ffe5e5 0%, #ffd5d5 100%);
}

.hero__badge-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero__badge-text {
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    font-size: 0.95rem;
}

.hero__badge-arrow {
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.hero__badge:hover .hero__badge-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero__badge {
        padding: 0.65rem 1.25rem;
        gap: 0.5rem;
    }
    
    .hero__badge-text {
        font-size: 0.875rem;
    }
}

/* ===================================
   LABORATORY SECTION - REDESIGNED
   ================================== */
.laboratory {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.laboratory__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.laboratory__label {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--fw-bold);
    margin-bottom: 1rem;
}

.laboratory__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--fw-extrabold);
    color: var(--color-text);
    margin-bottom: 1rem;
}

.laboratory__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.laboratory__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.laboratory__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.laboratory__image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.laboratory__overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.laboratory__tag {
    background: white;
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: var(--fw-bold);
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.laboratory__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.laboratory__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: left;
    margin: 0;
}

@media (max-width: 968px) {
    .laboratory__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .laboratory__image {
        height: 400px;
    }
}

/* ===================================
   CONTACT SECTION
   ================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: white;
}

.contact__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.contact__label {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--fw-bold);
    margin-bottom: 1rem;
}

.contact__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--fw-extrabold);
    color: var(--color-text);
    margin-bottom: 1rem;
}

.contact__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact__map {
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__card {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 1rem;
    align-items: start;
    transition: all 0.3s ease;
}

.contact__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact__card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact__card-content {
    flex: 1;
}

.contact__card-title {
    font-size: 1rem;
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact__card-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.contact__link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: var(--fw-bold);
    transition: color 0.3s ease;
}

.contact__link:hover {
    color: var(--color-primary-light);
}

.contact__cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact__cta .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 968px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact__map {
        height: 350px;
    }
}

/* ========================================
   Gallery Carousel Section
   ======================================== */

.gallery-carousel {
    padding: var(--spacing-2xl) 0;
    background: var(--color-background);
    overflow: hidden;
}

.gallery-carousel__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.gallery-carousel__title {
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.gallery-carousel__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Infinite Scroll Animation */
@keyframes scroll {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(calc(-300px * 21));
    }
}

.slider {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    
    &::before,
    &::after {
        content: "";
        height: 100%;
        position: absolute;
        width: 150px;
        z-index: 2;
        pointer-events: none;
    }
    
    &::after {
        right: 0;
        top: 0;
        background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    }

    &::before {
        left: 0;
        top: 0;
        background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    }
}

.slide-track {
    animation: scroll 120s linear infinite;
    display: flex;
    width: calc(300px * 42);
}

.slide {
    height: 250px;
    width: 300px;
    padding: 0 8px;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-carousel__title {
        font-size: 2rem;
    }

    .slide {
        height: 200px;
        width: 250px;
    }
    
    .slide-track {
        width: calc(250px * 42);
    }
    
    @keyframes scroll {
        0% { 
            transform: translateX(0); 
        }
        100% { 
            transform: translateX(calc(-250px * 21));
        }
    }
}

@media (max-width: 480px) {
    .slide {
        height: 180px;
        width: 220px;
    }
    
    .slide-track {
        width: calc(220px * 42);
    }
    
    @keyframes scroll {
        0% { 
            transform: translateX(0); 
        }
        100% { 
            transform: translateX(calc(-220px * 21));
        }
    }
}

/* ========================================
   Social Icons
   ======================================== */

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-text);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon--instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-icon--facebook:hover {
    background: #1877f2;
    color: #fff;
}

.contact__social {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.social-icon--footer {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
}

.social-icon--footer:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ===================================
   VIDEO SECTION
   ================================== */
.video-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.video-section__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-section__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: rgba(190, 18, 65, 0.1);
    border-radius: 50px;
}

.video-section__title {
    font-family: var(--font-body);
    font-weight: var(--fw-extrabold);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.video-section__subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.video-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.video-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.video-card__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for portrait videos */
    background: #000;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.video-card__player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.video-card__player::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.video-card__player::-webkit-media-controls-play-button {
    background-color: var(--color-primary);
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-section {
        padding: var(--spacing-lg) 0;
    }

    .video-section__header {
        padding: 0 var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }

    .video-section__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .video-card__wrapper {
        padding-bottom: 177.78%; /* Maintain portrait aspect ratio */
    }
}

@media (max-width: 480px) {
    .video-section__title {
        font-size: 1.75rem;
    }

    .video-section__subtitle {
        font-size: 1rem;
    }
}
