/** Shopify CDN: Minification failed

Line 653:0 Unexpected "}"
Line 1579:0 Unexpected "}"
Line 2382:0 Unexpected "}"

**/
/* AGGRESSIVE ANNOUNCEMENT BAR VISIBILITY FIX */
.announcement-bar {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    background-color: #2b7fff !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 10px 0 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    z-index: 9999 !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.announcement-bar span {
    display: inline-block !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 11px !important;
        padding: 8px 0 !important;
    }
}
:root {
    --hero-mobile-url: url('hero-mobile.jpeg');
    --hero-bg-url: url('hero-mobile.jpeg');
    --primary-blue: #2B7FFF;
    --primary-purple: #B8A3F2;
    --primary-mint: #C5F2E0;
    --text-black: #1A1A1A;
    --white: #FFFFFF;
    --bg-light: #B7D2FF; /* Icy Blue for the whole site */

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Fredoka', sans-serif;

    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-black);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    transition: background-color 0.6s ease;
}

/* Global clean background for the theme */
body {
    background-color: var(--bg-light);
}

@media (max-width: 768px) {
    body {
        background-color: var(--bg-light);
    }
}

html { overflow-x: hidden; width: 100%; }

#popcorn-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 9999;
    pointer-events: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER & NAV ===== */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}



.nav { padding: 0.45rem 0; background: transparent; }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-links.right { justify-content: flex-end; }

.nav-links a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--primary-blue); }

.logo-img { height: 100px; width: auto; transition: var(--transition); }

.menu-toggle { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px; height: 3px;
    background-color: var(--text-black);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-cart-mobile { display: none; align-items: center; gap: 1rem; }
.nav-cart-mobile .cart-icon { font-size: 1.5rem; text-decoration: none; }

.nav-social-icon {
    display: flex;
    align-items: center;
    color: var(--text-black);
    transition: var(--transition);
}
.nav-social-icon:hover { color: var(--primary-blue); transform: scale(1.1); }
.desktop-only { display: block; }

@media (max-width: 968px) {
    .desktop-only { display: none; }
}

/* ===== HERO ===== */
.hero {
    padding: 10rem 0 0;
    background-image: var(--hero-bg-url);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 4rem;
}

.hero-content.container {
    max-width: 1450px;
    margin: 0 auto;
    margin-bottom: 6rem;
}

.hero-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.hero-title .text-blue { color: var(--primary-blue); }
.hero-title .text-black { color: var(--text-black); }

.hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.9rem;
}

.btn-primary { background-color: var(--primary-blue); color: var(--white); }
.btn-primary:hover {
    background-color: var(--text-black);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== SCROLLING TEXT ===== */


.scrolling-text-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
    white-space: nowrap;
    font-weight: 800;
    font-size: 1.15rem;
    animation: scroll 30s linear infinite;
}

.scroll-item { display: flex; align-items: center; gap: 0.8rem; }
.scroll-item svg { flex-shrink: 0; }

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

.scrolling-text-content:last-child { margin-left: -4rem; }

/* ===== PRODUCTS (HOME) ===== */
.products {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.product-card {
    padding: 0.5rem;
    border-radius: 35px;
    text-align: center;
    transition: var(--transition);
    background: transparent !important;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible { opacity: 1; transform: translateY(0); }

.product-card:hover {
    transform: translateY(-10px);
}

.flavor-churros, .flavor-leite, .flavor-cookies { background-color: transparent; }

.product-image-container img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    border-radius: 25px;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-black);
    border: 2px solid var(--text-black);
    font-size: 0.8rem;
    padding: 0.8rem 2rem;
}

.btn-secondary:hover { background-color: var(--text-black); color: var(--white); }

/* ===== BRAND VALUES ===== */
.brand-values {
    padding: 6rem 0;
    background-color: #87CEFA;
    color: var(--text-black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.value-item {
    background-color: rgba(255,255,255,0.4);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: none;
    transition: var(--transition);
    cursor: pointer;
}

.value-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255,255,255,0.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}

.value-item:hover .value-icon { transform: scale(1.2) rotate(5deg); }

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.value-item p { color: rgba(0,0,0,0.7); }

/* ===== PRODUCT PAGE ===== */
.product-page {
    padding: 3rem 0 6rem;
    min-height: 100vh;
    transition: background-color 0.6s ease;
}

.product-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .product-page-grid {
        grid-template-columns: 1fr;
    }
    .product-page-info {
        padding: 1.5rem;
        border-radius: 20px;
        background: transparent;
    }
}

.product-page-info {
    display: flex;
    flex-direction: column;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: none;
}

.product-page-image img {
    width: 100%;
    border-radius: 30px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}

.product-page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.product-page-description {
    font-size: 1.05rem;
    color: rgba(0,0,0,0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-page-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-black);
}

.variant-selector {
    margin-bottom: 1.5rem;
}

.variant-selector label,
.quantity-selector label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.variant-selector select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--text-black);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-main);
    background: var(--white);
    cursor: pointer;
}

.product-page-actions {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.quantity-selector input {
    width: 80px;
    padding: 1rem;
    border: 2px solid var(--text-black);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-main);
    text-align: center;
}

.product-page-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    background: transparent;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer { padding: 6rem 0 2rem; background: var(--white); }

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 4rem;
}

.footer-logo img { height: 90px; }

.footer-links { display: flex; gap: 2.5rem; }

.footer-links a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 600;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--primary-blue); }

.footer-social a { color: var(--text-black); transition: var(--transition); }
.footer-social a:hover { color: var(--primary-blue); transform: scale(1.1); display: inline-block; }

