/* ===== CSS Variables - Mobile First Design System ===== */
:root {
    /* Colors */
    --netflix-red: #E50914;
    --deep-red: #B20710;
    --neon-red: #FF0000;
    --dark-bg: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --text-light-gray: #999999;
    --border-color: rgba(229, 9, 20, 0.2);

    /* Effects - Reduzido para menos neon */
    --neon-glow: 0 0 5px rgba(229, 9, 20, 0.4);
    --neon-glow-strong: 0 0 8px rgba(229, 9, 20, 0.5), 0 0 15px rgba(229, 9, 20, 0.3);
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 4px 12px rgba(229, 9, 20, 0.2);

    /* Typography */
    --font-teko: 'Teko', sans-serif;
    --font-merriweather: 'Merriweather', serif;

    /* Mobile First Spacing (Base: 4px) */
    --spacing-xs: 0.25rem;
    /* 4px */
    --spacing-sm: 0.5rem;
    /* 8px */
    --spacing-md: 1rem;
    /* 16px */
    --spacing-lg: 1.5rem;
    /* 24px */
    --spacing-xl: 2rem;
    /* 32px */
    --spacing-2xl: 3rem;
    /* 48px */
    --spacing-3xl: 4rem;
    /* 64px */

    /* Mobile First Font Sizes */
    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-base: 1rem;
    /* 16px */
    --fs-lg: 1.125rem;
    /* 18px */
    --fs-xl: 1.25rem;
    /* 20px */
    --fs-2xl: 1.5rem;
    /* 24px */
    --fs-3xl: 1.875rem;
    /* 30px */
    --fs-4xl: 2.25rem;
    /* 36px */

    /* Layout */
    --container-padding-mobile: 1rem;
    --container-max-width: 1200px;
    --header-height-mobile: 70px;
    --touch-target-min: 44px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base Styles ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    font-size: 16px;
    /* Base para mobile */
}

body {
    font-family: var(--font-teko);
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 1;
    /* SEM transiÃ§Ã£o - causa delay visual */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--fs-base);
    /* Padding será definido pelos !important acima */
    padding-top: 0;
}

/* Typography Global Override */
h1,
h2,
h3,
h4,
h5,
h6,
.product-name,
.section-title,
.modal-title {
    font-family: var(--font-teko) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Prevent horizontal scroll */
body.no-scroll {
    overflow: hidden;
}

body.fade-out {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

/* ===== Page Loader Spinner - Stranger Things Style ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    visibility: visible;
    pointer-events: all;
    z-index: 999999;
    background: var(--dark-bg);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.page-loader.active {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: all;
    animation: showLoader 0.1s ease forwards;
}

@keyframes showLoader {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Logo container com animação pulsante */
.page-loader-logo-container {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-loader-logo-img {
    width: 100px;
    height: auto;
    max-width: 90vw;
    opacity: 0.85;
    filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.8)) drop-shadow(0 0 40px rgba(229, 9, 20, 0.6)) drop-shadow(0 0 60px rgba(229, 9, 20, 0.4));
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 0.85;
        filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.8)) drop-shadow(0 0 40px rgba(229, 9, 20, 0.6)) drop-shadow(0 0 60px rgba(229, 9, 20, 0.4));
        transform: scale(1);
    }

    25% {
        opacity: 0.95;
        filter: drop-shadow(0 0 25px rgba(229, 9, 20, 0.9)) drop-shadow(0 0 50px rgba(229, 9, 20, 0.7)) drop-shadow(0 0 75px rgba(229, 9, 20, 0.5));
        transform: scale(1.02);
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 30px rgba(229, 9, 20, 1)) drop-shadow(0 0 60px rgba(229, 9, 20, 0.8)) drop-shadow(0 0 90px rgba(229, 9, 20, 0.6)) drop-shadow(0 0 120px rgba(229, 9, 20, 0.4));
        transform: scale(1.05);
    }

    /* Efeito flicker sutil */
    65% {
        opacity: 0.92;
    }

    66% {
        opacity: 1;
    }

    75% {
        opacity: 0.95;
        filter: drop-shadow(0 0 25px rgba(229, 9, 20, 0.9)) drop-shadow(0 0 50px rgba(229, 9, 20, 0.7)) drop-shadow(0 0 75px rgba(229, 9, 20, 0.5));
        transform: scale(1.02);
    }
}

.page-loader-text {
    font-family: var(--font-teko);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--netflix-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.8),
        0 0 20px rgba(229, 9, 20, 0.6),
        0 0 30px rgba(229, 9, 20, 0.4);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}


/* ===== Grid Background ===== */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('/images/fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding-mobile);
}

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: #52c77a;
    color: var(--text-white);
    padding: var(--spacing-md) var(--spacing-md);
    text-align: center;
    font-size: var(--fs-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1004 !important;
    border-bottom: 1px solid #3da862;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    display: flex;
    align-items: center;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 48px;
    height: 100%;
}

.announcement-bar p {
    margin: 0;
    font-family: var(--font-teko);
    letter-spacing: 0.5px;
}

.announcement-close {
    position: absolute;
    right: 0;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.announcement-close:hover {
    transform: scale(1.2);
    color: var(--dark-bg);
}

.announcement-bar.hidden {
    display: none;
}

/* Body padding when announcement bar is visible - CSS PURO, FORÃAR IMEDIATAMENTE */
/* VALOR FIXO - altura do announcement bar (48px) + header (60px) = 108px */
body:has(.announcement-bar:not(.hidden)),
body.has-announcement {
    padding-top: 118px !important;
}

/* Body padding quando NÃO há announcement bar - só header (60px) */
body:not(.has-announcement):not(:has(.announcement-bar:not(.hidden))) {
    padding-top: 70px !important;
}

/* Header SEMPRE abaixo - nunca vai cortar o announcement bar */
body:has(.announcement-bar:not(.hidden)) .header,
body.has-announcement .header,
.announcement-bar:not(.hidden)~.header {
    top: 48px !important;
    z-index: 1003 !important;
}

/* FORÃAR announcement bar SEMPRE no topo */
.announcement-bar:not(.hidden) {
    position: fixed !important;
    top: 0 !important;
    z-index: 1004 !important;
    height: 48px !important;
}

/* ===== Header - Mobile First ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1003;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* SEM TRANSITION no top - causa o "pulo" visual */
}

