:root {
    --primary-red: #d52b1e;
    --dark-red: #711109;
    --text-white: #ffffff;
    --text-black: #000000;
    --bg-white: #ffffff;
    --font-inter: 'Inter', sans-serif;
    --ghost-color: rgba(0, 0, 0, 0.04);
}

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

.overflow-hide {
    overflow: hidden;
}

.bottle-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    background-color: var(--bg-white);
    color: var(--text-black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

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

/* Navbar & Header Animation */
header {
    position: fixed; /* Mudei para fixed para facilitar a barra grudenta */
    top: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    transition: top 0.3s ease, padding 0.3s ease;
}

header.sticky {
    top: 0;
}

.navbar {
    background-color: var(--bg-white);
    width: auto; /* Deixa crescer conforme animação */
    min-width: 100px;
    max-width: 1249px;
    padding: 12px 30px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 33px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Animação de entrada */
    animation: openHeader 1.2s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@keyframes openHeader {
    0% { width: 80px; opacity: 0; transform: scale(0.8); padding: 12px 12px; }
    30% { width: 80px; opacity: 1; transform: scale(1); padding: 12px 12px; }
    100% { width: 90%; opacity: 1; transform: scale(1); padding: 12px 40px; }
}

header.sticky .navbar {
    width: 95%;
    border-radius: 0 0 30px 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    opacity: 0;
    animation: fadeInLinks 0.5s ease 1s forwards;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-red);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Nav State */
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: radial-gradient(circle at center, #ff2a1f 0%, #d52b1e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1600px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 2;
    margin-top: -50px;
}

.bottle-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    width: 400px;
}

.bg-leaf {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    opacity: 1;
    z-index: -1;
}

.bg-leaf img {
    width: 100%;
    height: auto;
}

#rotating-bottle {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.text-block {
    text-transform: uppercase;
    color: var(--text-white);
}

.text-block p {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 2px;
}

.text-block h1 {
    font-size: 3.5rem;
    line-height: 0.9;
    letter-spacing: -2px;
}

.text-block.left {
    text-align: right;
    padding-right: 80px;
}

.text-block.left h1 {
    font-weight: 900;
}

.text-block.right {
    text-align: left;
    padding-left: 80px;
}

.text-block.right h1 {
    font-weight: 400;
}

.text-block.right h1 strong {
    font-weight: 900;
}

.hero-bottom-text {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    z-index: 2;
}

.text-block.bottom h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.text-block.bottom h2 strong {
    font-weight: 900;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* History Section */
.history {
    position: relative;
    padding: 150px 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.ghost-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ghost-text {
    font-size: 12rem;
    font-weight: 900;
    color: var(--ghost-color);
    white-space: nowrap;
    letter-spacing: -5px;
    line-height: 1;
    position: absolute;
    left: -10%;
}

.history-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    z-index: 2;
}

.history-text h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.history-text .highlight {
    color: var(--primary-red);
    font-weight: 900;
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
}

.history-visual {
    position: relative;
    padding: 20px;
}

.history-bg-graphic {
    position: absolute;
    top: 45%;
    right: -20%;
    width: 130%;
    z-index: 1;
    opacity: 1;
}

.history-bg-graphic img {
    width: 100%;
    height: auto;
}

.visual-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* Right column is wider */
    gap: 20px;
    z-index: 2;
}