.footer-bottom { text-align: center; font-size: 0.85rem; color: #666; }


/* ===== NEW COMPARISON TABLE (MOBILE FIRST) ===== */
.why-popboomice { padding: 4rem 0; background: var(--bg-light); }

.comparison-card {
    max-width: 600px; /* Mais estreito para focar no conteúdo */
    margin: 0 auto;
    background: #E6F2FF;
    border: 3px solid var(--primary-blue);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.comparison-card-header {
    background-color: var(--primary-blue);
    padding: 1.5rem 0;
}

.comparison-cols-wrapper {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.comparison-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    width: 50%;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid var(--white);
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.9rem;
}

.header-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.comparison-card-body { padding: 1rem 0 2rem; }

.comparison-row {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem 0;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 45%;
}

.row-icon {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    color: var(--primary-blue);
}

.comparison-item p {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin: 0;
    height: 3em; /* Alinhamento vertical das frases */
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots {
    color: var(--primary-blue);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    opacity: 0.6;
}

@media (max-width: 480px) {
    .header-text { font-size: 0.9rem; }
    .comparison-item p { font-size: 0.75rem; }
    .comparison-card { border-radius: 30px; margin: 0 1rem; }
}
    .comparison-card-title { font-size: 1.6rem; margin-bottom: 1.5rem; }
    .comparison-cols-wrapper { flex-direction: column; gap: 1rem; font-size: 1rem; }
    .comparison-col { width: 100%; justify-content: flex-start; }
    .comparison-row { flex-direction: column; }
    .comparison-item { width: 100%; padding: 1.2rem 0.5rem; font-size: 1rem; border-bottom: 1px solid #EEE; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .container { padding: 0 1.5rem; }

    .logo-img { height: 100px; max-width: 55vw; object-fit: contain; }

    .hamburger { display: flex; order: 1; }
    .nav-logo  { order: 2; margin: 0 auto; }
    .nav-cart-mobile { display: block; order: 3; }

    .logo-img { height: 65px; }
    
    .nav-links.left, .nav-links.right {
        display: none;
        position: fixed;
        top: 0; left: -100%;
        width: 85%; max-width: 400px; height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: 10px 0 50px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 0.5rem;
        gap: 2rem;
    }

    .menu-toggle:checked ~ .nav-links.left { display: flex; left: 0; }
    .menu-toggle:checked ~ .nav-links.right {
        display: flex; left: 0; z-index: 999;
        background: transparent; box-shadow: none;
        padding-top: 15rem;
    }

    .menu-toggle:checked + .hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
    .menu-toggle:checked + .hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .hero {
        padding: 0;
        min-height: 100vh;
        height: 100vh;
        position: relative;         /* anchor for absolute children */
        background-image: var(--hero-mobile-url);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        display: block;             /* remove flex so absolute children work cleanly */
        overflow: hidden;
    }

    /* Scrolling text always sticks to very bottom */
    

    /* Text block sits just above the scrolling text */
    .hero-content {
        position: absolute !important;
        bottom: 60px !important;   /* height of scrolling-text bar */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 1.5rem 1.2rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-end !important;
        text-align: center !important;
        gap: 0 !important;
    }

    .hero-image-wrapper { display: none !important; }

    .hero-text {
        padding: 0;
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    /* Mobile order: Title â†’ Button â†’ Subtitle (title above button) */
    .hero-title {
        order: 1;
        font-size: 1.4rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 0;
        letter-spacing: 0;
    }
    .hero-title br { display: none; }
    .hero-title .text-blue, .hero-title .text-black { display: block; }

    .hero-text .btn-primary {
        order: 3;
        margin: 1.5rem 0 0.5rem;
        padding: 0.8rem 1.8rem;
        font-size: 0.75rem;
    }

    .hero-subtitle {
        order: 2;
        font-size: 0.9rem;
        margin: 0.5rem 0 1rem;
        max-width: 95%;
        text-align: center;
        opacity: 0.85;
    }

    .btn-primary { padding: 0.8rem 1.8rem; font-size: 0.75rem; }

    .hero-image-wrapper { order: 1; max-width: 100%; margin: 0 auto; }

    .product-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 1rem; 
    }
    .product-card { 
        padding: 1.2rem 0.8rem; 
    }
    .product-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .price {
        font-size: 1.1rem;
        margin: 0.8rem 0;
    }
    .product-card .btn-secondary {
        padding: 0.6rem 0.8rem;
        font-size: 0.65rem;
        width: 100%;
    }
    .product-image-container img {
        margin-bottom: 1rem;
    }

    .values-grid { 
        display: flex;
        overflow-x: auto;
        gap: 1.2rem;
        padding: 1rem 0 2.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-blue) transparent;
    }

    .values-grid::-webkit-scrollbar { height: 6px; }
    .values-grid::-webkit-scrollbar-track { background: transparent; }
    .values-grid::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 10px; }

    .value-item { 
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 2rem 1.5rem;
    }
    /* Product page mobile */
    .product-page-grid { grid-template-columns: 1fr; gap: 2rem; }
    .product-page { padding: 8rem 0 4rem; }

    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
    .footer-links { flex-direction: column; gap: 1rem; }
}



/* ===== CLEAN RESPONSIVE GRID (FIXED) ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

@media (max-width: 1100px) {
    .product-grid { gap: 0.8rem; }
}

@media (max-width: 900px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
    .product-title { font-size: 1.4rem !important; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
    .product-card { padding: 0.5rem !important; }
    .product-title { font-size: 1.1rem !important; }
}

/* ===== HORIZONTAL VIDEO STORIES (REVERTED & REFINED) ===== */
.video-stories { 
    padding: 6rem 0; 
    background-image: url('bg-popcorn.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Overlay para garantir que os vídeos e títulos fiquem visíveis */
.video-stories::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(222, 235, 255, 0.7); /* Mesma cor Ice-Blue com transparência */
    z-index: 1;
}

.video-stories .container, .video-stories .video-grid {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .video-stories { 
        background-image: url('bg-popcorn-mobile.png'); 
        background-attachment: scroll;
        padding: 4rem 0;
    }
}

.video-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 0 5%;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) transparent;
    -webkit-overflow-scrolling: touch;
}

.video-grid::-webkit-scrollbar { height: 6px; }
.video-grid::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 10px; }