/* Linha sutil abaixo do header */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.3) 20%, rgba(229, 9, 20, 0.3) 80%, transparent);
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.2);
}

/* Header SEMPRE abaixo do announcement bar quando ele existe */
body:has(.announcement-bar:not(.hidden)) .header,
body.has-announcement .header,
.announcement-bar:not(.hidden)+.header {
    top: 48px !important;
}

.header .container {
    padding: 0 var(--spacing-md);
}

.header-top {
    height: var(--header-height-mobile);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
}

.logo {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}

.logo-img {
    height: 55px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(229, 9, 20, 0.5));
    transition: filter var(--transition-base);
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(229, 9, 20, 0.8));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    flex-shrink: 0;
}

.search-toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--netflix-red);
    color: var(--text-white);
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.search-toggle .icon {
    width: 20px;
    height: 20px;
    stroke: var(--text-white);
    fill: none;
    stroke-width: 2;
    transition: all var(--transition-base);
}

.search-toggle:hover {
    background: var(--netflix-red);
    box-shadow: 0 0 10px var(--netflix-red), 0 0 20px var(--netflix-red), 0 0 30px rgba(229, 9, 20, 0.6);
    transform: scale(1.05);
}

.search-toggle:hover .icon {
    stroke: var(--text-white);
}

.search-toggle:active {
    transform: scale(0.95);
    background: var(--netflix-red);
}

/* Search Bar */
.search-bar {
    display: none;
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    background: var(--dark-gray);
    position: relative;
    z-index: 100;
}

.search-bar.active {
    display: block !important;
}

.search-container {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-white);
    font-size: var(--fs-base);
    font-family: var(--font-teko);
    transition: all var(--transition-base);
}

.search-input:focus {
    outline: none;
    border-color: var(--netflix-red);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
}

.search-submit {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--netflix-red);
    border: none;
    border-radius: 6px;
    color: var(--text-white);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background: var(--deep-red);
    box-shadow: 0 0 15px var(--netflix-red);
}

.search-submit .icon {
    width: 18px;
    height: 18px;
    stroke: var(--text-white);
}

/* Search Results */
.search-results {
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--dark-gray);
    border-left: 3px solid var(--netflix-red);
    padding-left: calc(var(--spacing-md) - 3px);
}

.search-result-image {
    width: 60px;
    height: 60px;
    background: var(--dark-gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    overflow: hidden;
}

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

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-family: var(--font-teko);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    color: #52c77a;
    font-weight: 700;
}

.search-no-results {
    padding: var(--spacing-xl);
    text-align: center;
    color: var(--text-gray);
    font-size: var(--fs-sm);
}

.search-loading {
    padding: var(--spacing-xl);
    text-align: center;
    color: var(--text-gray);
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.search-loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-top-color: var(--netflix-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.cart-icon-wrapper {
    position: relative;
}

.cart-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--netflix-red);
    color: var(--text-white);
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
    position: relative;
    flex-shrink: 0;
}

.bag-icon {
    width: 20px;
    height: 20px;
    stroke: var(--text-white);
    fill: none;
    stroke-width: 2;
    transition: all var(--transition-base);
}

.cart-icon:hover .bag-icon {
    stroke: var(--text-white);
    filter: drop-shadow(0 0 8px rgba(229, 9, 20, 0.8));
    transform: scale(1.1);
}

.cart-icon:hover {
    background: var(--netflix-red);
    box-shadow: 0 0 15px var(--netflix-red), 0 0 30px var(--netflix-red), 0 0 45px rgba(229, 9, 20, 0.8);
    transform: scale(1.05);
}

.cart-icon:hover .bag-icon {
    stroke: var(--text-white);
}

.cart-icon:active {
    transform: scale(0.95);
    background: var(--netflix-red);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--neon-red);
    color: var(--text-white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-weight: 700;
    font-family: var(--font-teko);
    border: 2px solid var(--dark-bg);
}

.mobile-menu-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 2px solid var(--netflix-red);
    border-radius: 4px;
    cursor: pointer;
    padding: var(--spacing-sm);
    -webkit-tap-highlight-color: transparent;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-white);
    transition: all var(--transition-base);
    display: block;
    border-radius: 1px;
}

.mobile-menu-toggle:hover {
    background: var(--netflix-red);
    box-shadow: 0 0 10px var(--netflix-red), 0 0 20px var(--netflix-red);
    transform: scale(1.05);
}

.mobile-menu-toggle.active {
    background: var(--netflix-red);
    border-color: var(--text-white);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--text-white);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--text-white);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* ===== Navigation - Mobile First ===== */
.nav {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    z-index: 999;
}

.nav.active {
    max-height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-list {
    list-style: none;
    padding: var(--spacing-md) 0;
}

.nav-list li {
    border-bottom: 1px solid var(--border-color);
}

.nav-list li:last-child {
    border-bottom: none;
}

.nav-link {
    display: block;
    padding: var(--spacing-md) var(--spacing-lg);
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    font-weight: 500;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: rgba(229, 9, 20, 0.2);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--spacing-lg);
    width: 0;
    height: 2px;
    background: var(--netflix-red);
    box-shadow: var(--neon-glow);
    transition: width var(--transition-base);
}

.nav-link:active {
    background: rgba(229, 9, 20, 0.1);
    color: var(--netflix-red);
    padding-left: var(--spacing-xl);
}

.nav-link:active::after {
    width: calc(100% - var(--spacing-xl));
}