.grid-item {
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-item.small {
    aspect-ratio: 1 / 0.85; /* Shorter height */
}

.grid-item.tall { 
    grid-row: span 2; 
    height: 100%; 
}

.grid-item.wide { 
    grid-column: span 2; 
    min-height: 200px;
}

/* Fix Straight Grow Image */
.product-card img[alt="GROW"],
.product-item[data-product="grow"] .product-item-bg img {
    transform: rotate(6deg); /* Adds slight tilt to match others */
}

/* Section Divider */
.section-divider {
    position: relative;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    margin-top: -50px;
}

.divisor-img {
    width: 130px;
    height: auto;
}

/* Products Section */
.products {
    background-color: var(--bg-white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 900px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    text-align: center;
    color: var(--text-white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Group Hover Effect: Blur others */
.product-grid:hover .product-card {
    filter: blur(4px) saturate(0.5);
    opacity: 0.5;
}

.product-grid .product-card:hover {
    filter: none;
    saturate: 1.2;
    opacity: 1;
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.product-card.red { background-color: var(--primary-red); }
.product-card.dark { background-color: var(--dark-red); }

.product-info-top p {
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.product-info-top h3 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -3px;
}

.product-image {
    height: 450px;
    margin: 40px 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-image {
    transform: scale(1.15) rotate(5deg);
}

.product-image img {
    height: 100%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

.btn-more {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--text-black);
    padding: 12px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.product-card:hover .btn-more {
    background-color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Kit Section */
.kit-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.kit-banner {
    background-color: var(--primary-red);
    border-radius: 20px;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: var(--text-white);
    align-items: center;
}

.kit-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap; /* Allows wrapping on small screens */
}

.kit-header h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.kit-header .badge {
    font-size: 1.1rem;
    font-weight: 400;
    white-space: nowrap;
    background: rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 8px;
    display: inline-block;
}

.kit-text p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.btn-kit {
    display: inline-block;
    margin-top: 30px;
    background-color: var(--bg-white);
    color: var(--text-black);
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s;
}

.btn-kit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.kit-visual {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
}

.kit-visual img {
    width: 100%;
    max-width: 600px;
    transform: scale(1.1) translateY(10px);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
}

.kit-visual img:hover {
    transform: scale(1.15) translateY(0);
}

/* Footer */
footer {
    background-color: var(--dark-red);
    color: var(--text-white);
    padding-top: 100px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .footer-logo img {
    height: 50px;
    margin-bottom: 40px;
}

.social-links p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.social-links .icons {
    display: flex;
    gap: 15px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: background 0.3s;
}

.icon-circle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.icon-circle:hover {
    background-color: var(--primary-red);
}

.footer-grid h4 {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.7;
}

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

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

.footer-grid ul a {
    text-decoration: none;
    color: var(--text-white) !important;
    font-weight: 400;
}

.footer-grid ul a:hover {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 30px 0;
    text-align: center;
    opacity: 0.6;
}

.fade-out { opacity: 0; transform: scale(0.9) rotate(0deg) !important; }

/* --- PRODUCTS PAGE --- */
.products-page {
    background-color: var(--dark-red);
}

.products-section {
    padding-top: 140px;
    width: 100%;
    min-height: calc(100vh - 140px);
}

.products-container {
    width: 100%;
    height: 100%;
    margin: 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 350px 1fr 400px;
    width: 100%;
    height: calc(100vh - 140px);
    position: relative;
    background-color: var(--primary-red);
    overflow: hidden;
}

/* Sidebar Left: Product List */
.products-sidebar {
    background-color: var(--dark-red);
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}

.product-item {
    position: relative;
    flex: 1;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 40px;
    gap: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background-color: var(--dark-red);
}

.leaf-bg {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: auto;
    opacity: 1;
    transition: transform 0.6s ease;
    z-index: 1;
}

.leaf-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.product-item-bg {
    position: relative;
    width: 100px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin-right: 20px;
}

.product-item-bg img {
    height: 85%;
    object-fit: contain;
    transform: rotate(-10deg);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.4));
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-item-text {
    position: relative;
    z-index: 2;
    text-align: left;
}

.product-item-text .type {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-white);
    opacity: 0.8;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.product-item-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

/* Active State */
.product-item.active {
    background-color: var(--primary-red);
}

.product-item.active .leaf-bg,
.product-item:hover .leaf-bg {
    transform: translateY(-50%) scale(1.1) rotate(5deg);
}

.product-item.active .product-item-bg img,
.product-item:hover .product-item-bg img {
    transform: rotate(0deg) scale(1.15);
}

.product-item.active h2 {
    transform: translateX(5px);
    transition: transform 0.4s ease;
}

/* Center Content */
.product-main-content {
    background-color: transparent;
    position: relative;
    padding: 40px 60px;
    height: 100%;
    display: flex;
    align-items: center;
    /* overflow: visible to allow background to bleed */
}

.bg-graphic-right {
    position: absolute;
    right: -30%;
    top: 50%;
    transform: translateY(-50%);
    width: 1000px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.bg-graphic-right img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info-display {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 3;
}

.info-text-side {
    display: flex;
    flex-direction: column;
}

.product-info-display h1 {
    font-size: 2.2rem;
    color: var(--text-white);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.product-info-display p {
    font-size: 1.1rem;
    color: var(--text-white);
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 25px;
}

.specs-box {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
}

.specs-box h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specs-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.product-visual-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.evolution-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.evolution-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Sidebar Right: Sizes */
.product-sizes-sidebar {
    background-color: transparent;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}

.size-card {
    background-color: var(--bg-white);
    padding: 0 25px;
    flex: 1; /* Distribute items equally to fill height */
    border-radius: 20px;
    display: flex;
    flex-direction: row; /* Horizontal for compact height */
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.size-img {
    height: 130px; /* Increased to make mockups larger */
    max-height: 120%; /* Allows it to grow gracefully within the card */
    display: flex;
    align-items: center;
}

.size-img img {
    height: 100%;
    object-fit: contain;
}

.size-card h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-black);
}

.size-card:hover {
    transform: scale(1.03) translateX(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

@media (max-width: 1400px) {
    .products-layout {
        grid-template-columns: 280px 1fr 320px;
    }
}

@media (max-width: 1100px) {
    .products-page { overflow-y: auto; }
    .products-layout {
        grid-template-columns: 1fr;
        height: auto;
        overflow: visible;
    }
    .products-sidebar, .product-sizes-sidebar {
        height: auto;
        flex-direction: row;
        overflow-x: auto;
        padding: 20px;
        border: none;
    }
    .product-item {
        flex: none;
        padding: 20px;
        min-width: 150px;
        height: 200px;
    }
    .size-card {
        flex: none;
        min-width: 200px;
        height: 120px;
    }
    .product-main-content {
        padding: 40px 20px;
        height: auto;
        overflow: visible;
    }
    .maple-leaf-mask { max-width: 100%; }
}

@media (max-width: 1400px) {
    .products-layout {
        grid-template-columns: 300px 1fr 350px;
    }
}

@media (max-width: 1100px) {
    .products-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .bg-graphic-right {
        display: none !important; /* user requested removal on mobile */
    }

    .products-sidebar {
        position: relative;
        top: 0;
        height: auto;
        flex-direction: row;
        flex-wrap: nowrap; /* Force all buttons in one line */
        justify-content: center;
        align-items: flex-end; 
        padding: 10px 5px 10px; 
        border: none;
        gap: 5px;
        overflow-x: auto; /* allow horizontal scroll if screen is too small, but aim to fit */
    }
    
    /* Small Product Items for Mobile Top Row */
    .product-item {
        flex: 1 1 0; /* equal width, shrink as needed */
        min-width: 0; /* remove min-width to allow shrinking */
        height: 110px; 
        padding: 8px 2px;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 8px;
        margin: 0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .product-item-bg {
        width: 100%;
        height: 50px; 
        margin: 0 auto 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-item-bg img {
        height: 100%;
        width: auto;
        transform: rotate(0deg) !important; 
    }
    
    .leaf-bg {
        display: none !important; 
    }

    .product-item.active {
        transform: scale(1.15) translateY(-5px); 
        z-index: 10;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        background-color: var(--primary-red);
        border-color: rgba(255,255,255,0.2);
    }
    
    .product-item.active h2 {
        transform: none; 
    }
    
    .product-item-text {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .product-item-text p.type {
        font-size: 0.5rem;
        letter-spacing: 0;
        white-space: nowrap;
        display: block; 
        margin-bottom: 2px;
        line-height: 1;
        text-align: center;
    }
    
    .product-item-text h2 {
        font-size: 0.95rem; /* +2px */
        text-align: center;
    }

    .product-main-content {
        padding: 25px 20px 20px; 
    }
    
    .product-info-display {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .info-text-side {
        align-items: center;
    }
    
    .product-info-display h1 {
        font-size: 2rem;
    }

    .product-sizes-sidebar {
        position: relative;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-end;
        gap: 10px;
        padding: 10px;
        border: none;
        height: auto;
        width: 100%;
    }

    .size-card {
        flex: 0 0 calc(33.333% - 7px); /* mathematically perfect for 3 items per row with 10px gap */
        max-width: 120px; 
        min-width: 0;
        padding: 15px 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--bg-white); 
        border-radius: 12px;
    }
    
    .size-card .size-img {
        height: 60px; 
        margin-bottom: 8px;
    }
    
    .size-card h2 {
        font-size: 0.9rem;
        color: var(--text-black); 
        text-align: center;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding-top: 110px; 
    }
    
    .products-sidebar {
        padding: 5px; 
    }
    
    .product-item {
        height: 90px; 
    }

    .product-item-bg {
        height: 40px; 
    }
    
    .product-item-text p.type {
        font-size: 0.45rem;
        letter-spacing: 0;
        white-space: nowrap;
    }
    
    .product-item-text h2 {
        font-size: 0.82rem; /* + ~2px */
    }
    
    .product-info-display h1 {
        font-size: 1.6rem;
    }
    
    .product-info-display p {
        font-size: 0.95rem;
    }
    
    .evolution-container img {
        max-width: 100%;
        height: auto;
        max-height: 350px;
    }
    
    .size-card {
        flex: 0 0 calc(33.333% - 7px); /* force 3 and 2 on small screens */
    }

    .size-card .size-img {
        height: 55px; 
    }
    
    .size-card h2 {
        font-size: 0.8rem;
    }
}

/* --- CONTACT PAGE --- */
.contact-page {
    background-color: var(--primary-red);
}

.contact-hero {
    padding: 150px 0 100px;
    min-height: 100vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: flex-start;
}

.contact-form-container h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 50px;
    font-weight: 900;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background-color: rgba(113, 17, 9, 0.4);
    border: none;
    border-bottom: 2px solid var(--dark-red);
    padding: 18px 25px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: rgba(113, 17, 9, 0.6);
    border-bottom-color: var(--bg-white);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-white);
    pointer-events: none;
    font-size: 0.8rem;
    opacity: 0.5;
}

.contact-form select {
    appearance: none;
    width: 100%;
}

.btn-submit {
    margin-top: 20px;
    background-color: var(--bg-white);
    color: var(--text-black);
    padding: 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background-color: #f0f0f0;
}

/* Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 100px;
}

.info-block {
    color: var(--text-white);
}

.info-block .label {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 10px;
}

.info-block h3 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.info-block .address {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.info-block.social .icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.info-block.social .icon-circle {
    border: 1px solid rgba(255,255,255,0.3);
}

/* Responsive updates for Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-info {
        padding-top: 0;
        text-align: center;
        align-items: center;
    }
    .info-block.social .icons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-container h1 {
        font-size: 2.5rem;
    }
}

/* --- RESPONSIVE DESIGN --- */

/* Notebooks & Large Tablets (up to 1200px) */
@media (max-width: 1200px) {
    .text-block h1 { font-size: 3rem; }
    .product-grid { grid-template-columns: repeat(3, 1fr); height: auto; }
    .history-content { gap: 40px; }
    .kit-banner { padding: 40px; }
}

/* Tablets (up to 992px) */
@media (max-width: 992px) {
    .hamburger { display: flex; }

    /* Ensure header and navbar don't clip the fixed mobile menu */
    header,
    header.sticky {
        overflow: visible !important;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        opacity: 1;
        animation: none;
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-links a { font-size: 1.5rem; font-weight: 700; }
    
    .navbar { 
        width: 90% !important; 
        animation: fadeIn 1s ease forwards !important; 
        overflow: visible !important;
    }
    
    header.sticky .navbar {
        overflow: visible !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.98) !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding-top: 100px;
    }

    .text-block.left, .text-block.right {
        padding: 0;
        text-align: center;
    }

    .bottle-container {
        width: 100%;
        height: 40vh;
        margin: 0 auto;
    }

    .bg-leaf { width: 300px; }

    .history-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .history-bg-graphic {
        width: 100%;
        right: 0;
        opacity: 0.3;
    }

    .kit-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .kit-header { justify-content: center; }

    .kit-visual img {
        width: 80%;
        max-width: 400px;
        transform: translateY(0) !important;
        margin-top: 40px;
    }

    .kit-visual img:hover { transform: scale(1.05) !important; }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .text-block h1 { font-size: 2.2rem; }
    .text-block p { font-size: 1rem; letter-spacing: 2px; }
    
    .hero-bottom-text { margin-top: 20px; }
    .text-block.bottom h2 { font-size: 1.5rem; }

    .product-grid { grid-template-columns: 1fr; }
    .product-card { padding: 60px 20px; }
    .product-info-top h3 { font-size: 4rem; }
    .product-image { height: 350px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand .footer-logo { display: flex; justify-content: center; }
    .social-links .icons { justify-content: center; }

    .ghost-text { font-size: 6rem; left: 0; }
    .history-text h2 { font-size: 2.2rem; }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .navbar { padding: 10px 20px; }
    .logo img { height: 30px; }
    .kit-banner { padding: 30px 20px; }
    .kit-header h2 { font-size: 2rem; }
    .kit-header .badge { font-size: 0.9rem; padding: 5px 12px; }
}

/* --- NUTRITION TABLE SECTION --- */
.nutrition-table-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    color: var(--text-black);
    text-align: center;
}

.nutrition-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.nutrition-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.nutrition-header p {
    font-size: 1.1rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.nutrition-image-container.gray-placeholder {
    width: 100%;
    height: 350px;
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 33px rgba(0, 0, 0, 0.05);
}

.nutrition-image-container.gray-placeholder:hover {
    background-color: #e5e5e5;
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.placeholder-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #888;
    transition: color 0.4s ease;
}

.nutrition-image-container.gray-placeholder:hover .placeholder-icon-box {
    color: var(--primary-red);
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    fill: currentColor;
}

.placeholder-icon-box span {
    font-size: 1.1rem;
    font-weight: 700;
}

.nutrition-download-block {
    margin-top: 10px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 18px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(213, 43, 30, 0.3);
}

.btn-download:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(113, 17, 9, 0.4);
}

.download-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-download:hover .download-icon {
    transform: translateY(2px);
}

/* Responsiveness for nutrition table */
@media (max-width: 768px) {
    .nutrition-header h2 { font-size: 2.2rem; }
    .btn-download { padding: 15px 30px; font-size: 1rem; }
}