.video-item {
    flex: 0 0 280px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.video-label {
    position: relative;
    width: 100%;
    text-align: center;
    color: var(--primary-blue) !important;
    font-family: var(--font-heading) !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.video-item video {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .video-item { flex: 0 0 85%; }
}




/* ===== NEWSLETTER POPUP (RESTORED) ===== */
.newsletter-popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: var(--transition);
}

.newsletter-popup-overlay.hidden { display: none; }

.newsletter-popup-content {
    background: var(--white);
    width: 90%;
    max-width: 850px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    animation: popupFadeIn 0.5s ease;
}

@keyframes popupFadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.close-popup-btn {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: #eee;
    border: none;
    width: 35px; height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

.newsletter-cols { display: flex; align-items: stretch; }

.newsletter-text-col { flex: 1; padding: 4rem; display: flex; flex-direction: column; justify-content: center; }

.popup-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.1; }

.popup-subtitle { font-size: 1.1rem; color: #666; margin-bottom: 2.5rem; }

.newsletter-input-group { display: flex; flex-direction: column; gap: 1rem; }

.newsletter-input {
    padding: 1.2rem;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.popup-submit-btn { width: 100%; padding: 1.2rem; border-radius: 50px; }

.no-thanks-link {
    background: none; border: none;
    color: #999;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    cursor: pointer;
    text-decoration: underline;
}

.newsletter-image-col { flex: 1; min-height: 100%; }
.newsletter-image-col img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
    .newsletter-cols { flex-direction: column; }
    .newsletter-image-col { display: none; }
    .newsletter-text-col { padding: 3rem 1.5rem; text-align: center; }
    .popup-title { font-size: 1.6rem; }
}

/* ===== HERO & HEADER MOBILE FIX ===== */
@media (max-width: 480px) {
    header .logo img { max-width: 120px !important; }
    .hero-content h1 { font-size: 2.2rem !important; line-height: 1 }
    .hero-content .subtitle { font-size: 1rem !important; margin: 1rem 0 2rem; }
    .hero-content .btn { padding: 1rem 2.5rem !important; font-size: 1rem !important; width: auto !important; }
    .hero { min-height: 100vh !important; padding-top: 4rem !important; }
}

/* ===== COMPARISON TABLE (ULTIMATE 2-COL MOBILE) ===== */
.comparison-card {
    max-width: 800px;
    margin: 4rem auto;
    background: #EAF4FF;
    border: 3px solid var(--primary-blue);
    border-radius: 40px;
    overflow: hidden;
}

.comparison-card-header { background: var(--primary-blue); padding: 1.5rem 0; }

.comparison-cols-wrapper { display: flex; width: 100%; }

.comparison-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.header-icon {
    width: 30px; height: 30px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 0.8rem;
}

.header-text { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; }

.comparison-card-body { padding: 1rem 0; }

.comparison-row {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem 0;
    position: relative;
}

.comparison-item {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.row-icon { font-size: 1.4rem; font-weight: 900; margin-bottom: 0.5rem; color: var(--primary-blue); }

.comparison-item p {
    font-size: 0.95rem; font-weight: 700; color: var(--primary-blue);
    margin: 0; line-height: 1.1;
    min-height: 2.2em; display: flex; align-items: center; justify-content: center;
}

.dots { font-size: 1.2rem; color: var(--primary-blue); opacity: 0.4; letter-spacing: 0.1em; margin-top: 0.5rem; }

@media (max-width: 480px) {
    .comparison-card { border-radius: 30px; margin: 2rem 1rem; }
    .header-text { font-size: 0.85rem; }
    .header-icon { width: 22px; height: 22px; font-size: 0.6rem; }
    .comparison-item p { font-size: 0.72rem; }
    .row-icon { font-size: 1.1rem; }
    .comparison-row { padding: 1rem 0; }
    .dots { font-size: 0.8rem; }
}

/* ===== NAVIGATION & HAMBURGER (FIXED) ===== */
.menu-toggle { display: none; }

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mostrar hamburger apenas no mobile */
@media (max-width: 950px) {
    .hamburger { display: flex; }
    .nav-links.left, .nav-links.right.desktop-only { display: none; }
    
    /* Mostrar os links apenas quando o toggle estiver marcado (estilo gaveta simples) */
    .menu-toggle:checked ~ .nav-links.left {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; width: 80%; height: 100%;
        background: var(--white);
        padding: 6rem 2rem;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (min-width: 951px) {
    .nav-links { display: flex !important; }
}


/* ===== WHY POP BOOM ICE (Comparison Table Refresh) ===== */
.why-popboomice {
    padding: 6rem 0;
    background-color: var(--bg-light); /* Matching the Icy Blue theme */
    text-align: center;
}

.why-popboomice .section-title {
    color: var(--primary-blue);
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 900;
}

.comparison-card {
    max-width: 950px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 40px;
    border: 3px solid #1a4da1; /* Deep Blue Border */
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.comparison-card-header {
    background-color: #1a4da1; /* Solid Deep Blue Header */
    color: var(--white);
    padding: 2rem 1rem;
}

.comparison-cols-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.comparison-col {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.6rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2.5px solid var(--white);
    font-size: 1.2rem;
    font-weight: 900;
}

.comparison-card-body { padding: 1rem 0; background: var(--white); }

.comparison-row {
    display: flex;
    justify-content: space-between;
}

.comparison-item {
    width: 50%;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    font-weight: 700;
    color: #1a4da1; /* Matching the deep blue */
    font-size: 1.25rem;
    position: relative;
}

.comparison-item::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 2rem;
    right: 2rem;
    border-bottom: 2px dotted rgba(26, 77, 161, 0.2);
}

.comparison-row:last-child .comparison-item::after { display: none; }

.small-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.positive .small-icon::before { content: '?'; font-weight: 900; font-size: 1.6rem; }
.negative .small-icon::before { content: '?'; font-weight: 900; font-size: 1.6rem; }

@media (max-width: 900px) {
    .comparison-col { font-size: 1.1rem; gap: 0.8rem; }
    .comparison-item { font-size: 1rem; padding: 1.2rem 1.5rem; }
    .icon-circle { width: 28px; height: 28px; font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .comparison-row { flex-direction: column; }
    .comparison-item { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .comparison-item::after { display: none; }
    .why-popboomice .section-title { font-size: 1.8rem; padding: 0 1rem; }
    .comparison-card { margin: 0 1rem; }
}

/* ===== FINAL KHLOUD-STYLE COMPARISON TABLE ===== */
.comparison-card {
    border: 3px solid #1a4da1;
    border-radius: 40px;
    background: #fff;
    overflow: hidden;
    margin: 4rem auto;
    max-width: 1000px;
}

.comparison-card-header {
    background: #1a4da1;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-around;
    color: #fff;
}

.comparison-col {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.comparison-col .icon-circle {
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.comparison-card-body {
    padding: 2rem 0;
}

.comparison-row {
    display: flex;
    width: 100%;
}

.comparison-item {
    width: 50%;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    text-align: left;
}

.comparison-item .small-icon {
    min-width: 24px;
    color: #1a4da1;
    font-weight: 900;
    font-size: 1.4rem;
    margin-top: -3px;
}

.comparison-item.positive .small-icon::before { content: '?'; }
.comparison-item.negative .small-icon::before { content: '?'; }

.comparison-item span:not(.small-icon) {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    color: #1a4da1;
    border-bottom: 2px dotted rgba(26, 77, 161, 0.3);
    padding-bottom: 0.8rem;
    width: 100%;
}

@media (max-width: 768px) {
    .comparison-col { font-size: 1rem; }
    .comparison-item { padding: 1rem 1.5rem; }
    .comparison-item span:not(.small-icon) { font-size: 0.85rem; }
}

/* ===== HEADER & NAVIGATION REFRESH ===== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
}

.nav-links.left { justify-content: flex-start; }
.nav-links.right { justify-content: flex-end; }

.nav-links a {
    text-decoration: none;
    color: #1a4da1;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
    position: relative;
    font-family: var(--font-heading);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary-blue); }
.nav-links a:hover::after { width: 100%; }

.nav-logo {
    flex: 0 0 auto;
    text-align: center;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover { transform: scale(1.05); }

.cart-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f7ff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .nav-links.left, .nav-links.right.desktop-only { display: none; }
    .nav-container { padding: 0 1.5rem; }
}

/* ===== HEADER LOGO & MOBILE REFINEMENT ===== */
.logo-img {
    height: 70px; /* Increased from 45px on Desktop */
    width: auto;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr; /* 3-column layout to center logo */
        align-items: center;
        gap: 0;
        padding: 0 1rem;
    }
    
    .hamburger { grid-column: 1; justify-self: start; margin: 0; }
    .nav-logo { grid-column: 2; position: relative; }
    .nav-cart-mobile { grid-column: 3; justify-self: end; display: flex !important; }
    
    .logo-img {
        height: 50px; /* Increased for mobile visibility */
    }
}

/* ===== MOBILE HEADER SIMPLIFICATION ===== */
@media (max-width: 768px) {
    .nav-cart-mobile .nav-social-icon { display: none !important; }
    .nav-cart-mobile { gap: 0 !important; }
    .cart-icon { padding: 0.5rem !important; background: transparent !important; }
}


/* Forced Mobile Banner Swap */
@media (max-width: 768px) {
    .hero { background-image: var(--hero-mobile-url) !important; }
}

/* Force hide desktop navigation parts on mobile to avoid duplicates */
@media (max-width: 768px) {
    .nav-links.right { display: none !important; }
}

/* Slim Mobile Header & Start Banner Below Header */
@media (max-width: 768px) {
    .header {
        position: sticky !important; /* Faz o cabeçalho ocupar espaço no fluxo, empurrando o banner para baixo */
        padding: 0.5rem 0 !important; /* Diminui a altura total */
    }
    
    .logo-img {
        height: 40px !important; /* Logo um pouco menor para economizar espaço */
    }
    
    .hero {
        padding-top: 0 !important; /* Remove o padding compensatório, já que agora o banner começa DEPOIS do header */
        min-height: auto !important; /* Ajusta a altura mínima para não sobrar espaço */
    }
}

/* ===== ULTIMATE HORIZONTAL COMPARISON TABLE ===== */
.why-popboomice {
    background-color: var(--bg-light);
    padding: 6rem 0;
}

.comparison-card {
    border: 2px solid #1a4da1;
    border-radius: 40px;
    background: #fff;
    overflow: hidden;
    margin: 0 auto;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.comparison-card-header {
    background: #1a4da1;
    display: flex;
    padding: 1.2rem 0;
    color: #fff;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.comparison-col {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.icon-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.comparison-body {
    padding: 1rem 0;
}

.comparison-row {
    display: flex;
    border-bottom: none;
}

.comparison-item {
    flex: 1;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comparison-item span:not(.small-icon) {
    flex: 1;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a4da1;
    border-bottom: 2px dotted #B7D2FF; /* Linha pontilhada azul conforme a imagem */
    padding-bottom: 4px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.small-icon {
    font-weight: 900;
    font-size: 1.2rem;
}

.pos .small-icon { color: #1a4da1; }
.neg .small-icon { color: #1a4da1; }

@media (max-width: 768px) {
    .comparison-card { margin: 0 1rem; border-radius: 30px; }
    .comparison-col { font-size: 0.8rem; gap: 0.4rem; }
    .comparison-item { padding: 1rem 1rem; gap: 0.5rem; }
    .comparison-item span:not(.small-icon) { font-size: 0.7rem; }
}

/* Final Header Refinement: Bigger Mobile Logo & Slim Bar */
@media (max-width: 768px) {
    .header {
        padding: 0.3rem 0 !important; /* Ainda mais fino para focar no logo */
    }
    
    .logo-img {
        height: 65px !important; /* Logo bem maior para destaque premium */
    }
}


}

/* Khloud-style Slim Header Refinement */
@media (max-width: 768px) {
    .header {
        padding: 0.2rem 0 !important; /* Altura mínima conforme o exemplo */
    }
    
    .logo-img {
        height: 38px !important; /* Logo em tamanho equilibrado e elegante */
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
        gap: 4px;
    }
    
    
}

/* AGGRESSIVE HEADER SIZE RESET (MOBILE) */
@media (max-width: 768px) {
    .header, .nav, .nav-container, .nav-logo {
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
        min-height: 0 !important;
    }
    
    .logo-img {
        height: 28px !important; /* Tamanho mínimo absoluto para o logo */
        margin: 5px 0 !important; /* Pequeno respiro vertical */
    }
    
    .hamburger, .nav-cart-mobile {
        padding: 0 10px !important;
        margin: 0 !important;
    }
}

/* ===== PREMIUM CART PAGE (REDEEMING THE DESIGN) ===== */
.cart-page {
    background-color: var(--bg-light); /* Fundo azul claro suave */
    min-height: 80vh;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.cart-items-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item-card {
    background: #fff;
    border-radius: 25px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    box-shadow: 0 4px 15px rgba(26, 77, 161, 0.05);
    transition: transform 0.3s ease;
}

.cart-item-card:hover {
    transform: translateY(-5px);
}

.cart-item-thumb img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    border-radius: 15px;
    background: #f8fbff;
}

.cart-item-title a {
    font-size: 1.3rem;
    color: #1a4da1;
    text-decoration: none;
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.3rem;
}

.cart-item-variant {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cart-item-price {
    font-weight: 800;
    color: #1a4da1;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.qty-selector {
    display: flex;
    align-items: center;
    background: #f0f7ff;
    border-radius: 50px;
    padding: 0.2rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4da1;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.qty-input {
    padding: 0 1.2rem;
    font-weight: 700;
    color: #1a4da1;
    min-width: 40px;
    text-align: center;
}

.remove-link {
    font-size: 0.75rem;
    color: #ff4444;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.remove-link:hover { opacity: 1; }

/* SIDEBAR / SUMMARY */
.cart-sidebar {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: #fff;
    border: 2px solid #1a4da1;
    border-radius: 30px;
    padding: 2.5rem;
}

.summary-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a4da1;
}

.shipping-goal {
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: #f8fbff;
    border-radius: 15px;
    text-align: center;
}

.shipping-goal p { font-size: 0.9rem; margin-bottom: 0.8rem; }
.shipping-goal span { color: #1a4da1; font-weight: 800; }

.progress-bar {
    height: 8px;
    background: #e1efff;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #1a4da1;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.goal-reached {
    background: #e8f5e9;
    color: #2e7d32;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 600;
}

.grand-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f7ff;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a4da1;
}

.btn-checkout {
    width: 100%;
    margin-top: 2rem;
    padding: 1.4rem !important;
    font-size: 1.1rem !important;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

/* MOBILE RESPONSIVE CART */
@media (max-width: 1024px) {
    .cart-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cart-sidebar { position: static; }
}

@media (max-width: 768px) {
    .cart-item-card { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 1rem;
        border-radius: 20px;
    }
    .cart-item-thumb img { height: 160px; }
    .cart-item-actions { flex-direction: column; gap: 1.5rem; }
}

/* ZERO HEADER SPACE FIX (MOBILE) */
@media (max-width: 768px) {
    .header, .nav, .nav-container, .nav-logo {
        padding: 0 !important;
        margin: 0 !important;
        height: 45px !important; /* Força uma altura fixa bem pequena para toda a barra */
        min-height: 45px !important;
        line-height: normal !important;
    }
    
    .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .logo-img {
        height: 30px !important; /* Logo compacto para caber na barra de 45px */
        margin: 0 !important;
    }
    
    .hamburger, .nav-cart-mobile {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 15px !important;
    }
}

/* FINAL SLIM & ORGANIZED HEADER (MOBILE) */
@media (max-width: 768px) {
    .header, .nav, .nav-container {
        height: 55px !important; /* Altura ideal: slim, mas cabe o logo bem */
        min-height: 55px !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #fff !important;
    }
    
    .nav-container {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
        justify-items: center !important;
    }
    
    .logo-img {
        height: 48px !important; /* Logo maior, preenchendo quase toda a barra de 55px */
        width: auto !important;
        display: block !important;
        margin: 0 !important;
    }
    
    .hamburger {
        grid-column: 1;
        justify-self: start;
        padding-left: 15px !important;
    }
    
    .nav-logo {
        grid-column: 2;
    }
    
    .nav-cart-mobile {
        grid-column: 3;
        justify-self: end;
        padding-right: 15px !important;
        display: flex !important;
    }
}

/* Vertical Centering & Bigger Logo in Slim Bar */
@media (max-width: 768px) {
    .header, .nav, .nav-container, .nav-logo {
        height: 50px !important; /* Aumentei levemente para 50px para o logo brilhar mais */
        min-height: 50px !important;
    }
    
    .logo-img {
        height: 44px !important; /* Logo quase preenchendo a barra */
        margin: 0 !important;
    }
    
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: 50px !important;
        margin: 0 !important;
        padding: 0 15px !important;
        top: 0 !important; /* Garante que não esteja deslocado para cima */
    }
    
    .nav-cart-mobile {
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }
}

/* Coming Soon Badge for Video Stories */
.video-item.coming-soon {
    position: relative;
    overflow: hidden;
}

.video-item.coming-soon video {
    filter: brightness(0.6) grayscale(0.5); /* Diminui o brilho e tira um pouco da cor */
    opacity: 0.8;
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: #1a4da1; /* Azul escuro da marca */
    color: #fff;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 10px;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 2px solid #fff;
    pointer-events: none;
    font-family: var(--font-heading);
}

.video-item.coming-soon .video-label {
    opacity: 0.7;
}



/* ===== ULTIMATE PERFECT GRID COMPARISON ===== */
.comparison-card {
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(26, 77, 161, 0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 3rem auto 0;
    border: 2px solid #1a4da1; /* Borda externa para reforçar o container */
}

.comparison-card-header {
    background: #1a4da1;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    color: #fff;
    text-transform: uppercase;
}

.comparison-col {
    padding: 1.8rem 0;
    text-align: center;
    display: flex;
    flex-direction: column; /* Ícone acima do título no cabeçalho também */
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.comparison-body {
    display: flex;
    flex-direction: column;
}

.comparison-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* EXATAMENTE 2 COLUNAS */
    align-items: stretch !important; /* Garante que ambos os lados tenham a mesma altura */
}

.comparison-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 2rem 1.5rem !important;
    border-bottom: 2px dotted #e1efff; /* Linha pontilhada no fundo de cada item */
    min-height: 140px; /* Garante consistência visual */
}

/* Divisória vertical central inquebrável */
.comparison-item.pos {
    border-right: 2px dotted #e1efff;
}

.comparison-item .small-icon {
    font-size: 1.8rem !important;
    margin-bottom: 0.8rem !important;
    display: block !important;
}

.comparison-item span:not(.small-icon) {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #1a4da1 !important;
    max-width: 200px; /* Evita que o texto espalhe demais */
}

/* Remover a borda pontilhada da última linha */
.comparison-body .comparison-row:last-child .comparison-item {
    border-bottom: none;
}

/* RESPONSIVIDADE MOBILE (GRID PERFEITO) */
@media (max-width: 768px) {
    .comparison-card { margin: 0 1rem; border-radius: 30px; }
    
    .comparison-col { 
        font-size: 0.75rem !important; 
        padding: 1.2rem 0.5rem;
    }
    
    .comparison-item { 
        padding: 1.5rem 0.5rem !important; 
        min-height: 110px !important;
    }
    
    .comparison-item .small-icon { 
        font-size: 1.3rem !important; 
        margin-bottom: 0.5rem !important;
    }
    
    .comparison-item span:not(.small-icon) { 
        font-size: 0.68rem !important; 
        line-height: 1.2;
    }
}

/* ===== ROW-BASED PERFECT GRID COMPARISON ===== */
.comparison-container {
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(26, 77, 161, 0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 3rem auto 0;
    border: 2px solid #1a4da1;
}

.comparison-header-row {
    background: #1a4da1;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* DUAS COLUNAS FIXAS */
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
}

.comparison-header-col {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.comparison-grid-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* SEMPRE 2 COLUNAS LADO A LADO */
    align-items: stretch !important; /* MESMA ALTURA PARA AMBOS OS LADOS */
    border-bottom: 2px dotted #e1efff;
}

.comparison-grid-row:last-child {
    border-bottom: none;
}

.grid-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 2rem 1rem !important;
    height: 100% !important;
}

/* Divisória vertical central */
.grid-item.pos {
    border-right: 1px dotted #e1efff;
}

.grid-item .small-icon {
    font-size: 1.8rem !important;
    margin-bottom: 0.8rem !important;
    display: block !important;
}

.grid-item .item-text {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #1a4da1 !important;
    line-height: 1.3;
    max-width: 180px;
}

/* RESPONSIVIDADE MOBILE (DENTRO DA LINHA) */
@media (max-width: 768px) {
    .comparison-container { margin: 0 1rem; border-radius: 30px; }
    
    .comparison-header-col { 
        font-size: 0.7rem !important; 
        padding: 1rem 0.2rem;
    }
    
    .grid-item { 
        padding: 1.2rem 0.4rem !important; 
    }
    
    .grid-item .small-icon { 
        font-size: 1.2rem !important; 
        margin-bottom: 0.4rem !important;
    }
    
    .grid-item .item-text { 
        font-size: 0.6rem !important; 
    }
}

/* White Background for Comparison Section */
.why-popboomice {
    background-color: #fff !important; /* Muda o fundo geral da seção de azul para branco */
}

/* HERO MOBILE CENTRALIZED VERTICAL LAYOUT */
@media (max-width: 768px) {
    .hero {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important; /* Empurra o conteúdo para a parte de baixo (vão do céu) */
        padding-bottom: 15vh !important; /* Ajuste fino para o conteúdo flutuar no céu azul */
        min-height: 85vh !important;
        background-position: top center !important;
        background-size: cover !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 20px !important;
    }

    .hero-text {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important; /* Espaçamento equilibrado entre elementos */
        width: 100% !important;
    }

    .hero-title {
        font-size: 1.6rem !important; /* Tamanho reduzido para não sobrepor */
        line-height: 1.1 !important;
        margin: 0 !important;
        text-transform: uppercase !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        max-width: 280px !important;
        color: #333 !important;
    }

    .hero .btn {
        margin: 5px 0 0 !important;
        padding: 1rem 2.2rem !important;
        font-size: 0.9rem !important;
        border-radius: 50px !important;
        width: auto !important;
        min-width: 180px !important;
        display: inline-block !important;
    }
    
    .hero-image-wrapper { display: none !important; }
}

/* BARRA DE ATRIBUTOS ENTRE SEÇÕES */
.scrolling-text {
    position: relative !important;
    background: #1a1a1a !important;
    color: #fff !important;
    padding: 0.8rem 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    display: flex !important;
    width: 100% !important;
    z-index: 10 !important;
    margin: 0 !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
}

.scrolling-text-content {
    display: flex !important;
    align-items: center !important;
    gap: 3rem !important;
    padding-right: 3rem !important;
    animation: scroll 25s linear infinite !important;
}

.scroll-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

@media (max-width: 768px) {
    .scrolling-text {
        padding: 0.6rem 0 !important;
    }
    .scroll-item {
        font-size: 0.7rem !important;
        gap: 0.4rem !important;
    }
}

/* HERO MOBILE CONTENT POSITIONING (Lowered near the black bar) */
@media (max-width: 768px) {
    .hero {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important; /* Empurra o conteúdo para baixo */
        padding-bottom: 50px !important; /* Espaço para não grudar na barra preta */
        min-height: 85vh !important;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 20px !important;
    }

    .hero-text {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1 !important;
        margin-bottom: 5px !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
        max-width: 260px !important;
        margin-bottom: 10px !important;
    }

    .hero .btn {
        padding: 0.9rem 2.5rem !important;
        font-size: 0.85rem !important;
        min-width: 200px !important;
        border-radius: 50px !important;
    }
}

/* HERO MOBILE CONTENT POSITIONING (Deep Lowered to Sky Area) */
@media (max-width: 768px) {
    .hero {
        justify-content: flex-end !important;
        padding-bottom: 25px !important; /* Mais perto da barra preta */
        padding-top: 0 !important;
        background-position: center top !important; /* Fixa as embalagens no topo */
    }

    .hero-content {
        padding-top: 45vh !important; /* Empurra o texto para baixo das embalagens */
        margin-bottom: 0 !important;
    }

    .hero-text {
        gap: 8px !important; /* Reduz gaps para o bloco ficar mais compacto */
    }

    .hero-title {
        font-size: 1.25rem !important; /* Fonte menor para não subir nas embalagens */
        line-height: 1.1 !important;
    }

    .hero-subtitle {
        font-size: 0.78rem !important;
        max-width: 240px !important;
        line-height: 1.2 !important;
    }

    .hero .btn {
        padding: 0.7rem 2rem !important;
        font-size: 0.75rem !important;
    }
}




/* MOBILE MENU EXTRA LINKS (Instagram & Carrinho) */
.mobile-only-link {
    display: none !important; /* Escondido por padrão no Desktop */
}

@media (max-width: 950px) {
    .menu-toggle:checked ~ .nav-links.left .mobile-only-link {
        display: block !important;
        margin-top: 1rem !important;
        padding-top: 1rem !important;
        border-top: 1px solid #eeeeee !important;
        font-size: 0.9rem !important;
        opacity: 0.8 !important;
    }
}


}

/* FINAL MOBILE DRAWER FIX: Width 85%, Visible Close Icon & Overlay */
@media (max-width: 950px) {
    /* O ícone hambúrguer precisa ficar ACIMA do menu para funcionar como "X" */
    .hamburger {
        z-index: 10001 !important;
        position: relative !important;
    }

    .menu-toggle:checked ~ .nav-links.left {
        width: 85% !important; /* Não ocupa mais 100% */
        box-shadow: 5px 0 30px rgba(0,0,0,0.2) !important;
        padding-top: 5rem !important; /* Espaço para o ícone fechar no topo */
        justify-content: flex-start !important; /* Itens no topo, não no centro */
        align-items: flex-start !important;
        padding-left: 2rem !important;
    }

    /* Overlay escuro para fechar ao clicar fora (simulado com background no body/shadow) */
    .menu-toggle:checked ~ .nav-container::before {
        content: '';
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
    }
}

/* BRAND IMAGE SECTION (Replacing old blue cards) */
.brand-image-section {
    width: 100% !important;
    overflow: hidden !important;
    line-height: 0 !important; /* Remove gaps em baixo da imagem */
}

.brand-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.mobile-only-img { display: none !important; }
.desktop-only-img { display: block !important; }

@media (max-width: 768px) {
    .mobile-only-img { display: block !important; }
    .desktop-only-img { display: none !important; }
}

/* BRAND COPY TEXT OVER IMAGE (Desktop) */
.brand-image-section {
    position: relative !important;
}

.brand-copy-container {
    position: absolute !important;
    top: 50% !important;
    left: 12% !important; /* Espaço vazio no canto esquerdo da imagem */
    transform: translateY(-50%) !important;
    max-width: 450px !important;
    z-index: 10 !important;
    text-align: left !important;
}

.brand-copy-title {
    font-size: 2.8rem !important;
    line-height: 1 !important;
    margin-bottom: 1.5rem !important;
    color: #000000 !important;
    font-weight: 800 !important;
}

.brand-copy-text {
    font-size: 1.15rem !important;
    color: #444444 !important;
    line-height: 1.5 !important;
    margin-bottom: 2rem !important;
    font-weight: 500 !important;
}

.brand-flavors {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.flavor-tag {
    background: #2b7fff !important;
    color: #ffffff !important;
    padding: 5px 15px !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
}

.text-blue { color: #2b7fff !important; }

@media (max-width: 950px) {
    .brand-copy-container.desktop-only { display: none !important; }
}

/* UPDATE: LARGER FLAVOR TAGS */
.flavor-tag {
    padding: 8px 25px !important; /* Mais preenchimento */
    font-size: 1rem !important;  /* Fonte maior (era 0.8rem) */
    letter-spacing: 0.08em !important;
}

.brand-copy-text {
    max-width: 420px !important; /* Ajuste fino de leitura */
}

/* BRAND INGREDIENTS LIST (Desktop) */
.brand-ingredients-list {
    margin-top: 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.ingredient-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
}

.ingredient-icon {
    font-size: 1.5rem !important;
    line-height: 1 !important;
    padding-top: 5px !important;
}

.ingredient-data h3 {
    color: #1a4da1 !important; /* Azul profundo para os títulos */
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    margin: 0 0 4px 0 !important;
    letter-spacing: 0.05em !important;
}

.ingredient-data p {
    color: #555555 !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* Ajuste fino na largura para não bater na pipoca da imagem */
.brand-copy-content {
    max-width: 480px !important;
}

/* BRAND COPY REFINEMENT (Mobile) */
@media (max-width: 768px) {
    .brand-copy-container {
        position: absolute !important;
        top: 25px !important; /* Posicionado no topo das nuvens */
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 350px !important;
        text-align: center !important;
        z-index: 20 !important;
    }

    .brand-copy-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem !important;
    }

    .brand-copy-text {
        font-size: 0.85rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.4 !important;
    }

    .brand-flavors {
        justify-content: center !important;
        gap: 8px !important;
        margin-bottom: 1.5rem !important;
    }

    .flavor-tag {
        font-size: 0.75rem !important;
        padding: 4px 15px !important;
    }

    .brand-ingredients-list {
        gap: 1rem !important;
        margin-top: 1.5rem !important;
        text-align: left !important; /* Mantém lista alinhada para leitura */
    }

    .ingredient-icon {
        font-size: 1.2rem !important;
    }

    .ingredient-data h3 {
        font-size: 0.9rem !important;
    }

    .ingredient-data p {
        font-size: 0.75rem !important;
    }
}

/* ===== PREMIUM PRODUCT PAGE (Khloud Inspired) ===== */
.product-page {
    padding: 4rem 0;
    min-height: 100vh;
}

.product-page-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
}

/* Esquerda: Imagem Sticky */
.product-page-image {
    position: sticky;
    top: 120px;
}

.image-zoom-container {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.main-product-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-zoom-container:hover .main-product-img {
    transform: scale(1.05);
}

/* Direita: Info Hierárquica */
.product-meta-header {
    margin-bottom: 2rem;
}

.product-category-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #2b7fff;
    margin-bottom: 0.5rem;
}

.product-page-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-rating {
    font-size: 0.9rem;
    font-weight: 600;
}

.rating-count { color: #888; font-weight: 400; }

.product-price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 2rem;
}

.price-current {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.price-old {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: #bbb;
}

.price-unit {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.product-page-description-short {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Variant Pills */
.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 2.5rem;
}

.pill-item {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.pill-item.active {
    border-color: #2b7fff;
    background: #f0f7ff;
    box-shadow: 0 10px 20px rgba(43, 127, 255, 0.1);
}

.pill-title {
    font-weight: 800;
    font-size: 0.95rem;
}

.pill-save {
    font-size: 0.7rem;
    color: #2b7fff;
    font-weight: 800;
    margin-top: 4px;
}

/* Actions & Buttons */
.product-page-actions-v2 {
    display: flex;
    gap: 15px;
    margin-bottom: 3rem;
}

.qty-stepper {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.qty-btn {
    background: #fff;
    border: none;
    padding: 10px 18px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
}

.qty-stepper input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.btn-checkout-main {
    flex: 1;
    background: #2b7fff;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-checkout-main:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
}

/* Badges */
.premium-badges-row {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

.badge-v2 {
    text-align: center;
}

.badge-icon {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: #1a1a1a;
}

/* Accordions */
.product-accordions {
    border-top: 1px solid #e0e0e0;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    color: #1a1a1a;
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 20px;
}

.accordion-item.active .plus {
    transform: rotate(45deg);
}

/* Mobile Fixes */
@media (max-width: 950px) {
    .product-page-grid { grid-template-columns: 1fr; gap: 3rem; }
    .product-page-image { position: relative; top: 0; }
    .product-page-title { font-size: 2.2rem; }
}

/* REMOVER FUNDO BRANCO DO STEPPER DE QUANTIDADE */
.qty-stepper, .qty-btn, .qty-stepper input {
    background: transparent !important;
    background-color: transparent !important;
}

.qty-stepper {
    border-color: rgba(0,0,0,0.1) !important; /* Borda sutil para não sumir no fundo */
}

/* PRODUCT THUMBNAILS GALLERY */
.product-thumbnails-grid {
    display: flex !important;
    gap: 12px !important;
    margin-top: 20px !important;
    flex-wrap: wrap !important;
}

.thumbnail-item {
    width: 80px !important;
    height: 80px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
}

.thumbnail-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.thumbnail-item:hover {
    transform: translateY(-3px) !important;
}

.thumbnail-item.active {
    border-color: #2b7fff !important;
    box-shadow: 0 5px 15px rgba(43, 127, 255, 0.2) !important;
}

/* PRODUCT RECOMMENDATIONS SECTION */
.product-recommendations-section {
    padding: 4rem 0 !important;
    background: #ffffff !important; /* Fundo branco contrastando com o fundo do sabor */
    margin-top: 4rem !important;
    border-top: 1px solid #eee !important;
}

.recommendations-title {
    font-size: 2rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
    color: #1a1a1a !important;
}

.product-recommendations-section .product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
}

@media (max-width: 950px) {
    .product-recommendations-section .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* PADRONIZAÇÃO DE FONTE PARA PREÇOS (Mesma do Título) */
.price-current, .price-old, .product-subtitle, .product-page-price {
    font-family: 'Fredoka', sans-serif !important;
}

/* CORREÇÃO DE VISIBILIDADE DAS RECOMENDAÇÕES */
.product-recommendations-section {
    display: block !important;
    min-height: 400px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-recommendations-section .product-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* REMOVER FUNDO BRANCO DE TODAS AS IMAGENS DE PRODUTO */
.product-image-container, 
.product-card, 
.thumbnail-item,
.image-zoom-container {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
}

/* Remover sombra se houver no container de imagem */
.product-image-container {
    box-shadow: none !important;
}

/* CENTRALIZAR FOTO E MINIATURAS NO MOBILE */
@media (max-width: 950px) {
    .product-page-image {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }

    .image-zoom-container {
        width: 100% !important;
        max-width: 450px !important; /* Limite de largura para não estourar no celular */
        margin: 0 auto !important;
    }

    .product-thumbnails-grid {
        justify-content: center !important;
    }
}

/* COR DO FUNDO DE RECOMENDAÇÕES (Amarelo Vibrante) */
.product-recommendations-section {
    background-color: #fff12b !important; /* Amarelo vibrante equilibrado com o azul #2b7fff */
    border-top: none !important;
}

.recommendations-title {
    color: #1a1a1a !important; /* Garantir contraste do título no amarelo */
}

/* ATUALIZAÇÃO: TOM DE AMARELO EXATO ENVIADO */
.product-recommendations-section {
    background-color: #F7D279 !important; /* Tom exato extraído da imagem do usuário */
    border-top: none !important;
}

/* REAJUSTE: TUDO NO CANTO ESQUERDO NO MOBILE */
@media (max-width: 950px) {
    .product-page-image, 
    .product-page-info,
    .product-thumbnails-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* Alinha no canto esquerdo */
        text-align: left !important;
    }

    .image-zoom-container {
        margin: 0 !important; /* Remove centralização */
        width: 90% !important;
        max-width: none !important;
    }

    .product-thumbnails-grid {
        flex-direction: row !important; /* Miniaturas lado a lado no canto esquerdo */
        justify-content: flex-start !important;
    }

    .product-meta-header, 
    .product-price-container, 
    .product-page-description-short,
    .variant-pills,
    .product-page-actions-v2,
    .premium-badges-row {
        width: 100% !important;
        text-align: left !important;
    }
}