/* ===== Mobile Nav Overlay ===== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ===== Main Navigation - Mobile First ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 999;
    transition: left var(--transition-base);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

.main-nav.active {
    left: 0;
}

.mobile-nav-header {
    padding: var(--spacing-xl) var(--spacing-lg);
    border-bottom: 2px solid rgba(229, 9, 20, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.mobile-nav-logo {
    text-align: left;
}

.netflix-logo {
    font-family: var(--font-teko);
    font-size: var(--fs-base);
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 4px;
    opacity: 0.7;
}

.stranger-logo {
    font-family: var(--font-teko);
    font-size: 28px;
    color: var(--netflix-red);
    font-weight: 700;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.8), 0 0 30px rgba(229, 9, 20, 0.4);
    margin-bottom: 4px;
    line-height: 1;
}

.series-text {
    font-family: var(--font-teko);
    font-size: 10px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

.mobile-nav-close {
    background: transparent;
    border: 1.5px solid var(--netflix-red);
    color: var(--text-white);
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-close:hover {
    background: var(--netflix-red);
    box-shadow: 0 0 10px var(--netflix-red);
    transform: rotate(90deg);
}

.main-nav .nav-list {
    list-style: none;
    padding: var(--spacing-md) 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.main-nav .nav-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 var(--spacing-sm);
}

.main-nav .nav-item:last-child {
    border-bottom: none;
}

.main-nav .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all var(--transition-base);
    background: transparent;
    border-left: 3px solid transparent;
    -webkit-tap-highlight-color: rgba(229, 9, 20, 0.2);
}

.main-nav .nav-link::after {
    content: '›';
    font-size: 1.8rem;
    color: var(--netflix-red);
    transition: transform var(--transition-base);
    font-weight: 300;
}

.main-nav .nav-item.active .nav-link::after {
    content: '‹';
    transform: rotate(0deg);
}

.main-nav .nav-link:active {
    background: rgba(229, 9, 20, 0.1);
    border-left-color: var(--netflix-red);
    padding-left: calc(var(--spacing-lg) + 8px);
}



/* Dropdown Menu Mobile */
.main-nav .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    background: var(--dark-gray);
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 0;
}

.main-nav .nav-item.active .dropdown-menu {
    max-height: 2000px;
}

.main-nav .dropdown-content {
    padding: 0;
}

.main-nav .dropdown-section {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.main-nav .dropdown-section:last-child {
    border-bottom: none;
}

.main-nav .dropdown-section h4 {
    font-family: var(--font-teko);
    font-size: var(--fs-base);
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.main-nav .dropdown-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .dropdown-section li {
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-md);
    position: relative;
}

.main-nav .dropdown-section li::before {
    content: 'â¢';
    position: absolute;
    left: 0;
    color: var(--text-white);
    font-size: var(--fs-lg);
}

.main-nav .dropdown-section a {
    display: block;
    padding: var(--spacing-xs) 0;
    color: var(--text-white);
    text-decoration: underline;
    text-decoration-color: var(--netflix-red);
    font-size: var(--fs-sm);
    font-family: var(--font-teko);
    transition: all var(--transition-base);
}

.main-nav .dropdown-section a:hover,
.main-nav .dropdown-section a:active {
    color: var(--netflix-red);
    text-decoration-color: var(--netflix-red);
    text-shadow: 0 0 8px rgba(229, 9, 20, 0.5);
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio to match 1600x900 images */
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    margin-top: 70px;
    /* Push below fixed header */
    z-index: 1;
}

/* Quando há announcement bar */
body.has-announcement .hero-slider,
body:has(.announcement-bar:not(.hidden)) .hero-slider {
    margin-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xl);
    max-width: 700px;
}

.slide-title {
    font-family: var(--font-teko);
    font-size: var(--fs-4xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 4px 30px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.slide-subtitle {
    font-size: var(--fs-lg);
    color: var(--text-white);
    margin-bottom: var(--spacing-xl);
    font-family: var(--font-teko);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
    opacity: 0.95;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    opacity: 0.8;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-prev {
    left: var(--spacing-lg);
}

.slider-next {
    right: var(--spacing-lg);
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-dots {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all var(--transition-base);
}

.slider-dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--fs-lg);
}

/* Mobile responsiveness for slider */
@media (max-width: 768px) {
    .hero-slider {
        /* Allow aspect ratio to control height */
        height: auto;
        min-height: auto;
    }

    body.has-announcement .hero-slider,
    body:has(.announcement-bar:not(.hidden)) .hero-slider {
        margin-top: 0;
    }

    .slide-title {
        font-size: var(--fs-3xl);
        letter-spacing: 2px;
    }

    .slide-subtitle {
        font-size: var(--fs-base);
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .slider-prev {
        left: var(--spacing-sm);
    }

    .slider-next {
        right: var(--spacing-sm);
    }
}

/* ===== Featured Section ===== */
.featured-section {
    padding: 24px var(--spacing-md);
    background: var(--dark-gray);
    position: relative;
    z-index: 2;
}

/* ===== Categories Section ===== */
.categories-section {
    padding: 24px var(--spacing-md);
    position: relative;
    z-index: 2;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: 16px;
}

.category-card {
    background: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-xl);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.category-card:hover {
    border-color: var(--netflix-red);
    box-shadow: 0 0 20px var(--netflix-red), 0 0 40px var(--netflix-red), 0 0 60px rgba(229, 9, 20, 0.8);
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.5));
}

.category-card h3 {
    font-family: var(--font-teko);
    font-size: var(--fs-xl);
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card:hover h3 {
    color: var(--netflix-red);
}

/* ===== Products Layout with Filters ===== */
.products-section {
    padding: 24px var(--spacing-md);
    position: relative;
    z-index: 2;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.btn-view-all {
    font-family: var(--font-teko);
    font-size: var(--fs-sm);
    color: var(--text-gray);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all var(--transition-base);
    background: transparent;
    white-space: nowrap;
}

.btn-view-all:hover {
    color: var(--netflix-red);
    border-color: var(--netflix-red);
    background: rgba(229, 9, 20, 0.05);
}

/* Section Header Actions (Ver Todos + View Toggle) */
.section-header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.view-all-link {
    font-family: var(--font-teko);
    font-size: var(--fs-sm);
    color: var(--text-gray);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.view-all-link:hover {
    color: var(--netflix-red);
}

/* Show More Button */
.show-more-container {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: transparent;
    border: 1.5px solid var(--netflix-red);
    color: var(--text-white);
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-teko);
    font-size: var(--fs-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
}

.show-more-btn:hover {
    background: var(--netflix-red);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
    transform: translateY(-2px);
}

.show-more-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform var(--transition-base);
}

.show-more-btn:hover svg {
    transform: translateY(3px);
}

.show-more-btn span {
    font-weight: 500;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: transparent;
    border: 1.5px solid var(--netflix-red);
    color: var(--text-white);
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-teko);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    transition: all var(--transition-base);
}

.filter-toggle:hover {
    background: var(--netflix-red);
    box-shadow: 0 0 10px var(--netflix-red);
}

.filter-toggle .icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.products-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-lg);
    display: none;
}

.filters-sidebar.active {
    display: block;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.filters-header h3 {
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    color: var(--netflix-red);
    text-transform: uppercase;
}

.filters-close {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.filters-close:hover {
    color: var(--netflix-red);
    transform: rotate(90deg);
}

.filter-group {
    margin-bottom: var(--spacing-xl);
}

.filter-group h4 {
    font-family: var(--font-teko);
    font-size: var(--fs-base);
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.filter-group label {
    display: block;
    padding: var(--spacing-sm) 0;
    color: var(--text-gray);
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: color var(--transition-base);
}

.filter-group label:hover {
    color: var(--netflix-red);
}

.filter-group input[type="checkbox"] {
    margin-right: var(--spacing-sm);
    accent-color: var(--netflix-red);
}

.products-container {
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(229, 9, 20, 0.15) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-teko);
    font-size: var(--fs-3xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-md);
    color: var(--netflix-red);
    text-shadow: var(--neon-glow);
    line-height: 1.2;
    animation: pulse-glow 2s ease-in-out infinite;
}

.neon-text {
    color: var(--netflix-red);
    text-shadow: var(--neon-glow);
    animation: flicker 3s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 10px var(--netflix-red), 0 0 20px var(--netflix-red), 0 0 30px var(--netflix-red);
    }

    50% {
        text-shadow: 0 0 20px var(--netflix-red), 0 0 40px var(--netflix-red), 0 0 60px var(--netflix-red), 0 0 80px rgba(229, 9, 20, 0.8);
    }
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px var(--netflix-red), 0 0 20px var(--netflix-red), 0 0 30px var(--netflix-red);
    }

    41% {
        opacity: 1;
    }

    42% {
        opacity: 0.8;
    }

    43% {
        opacity: 1;
    }

    45% {
        opacity: 0.7;
    }

    46% {
        opacity: 1;
    }

    97% {
        text-shadow: 0 0 10px var(--netflix-red), 0 0 20px var(--netflix-red), 0 0 30px var(--netflix-red);
    }

    98% {
        text-shadow: 0 0 20px var(--netflix-red), 0 0 40px var(--netflix-red), 0 0 60px var(--netflix-red);
    }

    99% {
        text-shadow: 0 0 10px var(--netflix-red), 0 0 20px var(--netflix-red), 0 0 30px var(--netflix-red);
    }
}

.hero-subtitle {
    font-size: var(--fs-base);
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

/* ===== Buttons - Mobile First ===== */
.btn {
    font-family: var(--font-teko);
    font-size: var(--fs-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: var(--spacing-md) var(--spacing-xl);
    border: 2px solid var(--netflix-red);
    background: var(--netflix-red);
    color: var(--text-white);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
    min-height: var(--touch-target-min);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.btn:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
    background: var(--deep-red);
}

.btn:active {
    transform: scale(0.98);
    background: var(--deep-red);
    border-color: var(--deep-red);
}

.btn-secondary {
    background: transparent;
    border-color: var(--netflix-red);
    color: var(--netflix-red);
}

.btn-secondary:active {
    background: rgba(229, 9, 20, 0.1);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ===== Section Titles - Mobile First ===== */
.section-title {
    font-family: var(--font-teko);
    font-size: var(--fs-2xl);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--netflix-red);
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--netflix-red);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--text-gray);
    text-align: center;
    margin-top: -4px;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ===== Products Grid - Mobile First (2 columns) ===== */
.products-section {
    padding: 24px var(--spacing-md);
    position: relative;
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    width: 100%;
}

.product-card {
    background: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.product-card:hover {
    border-color: var(--netflix-red);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.product-card:active {
    transform: scale(0.98);
    border-color: var(--netflix-red);
    box-shadow: 0 0 20px var(--netflix-red), 0 0 40px var(--netflix-red), 0 0 60px rgba(229, 9, 20, 0.8);
}

.product-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* Square aspect ratio */
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.product-image-wrapper {
    position: relative;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.4), transparent);
    animation: none;
    /* Remover animação por padrão */
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.product-card:hover .product-image::before {
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.6), transparent);
    animation: shimmer 1.5s ease-in-out;
    /* Animar apenas no hover */
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: var(--spacing-md) 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-family: var(--font-teko);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0px;
    text-transform: uppercase;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: var(--fs-xs);
    color: var(--text-light-gray);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-family: var(--font-teko);
    font-size: var(--fs-xl);
    color: #52c77a;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 0 0 8px rgba(82, 199, 122, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1.2;
}

.product-price-old {
    font-size: var(--fs-sm);
    color: var(--text-light-gray);
    text-decoration: line-through;
    font-weight: 400;
    order: -1;
}

.product-payment-info {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-installment {
    font-family: var(--font-teko);
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 400;
}

.payment-pix {
    font-family: var(--font-teko);
    font-size: 11px;
    color: #52c77a;
    font-weight: 600;
    opacity: 0.9;
}

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--netflix-red);
    color: var(--text-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    font-family: var(--font-teko);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: var(--shadow-subtle);
}

.product-badge.discount {
    background: #28a745;
}

.product-badge.new {
    background: var(--netflix-red);
}

.add-to-cart {
    width: 100%;
    padding: var(--spacing-sm);
    font-family: var(--font-teko);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    background: var(--netflix-red);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: var(--touch-target-min);
    -webkit-tap-highlight-color: transparent;
}

.add-to-cart:hover {
    background: var(--deep-red);
    box-shadow: var(--shadow-hover);
    transform: scale(1.02);
}

.add-to-cart:active {
    transform: scale(0.98);
    background: var(--deep-red);
}

/* ===== Cart Drawer - Mobile First ===== */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--dark-gray);
    border-left: 1px solid var(--border-color);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-base);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer.closing {
    right: -100%;
    transition: right 0.3s ease-out;
}

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer-overlay.closing {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.cart-drawer-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-bg);
}

.cart-drawer-header h2 {
    font-family: var(--font-teko);
    font-size: var(--fs-2xl);
    color: var(--netflix-red);
    text-shadow: var(--neon-glow);
    text-transform: uppercase;
    animation: pulse-glow 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.cart-drawer-header h2::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2L3 6V20C3 20.5304 3.21071 21.0391 3.58579 21.4142C3.96086 21.7893 4.46957 22 5 22H19C19.5304 22 20.0391 21.7893 20.4142 21.4142C20.7893 21.0391 21 20.5304 21 20V6L18 2H6Z' stroke='%23E50914' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 6H21' stroke='%23E50914' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 10C16 11.0609 15.5786 12.0783 14.8284 12.8284C14.0783 13.5786 13.0609 14 12 14C10.9391 14 9.92172 13.5786 9.17157 12.8284C8.42143 12.0783 8 11.0609 8 10' stroke='%23E50914' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 5px rgba(229, 9, 20, 0.8));
}

.cart-drawer-close {
    width: var(--touch-target-min);
    height: var(--touch-target-min);
    background: transparent;
    border: 1.5px solid var(--netflix-red);
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
}

.cart-drawer-close:hover {
    background: var(--netflix-red);
    box-shadow: 0 0 15px var(--netflix-red), 0 0 30px var(--netflix-red), 0 0 45px rgba(229, 9, 20, 0.8);
    transform: rotate(90deg) scale(1.05);
}

.cart-drawer-close:active {
    transform: rotate(90deg) scale(0.95);
    background: var(--netflix-red);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-lg);
    -webkit-overflow-scrolling: touch;
}

.cart-item {
    display: flex;
    gap: var(--spacing-md);
    padding: 12px;
    margin-bottom: 12px;
    background: var(--medium-gray);
    border-radius: 8px;
    border-left: 3px solid var(--netflix-red);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: var(--font-teko);
    font-size: var(--fs-base);
    color: var(--text-white);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.cart-item-price {
    color: #52c77a;
    font-weight: 700;
    font-size: var(--fs-lg);
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 0 6px rgba(82, 199, 122, 0.3);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.quantity-btn {
    width: 32px;
    height: 32px;
    background: var(--medium-gray);
    border: 1px solid var(--netflix-red);
    color: var(--text-white);
    border-radius: 6px;
    cursor: pointer;
    font-size: var(--fs-lg);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
}

.quantity-btn:hover {
    background: var(--netflix-red);
    box-shadow: 0 0 10px var(--netflix-red), 0 0 20px var(--netflix-red), 0 0 30px rgba(229, 9, 20, 0.6);
    transform: scale(1.1);
}

.quantity-btn:active {
    background: var(--netflix-red);
    transform: scale(0.95);
}

.quantity-value {
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: var(--deep-red);
    color: var(--text-white);
    border: none;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-teko);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
    margin-top: var(--spacing-xs);
}

.remove-item:hover {
    background: var(--netflix-red);
    box-shadow: 0 0 10px var(--netflix-red), 0 0 20px var(--netflix-red), 0 0 30px rgba(229, 9, 20, 0.6);
    transform: scale(1.02);
}

.remove-item:active {
    background: var(--netflix-red);
    transform: scale(0.98);
}

.cart-drawer-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    background: var(--dark-bg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.cart-total-label {
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    text-transform: uppercase;
    color: var(--text-gray);
}

.cart-total-value {
    font-family: var(--font-teko);
    font-size: var(--fs-2xl);
    color: #52c77a;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(82, 199, 122, 0.4), 0 0 24px rgba(82, 199, 122, 0.2);
    animation: pulse-green-glow 2s ease-in-out infinite;
}

@keyframes pulse-green-glow {

    0%,
    100% {
        text-shadow: 0 0 12px rgba(82, 199, 122, 0.4), 0 0 24px rgba(82, 199, 122, 0.2);
    }

    50% {
        text-shadow: 0 0 16px rgba(82, 199, 122, 0.5), 0 0 32px rgba(82, 199, 122, 0.3);
    }
}

.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.empty-cart {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--text-gray);
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}

.empty-cart-text {
    font-size: var(--fs-lg);
    margin-bottom: var(--spacing-md);
}

/* ===== Footer - Mobile First ===== */
/* ===== Footer - Stranger Things Style ===== */
.footer {
    background: #000000;
    border-top: none;
    padding: 32px var(--spacing-md) 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer .container {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Logo */
.footer-logo {
    margin-bottom: 8px;
}

.footer-logo-img {
    width: 100% !important;
    max-width: 180px !important;
    height: auto !important;
}

/* Links Menu */
.footer-links-menu {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.footer-link {
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    font-weight: 500;
    color: #E50914;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
}

.footer-link:hover {
    color: #ff1a1a;
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.6);
}

.footer-link:active {
    color: #cc0000;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    text-decoration: none;
}

.footer-social-icon svg {
    width: 40px;
    height: 40px;
    fill: #E50914;
    transition: all var(--transition-base);
}

.footer-social-icon:hover svg {
    fill: #ff1a1a;
    filter: drop-shadow(0 0 8px rgba(229, 9, 20, 0.8));
    transform: scale(1.1);
}

.footer-social-icon:active svg {
    transform: scale(0.95);
    fill: #cc0000;
}

/* Language Selector */
.footer-languages {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.footer-lang {
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: #E50914;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: all var(--transition-base);
}

.footer-lang.active {
    color: #ff1a1a;
    text-shadow: 0 0 8px rgba(229, 9, 20, 0.6);
}

.footer-lang:hover {
    color: #ff1a1a;
}

.footer-lang:active {
    color: #cc0000;
}

/* Copyright */
.footer-copyright {
    border-top: 1px solid rgba(229, 9, 20, 0.2);
    padding-top: var(--spacing-lg);
    width: 100%;
}

.footer-copyright p {
    font-family: var(--font-teko);
    font-size: var(--fs-xs);
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .footer-logo-img {
        max-width: 140px !important;
    }

    .footer-links-menu {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }

    .footer-link {
        font-size: var(--fs-base);
    }

    .footer-social-icon svg {
        width: 32px;
        height: 32px;
    }

    .footer-languages {
        gap: var(--spacing-sm);
    }

    .footer-lang {
        font-size: var(--fs-base);
    }
}

/* ===== Other Sections ===== */
.about-section,
.contact-section {
    padding: 24px var(--spacing-md);
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: var(--fs-base);
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.contact-content {
    text-align: center;
}

.contact-content p {
    font-size: var(--fs-base);
    color: var(--text-gray);
    margin-bottom: 16px;
}

/* ===== Responsive - Tablet and Desktop ===== */
@media (min-width: 768px) {
    :root {
        --container-padding-mobile: 2rem;
        --fs-3xl: 2.5rem;
        --fs-4xl: 3rem;
    }

    html {
        font-size: 18px;
    }

    .header .container {
        padding: 0 var(--spacing-lg);
    }

    .logo-img {
        height: 60px;
        max-width: 280px;
    }

    .main-nav {
        position: static;
        left: 0 !important;
        width: 100%;
        height: auto;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        border-top: 1px solid var(--border-color);
        display: block !important;
        transform: none !important;
        transition: none !important;
    }

    .mobile-nav-header {
        display: none;
    }

    .mobile-nav-overlay {
        display: none;
    }

    .main-nav .nav-list {
        flex-direction: row;
        padding: 0;
        border: none;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        width: 100%;
        flex-wrap: nowrap;
    }

    .main-nav .nav-item {
        border-bottom: none;
        position: relative;
        border-left: none;
        border-right: none;
        margin: 0;
        width: auto;
        min-width: auto;
        max-width: none;
        flex-shrink: 0;
    }

    .main-nav .nav-link {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--fs-base);
        display: inline-block;
        justify-content: normal;
        font-weight: 600;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        white-space: nowrap;
        word-break: keep-all;
        overflow: visible;
    }

    .main-nav .nav-link::after {
        display: none !important;
        content: none !important;
    }

    .main-nav .nav-link:hover {
        color: var(--netflix-red);
        text-shadow: 0 0 10px var(--netflix-red), 0 0 20px var(--netflix-red);
        padding-left: var(--spacing-lg);
        background: transparent;
    }

    .main-nav .nav-link:active {
        padding-left: var(--spacing-lg);
    }

    .main-nav .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 600px;
        background: var(--dark-gray);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: var(--spacing-xl);
        display: none;
        max-height: none;
    }

    .main-nav .nav-item:hover .dropdown-menu {
        display: block;
    }

    .main-nav .dropdown-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-xl);
        padding: 0;
    }

    .main-nav .dropdown-section {
        margin-bottom: 0;
        border-bottom: none;
        padding: 0;
    }

    .main-nav .dropdown-section li::before {
        display: none;
    }

    .main-nav .dropdown-section a {
        color: var(--text-gray);
        text-decoration: none;
        padding-left: 0;
    }

    .main-nav .dropdown-section a:hover {
        color: var(--netflix-red);
        text-shadow: 0 0 8px rgba(229, 9, 20, 0.5);
    }

    .mobile-menu-toggle {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        flex: 1;
    }

    .newsletter-form button {
        width: auto;
        min-width: 150px;
    }

    .products-layout {
        grid-template-columns: 250px 1fr;
    }

    .filters-sidebar {
        display: block;
        position: sticky;
        top: calc(var(--header-height-mobile) + var(--spacing-xl));
        align-self: start;
    }

    .filter-toggle {
        display: none;
    }

    .hero-banner {
        min-height: 500px;
    }

    .hero-title {
        font-size: var(--fs-4xl);
    }

    .section-title {
        font-size: var(--fs-3xl);
    }

    .cart-drawer {
        width: 450px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-bar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-gray);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .logo {
        justify-content: flex-start;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

/* Quando há announcement bar - 48px announcement + 60px header + 48px spacing = 156px */
body:has(.announcement-bar:not(.hidden)) .hero-banner,
body.has-announcement .hero-banner {
    padding-top: 156px !important;
}

/* ===== PRODUCT PAGE STYLES ===== */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.product-loading {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--text-gray);
}

.product-loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--netflix-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-md);
}

.product-images {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Carousel/Slider principal */
.product-carousel-main {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 400px;
    max-height: 70vh;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-carousel-main img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

/* Botões de navegação do carousel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--netflix-red);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all var(--transition-base);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--netflix-red);
    box-shadow: 0 0 20px var(--netflix-red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

/* Thumbnails */
.product-carousel-thumbnails {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding: var(--spacing-sm) 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.product-carousel-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.product-carousel-thumbnails::-webkit-scrollbar-track {
    background: var(--dark-gray);
    border-radius: 3px;
}

.product-carousel-thumbnails::-webkit-scrollbar-thumb {
    background: var(--netflix-red);
    border-radius: 3px;
}

.product-thumbnail {
    min-width: 80px;
    width: 80px;
    height: 80px;
    background: var(--medium-gray);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-thumbnail.active {
    border-color: var(--netflix-red);
    box-shadow: 0 0 10px var(--netflix-red);
}

.product-thumbnail:hover {
    border-color: var(--netflix-red);
    transform: scale(1.05);
}

/* Product Info Section */
.product-info-section {
    width: 100%;
}

.product-title {
    font-family: var(--font-teko);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.product-price-large {
    font-family: var(--font-teko);
    font-size: var(--fs-4xl);
    color: #52c77a;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 0 12px rgba(82, 199, 122, 0.4);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.product-price-old {
    font-size: var(--fs-xl);
    text-decoration: line-through;
    color: var(--text-gray);
    opacity: 0.7;
}

.product-price-installments {
    font-family: var(--font-teko);
    font-size: var(--fs-sm);
    color: var(--text-gray);
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-price-installments .installment-line {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-price-installments .pix-line {
    color: #52c77a;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-price-installments .payment-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.product-price-installments .installment-line .payment-icon {
    stroke: var(--text-gray);
}

.product-price-installments .pix-line .payment-icon {
    fill: #52c77a;
}

/* Installments Accordion */
.installments-accordion {
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--dark-gray);
}

.installments-toggle {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-family: var(--font-teko);
    font-size: var(--fs-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
}

.installments-toggle:hover {
    background: rgba(229, 9, 20, 0.05);
    color: var(--netflix-red);
}

.installments-toggle-text {
    font-weight: 600;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
    mix-blend-mode: normal;
    background: #FFFFFF;
}

.installments-arrow {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform var(--transition-base);
}

.installments-accordion.expanded .installments-arrow {
    transform: rotate(180deg);
}

.installments-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    background: var(--medium-gray);
}

.installments-accordion.expanded .installments-content {
    max-height: 500px;
}

.installments-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-teko);
}

.installments-table thead {
    background: rgba(229, 9, 20, 0.1);
    border-bottom: 2px solid var(--border-color);
}

.installments-table th {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    font-family: var(--font-teko);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--netflix-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.installments-table th:last-child,
.installments-table td:last-child {
    text-align: right;
}

.installments-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition-fast);
}

.installments-table tbody tr:hover {
    background: rgba(229, 9, 20, 0.05);
}

.installments-table tbody tr:last-child {
    border-bottom: none;
}

.installments-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--fs-sm);
    color: var(--text-gray);
}

.installments-table .installment-count {
    color: var(--text-white);
    font-weight: 600;
}

.installments-table .installment-value {
    color: var(--text-white);
    font-weight: 600;
}

.installments-table .installment-total {
    color: var(--text-light-gray);
    font-size: var(--fs-xs);
}

.installments-table .no-interest {
    color: var(--text-gray);
    font-size: 10px;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.installments-table .with-interest {
    color: var(--text-light-gray);
    font-size: 10px;
    display: block;
    margin-top: 2px;
}

/* Product Description Section */
.product-description-section {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-section-title {
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    opacity: 0.7;
}

.product-description-full {
    font-size: var(--fs-base);
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.product-description-full p {
    margin-bottom: var(--spacing-md);
}

/* Product Specs */
.product-specs {
    background: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.product-specs h3 {
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    color: var(--netflix-red);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

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

.spec-label {
    color: var(--text-gray);
    font-size: var(--fs-sm);
}

.spec-value {
    color: var(--text-white);
    font-size: var(--fs-sm);
    font-weight: 600;
}

/* Variant Selector */
.variant-selector {
    margin-bottom: 16px;
}

.variant-label {
    display: block;
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    color: var(--text-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.variant-option {
    min-width: 60px;
    padding: var(--spacing-sm) var(--spacing-md);
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-white);
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.variant-option:hover:not(.disabled) {
    border-color: var(--netflix-red);
    color: var(--netflix-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

.variant-option.selected {
    background: var(--netflix-red);
    border-color: var(--netflix-red);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

.variant-option.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    position: relative;
}

.variant-option.disabled::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--text-gray);
    transform: rotate(-45deg);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.quantity-selector label {
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    text-transform: uppercase;
    color: var(--text-white);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-xs);
    background: var(--dark-gray);
}

.quantity-btn-large {
    width: 50px;
    height: 50px;
    background: var(--medium-gray);
    border: 2px solid var(--netflix-red);
    color: var(--text-white);
    border-radius: 8px;
    cursor: pointer;
    font-size: var(--fs-2xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.quantity-btn-large:hover {
    background: var(--netflix-red);
    box-shadow: 0 0 15px var(--netflix-red);
    transform: scale(1.05);
}

.quantity-btn-large:active {
    transform: scale(0.95);
}

.quantity-value-large {
    font-family: var(--font-teko);
    font-size: var(--fs-2xl);
    font-weight: 600;
    min-width: 60px;
    text-align: center;
    color: var(--text-white);
}

/* Add to Cart Button - VERMELHO COM NEON */
.add-to-cart-large {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    font-weight: 700;
    text-transform: uppercase;
    background: var(--netflix-red);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 2px;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3),
        0 0 0 0 rgba(82, 199, 122, 0.4);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    animation: green-outline-pulse 2.5s ease-in-out infinite;
}

@keyframes green-outline-pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3),
            0 0 0 0 rgba(82, 199, 122, 0);
    }

    50% {
        box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3),
            0 0 0 3px rgba(82, 199, 122, 0.6),
            0 0 8px rgba(82, 199, 122, 0.3);
    }
}

.add-to-cart-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 26, 26, 0.15), transparent);
    transform: rotate(45deg);
    animation: subtle-shine 3s ease-in-out infinite;
}

@keyframes subtle-shine {

    0%,
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.add-to-cart-large:hover {
    background: var(--deep-red);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.6),
        0 0 30px rgba(229, 9, 20, 0.4),
        0 0 40px rgba(229, 9, 20, 0.2);
    transform: translateY(-2px);
    animation: none;
}

.add-to-cart-large:active {
    transform: translateY(0) scale(0.98);
    background: var(--deep-red);
}

/* CEP Calculator */
.cep-calculator {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.cep-input-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cep-icon-container {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.cep-icon-container:hover {
    border-color: var(--netflix-red);
    background: rgba(229, 9, 20, 0.05);
}

.cep-icon {
    width: 20px;
    height: 20px;
    color: var(--netflix-red);
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(229, 9, 20, 0.4));
}

.cep-input {
    flex: 1;
    min-width: 120px;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-white);
    font-family: var(--font-teko);
    font-size: var(--fs-sm);
    transition: all var(--transition-base);
    box-sizing: border-box;
}

.cep-input:focus {
    outline: none;
    border-color: var(--netflix-red);
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.3);
}

.cep-input::placeholder {
    color: var(--text-light-gray);
}

.cep-calculate-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-white);
    font-family: var(--font-teko);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.cep-calculate-btn:hover {
    background: var(--netflix-red);
    border-color: var(--netflix-red);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.4);
}

.cep-calculate-btn:active {
    transform: scale(0.98);
}

.cep-results {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cep-location {
    font-size: var(--fs-xs);
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.cep-location svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-gray);
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.shipping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all var(--transition-base);
}

.shipping-option:hover {
    border-color: rgba(229, 9, 20, 0.3);
    background: rgba(229, 9, 20, 0.05);
}

.shipping-option-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.shipping-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.shipping-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--text-gray);
}

.shipping-details {
    display: flex;
    flex-direction: column;
}

.shipping-name {
    font-family: var(--font-teko);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shipping-time {
    font-size: var(--fs-xs);
    color: var(--text-light-gray);
}

.shipping-price {
    font-family: var(--font-teko);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-white);
}

.shipping-price.free {
    color: #52c77a;
}

.cep-error {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 6px;
    color: var(--netflix-red);
    font-size: var(--fs-xs);
}

.cep-loading {
    margin-top: var(--spacing-md);
    padding: var(--spacing-lg);
    text-align: center;
    color: var(--text-gray);
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.cep-loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-top-color: var(--netflix-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Related Products */
.related-products {
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (min-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }

    .product-carousel-main {
        min-height: 500px;
        max-height: 80vh;
    }

    .product-title {
        font-size: var(--fs-3xl);
    }

    .product-price-large {
        font-size: 4rem;
    }

    .product-thumbnail {
        min-width: 100px;
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1024px) {
    .product-carousel-main {
        min-height: 600px;
    }
}

/* ===== GLOBAL OVERFLOW FIX ===== */
html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

body {
    max-width: 100vw !important;
}

/* Garantir que imagens e mídia nunca estourem - EXCETO logo */
img:not(.logo-img),
video,
iframe,
embed,
object {
    max-width: 100% !important;
}

/* Skeleton Loading Styles */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5rem;
    background: #2a2a2a;
    border-radius: 4px;
}

.skeleton-rect {
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Especificamente para imagens de produto */
.product-carousel-main img,
.product-thumbnail img,
.product-image img {
    height: auto !important;
}

/* Containers que podem ter conteúdo largo */
.product-container,
.product-layout,
.product-images,
.product-carousel,
.product-carousel-main,
.container {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* ===== View Toggle (Grid/Carousel) ===== */
.view-toggle {
    display: flex;
    gap: 4px;
    background: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 4px;
}

.view-toggle-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
}

.view-toggle-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.view-toggle-btn:hover {
    background: rgba(229, 9, 20, 0.1);
    color: var(--netflix-red);
}

.view-toggle-btn.active {
    background: var(--netflix-red);
    color: var(--text-white);
}

.view-toggle-btn:active {
    transform: scale(0.95);
}

/* ===== Carousel (Netflix Style) ===== */
.products-carousel {
    position: relative;
    margin-top: var(--spacing-md);
}

.carousel-track-container {
    overflow: hidden;
    margin: 0 calc(-1 * var(--spacing-md));
    width: calc(100% + 2 * var(--spacing-md));
    position: relative;
}

.carousel-track {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0 4px 20px;
    /* Margem esquerda + espaço para sombra */
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

/* Cards do carrossel: imagem QUADRADA como no grid */
.carousel-track .product-image {
    padding-bottom: 100%;
    /* QUADRADO 1:1 - IGUAL AO GRID */
}

/* Imagens do carrossel: COMPLETAS sem cortar - IGUAL AO GRID */
.carousel-track .product-image img {
    object-fit: contain;
    /* Mostrar produto COMPLETO sem cortar */
    object-position: center;
}

/* Cards do carrossel: mais largos mas proporcionais */
.carousel-track .product-card {
    flex: 0 0 auto;
    width: 70%;
    /* Largura ajustada para mobile */
    max-width: 280px;
    /* Tamanho máximo adequado */
}

/* TEXTOS DO CARROSSEL: MESMO TAMANHO DO GRID - SEM CUSTOMIZAÇÃO */
/* Mantém os tamanhos padrão do .product-info, .product-name, .product-price, etc */

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.3);
    /* Bem transparente - quase invisível */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Borda quase invisível */
    color: rgba(255, 255, 255, 0.5);
    /* Ícone bem suave */
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 100;
    -webkit-tap-highlight-color: transparent;
    opacity: 0.4;
    /* Muito transparente por padrão */
}

.carousel-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.carousel-nav-btn:hover {
    background: rgba(229, 9, 20, 0.8);
    border-color: var(--netflix-red);
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
    /* Só fica visível no hover */
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 4px;
    /* Bem próximo da borda */
}

.carousel-next {
    right: 4px;
    /* Bem próximo da borda */
}

/* Desktop: Mais cards visíveis no carrossel - mantendo proporção quadrada */
@media (min-width: 768px) {
    .carousel-track .product-card {
        width: 32%;
        /* ~3 cards visíveis no tablet */
        max-width: 320px;
    }
}

@media (min-width: 1024px) {
    .carousel-track .product-card {
        width: 24%;
        /* ~4 cards visíveis no desktop */
        max-width: 340px;
    }
}

@media (min-width: 1400px) {
    .carousel-track .product-card {
        width: 19%;
        /* ~5 cards visíveis em telas muito grandes */
        max-width: 360px;
    }
}

/* Cache buster: Wed Jan  8 03:15:00 -03 2026 */

/* Variants Styling */
.variant-block-wrapper label {
    font-family: var(--font-teko);
    font-size: 1.2rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

.variant-block-wrapper select {
    font-family: var(--font-teko);
    /* User requested Teko */
    padding: 12px;
    border-radius: 4px;
    background: var(--medium-gray);
    color: var(--text-white);
    border: 1px solid var(--light-gray);
    font-size: 1.2rem;
    /* Increased for Teko legibility */
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    text-transform: uppercase;
    /* Teko looks better uppercase often */
}

.variant-block-wrapper select:focus {
    border-color: var(--netflix-red);
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

.variant-block-wrapper select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.variant-block-wrapper select option {
    background: var(--dark-gray);
    color: var(--text-white);
}

#variantOptions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.variant-block-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}