/* === MONSTERS SPORT - DESIGN SYSTEM === */
/* Inspirado no estilo ATK Brasil: fundo branco, header preto, verde como destaque */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --green: #4CD300;
    --green-dark: #3eb300;
    --green-light: #5efd00;
    --green-glow: 0 0 20px rgba(76,211,0,0.3);
    --black: #000000;
    --black-soft: #1A1A1A;
    --white: #FFFFFF;
    --bg: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-card: #FFFFFF;
    --border: #E0E0E0;
    --border-light: #F0F0F0;
    --text: #111111;
    --text-muted: #666666;
    --text-dim: #999999;
    --danger: #E53935;
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.25s ease;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
}

a { text-decoration: none; color: inherit; }

/* Evita zoom automatico no mobile (iOS/Android) ao clicar nos inputs */
input, select, textarea {
    font-size: 16px !important;
}

/* === TOP BAR (BARRA DE ANUNCIO) === */
.top-bar {
    background: var(--white);
    color: var(--black);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.top-bar span { color: var(--green-dark); }

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0 24px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    color: var(--white);
    text-decoration: none;
    line-height: 1;
}

.logo-bold {
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-light {
    font-weight: 300;
    margin-left: 2px;
    font-size: 20px;
    display: flex;
    align-items: center;
    position: relative;
    top: -4px;
}

.nav {
    display: flex;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 24px 12px;
    transition: var(--transition);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.nav-item:hover,
a.nav-item:hover,
div.nav-item:hover {
    color: var(--green);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    width: 1000px;
    padding: 32px;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    cursor: default;
    border-top: 2px solid var(--green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-item:hover .mega-menu {
    display: grid;
    animation: fadeIn 0.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

.mega-link {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
    transition: var(--transition);
}

.mega-link:hover {
    color: var(--black);
    padding-left: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-icon {
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon:hover {
    color: var(--green);
    transform: translateY(-2px);
}

.cart-trigger { position: relative; }

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--white);
    color: var(--black);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* === HERO BANNER === */
.hero {
    background: linear-gradient(135deg, #000000 0%, #0a2e14 50%, #000000 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,200,83,0.12) 0%, transparent 70%);
}

/* Linhas diagonais estilo esportivo */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: rgba(0,200,83,0.04);
    transform: skewX(-12deg);
}

.hero-badge {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.hero h1 span { color: var(--green); }

.hero p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto 36px;
    position: relative;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* === BOTOES === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--green);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: var(--green-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

/* Variante para fundo branco */
.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline-dark:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.btn-black {
    background: var(--black);
    color: var(--white);
}

.btn-black:hover {
    background: var(--black-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}
.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.btn-lg { padding: 16px 36px; font-size: 14px; }

.btn-full { width: 100%; justify-content: center; }

/* === PROMO VIDEO === */
.promo-video-wrapper {
    position: relative;
    height: 600px;
    width: 100%;
    margin: 48px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 24px;
    text-align: center;
    color: var(--white);
}

.video-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* === SECAO COLLECTIONS === */
.collections-strip {
    padding: 48px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
}

.section-title span { color: var(--green); }

.view-all {
    color: var(--green-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all:hover { gap: 8px; color: var(--green); }

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.collection-card {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 18px 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.collection-card:hover {
    border-color: var(--green);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* === GRID DE PRODUTOS === */
.products-section {
    padding: 48px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* === CARD DE PRODUTO === */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.card-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-light);
    display: block;
    text-decoration: none;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.badge-new { background: var(--green); color: var(--black); }
.badge-off { background: var(--danger); color: var(--white); }
.badge-esgotado { background: var(--text-dim); color: var(--white); }

.card-quick-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 12px;
    text-align: center;
    transition: bottom 0.3s ease;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card:hover .card-quick-view { bottom: 0; }

.card-body {
    padding: 16px;
}

.card-vendor {
    font-size: 10px;
    color: var(--green-dark);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

.card-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.price-current {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.price-old {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: line-through;
}

.card-installments {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.sizes-preview {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.size-tag {
    padding: 3px 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-light);
}

.size-tag.unavailable {
    opacity: 0.3;
    text-decoration: line-through;
}

/* === SHIPPING CALCULATOR === */
.shipping-calc {
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.shipping-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--text);
}
.shipping-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}
.shipping-input-group input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}
.shipping-input-group button {
    flex-shrink: 0;
    padding: 0 20px;
    white-space: nowrap;
    font-weight: 600;
}
.shipping-forgot {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: underline;
}
.shipping-forgot:hover {
    color: var(--text);
}
.shipping-result {
    margin-top: 16px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.shipping-address {
    color: var(--text-dim);
    margin-bottom: 14px;
    font-size: 11px;
    background: var(--border-light);
    padding: 8px 12px;
    border-radius: 4px;
}
.shipping-address strong {
    color: var(--text);
}
.shipping-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    margin-bottom: 8px;
    background: var(--white);
    transition: var(--transition);
}
.shipping-option:hover {
    border-color: var(--border);
}
.shipping-infocol {
    display: flex;
    flex-direction: column;
}
.shipping-name {
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
}
.shipping-deadline {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 2px;
}
.shipping-price {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

/* === PAGINA DO PRODUTO === */
.product-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 88px;
}

.gallery-main {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    margin-bottom: 12px;
    cursor: zoom-in;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-main:hover img { transform: scale(1.05); }

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-light);
}

.gallery-thumb:hover, .gallery-thumb.active {
    border-color: var(--green);
}

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: 8px; }

.product-vendor {
    font-size: 12px;
    color: var(--green-dark);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-pricing {
    margin-bottom: 28px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.price-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text);
}

.price-installments {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 4px;
}

.price-installments strong { color: var(--green-dark); }

.size-selector { margin-bottom: 28px; }

.size-selector label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sizes-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    width: 56px;
    height: 48px;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.size-btn:hover:not(.disabled) {
    border-color: var(--green);
    color: var(--green-dark);
}

.size-btn.selected {
    border-color: var(--green);
    background: rgba(0,200,83,0.08);
    color: var(--green-dark);
    box-shadow: 0 0 0 1px var(--green);
}

.size-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.checkout-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.btn-checkout {
    background: var(--black);
    color: var(--white);
    font-size: 15px;
    padding: 18px;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
}

.btn-checkout:hover {
    background: var(--green);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--green-glow);
}

.btn-checkout:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.product-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    font-size: 12px;
    color: var(--text-muted);
}

.perk strong { color: var(--text); }

.perk-icon { font-size: 18px; }

.product-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

/* === FOOTER === */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 56px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-top-row {
    display: flex;
    gap: 80px;
    flex: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-brand .logo { display: inline-flex; margin-bottom: 20px; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; max-width: 85%; margin-bottom: 40px;}

.footer-support { text-align: right; }
.support-title { font-size: 13px !important; letter-spacing: 1px !important; margin-bottom: 16px !important;}
.footer-whatsapp { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; margin-bottom: 12px; transition: var(--transition); }
.footer-whatsapp:hover { color: var(--green); }
.footer-hours { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

.footer-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.footer-link {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 14px;
    transition: var(--transition);
}

.footer-link:hover { color: var(--white); }

.footer-link-highlight {
    display: inline-block;
    color: var(--green);
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
    text-decoration: none;
    transition: var(--transition);
}
.footer-link-highlight:hover { filter: brightness(1.2); }

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    text-align: center;
}
.footer-bottom p { margin: 0; }

/* === UTILITARIOS === */
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.text-green { color: var(--green); }

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
    border-radius: var(--radius);
}
@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* === TOAST NOTIFICACOES === */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--black);
    border: 1px solid var(--green);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } }

/* === CART DRAWER === */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -460px;
    width: 440px;
    max-width: 100vw;
    height: 100vh;
    background: var(--white);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.cart-drawer-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
}

.cart-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    transition: var(--transition);
}

.cart-close-btn:hover {
    color: var(--text);
    transform: rotate(90deg);
}

/* Barra de Frete Gratis */
.free-shipping-bar {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-light);
}

.free-shipping-track {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.free-shipping-progress {
    height: 100%;
    width: 0%;
    background: var(--green);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.free-shipping-text {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.free-shipping-text strong {
    color: var(--green-dark);
}

/* Estado Vazio */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 24px;
    text-align: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Conteudo do carrinho */
.cart-filled {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.cart-list-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border-light);
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px;
}

/* Item do carrinho */
.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: flex-start;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-light);
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.cart-item-size {
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 2px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 4px;
}

.qty-btn:hover {
    border-color: var(--black);
}

.qty-remove {
    margin-left: 8px;
    border-color: transparent;
    color: var(--text-dim);
}

.qty-remove:hover {
    color: var(--danger);
    border-color: var(--danger);
}

.qty-value {
    width: 28px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.cart-item-total {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    padding-top: 2px;
}

/* Footer do carrinho */
.cart-footer {
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
    background: var(--white);
}

.cart-totals {
    margin-bottom: 16px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.cart-total-final {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-checkout-btn {
    background: var(--green);
    color: var(--black);
    font-weight: 800;
    letter-spacing: 2px;
}

.cart-checkout-btn:hover {
    background: var(--green-dark);
}

/* === SEARCH DRAWER === */
.search-drawer {
    position: fixed;
    top: 0;
    right: -460px;
    width: 440px;
    max-width: 100vw;
    height: 100vh;
    background: var(--white);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
}
.search-drawer.open { right: 0; }
.search-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}
.search-input-wrapper {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}
.search-form-drawer {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}
.search-form-drawer input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: transparent;
}
.search-submit-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}
.search-submit-btn:hover { color: var(--text); }

.search-quick-links {
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
}
.search-quick-links h3, .search-best-sellers h3 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.search-tag {
    padding: 6px 14px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    background: var(--bg-light);
    transition: var(--transition);
}
.search-tag:hover { border-color: var(--border); }

.search-best-sellers {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}
.search-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.search-product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
}
.search-product-img {
    aspect-ratio: 1;
    background: var(--bg-light);
    border-radius: 8px;
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
}
.search-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search-product-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--black);
    color: var(--white);
    font-size: 8px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.search-product-title {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}
.search-product-price {
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
}

.menu-trigger {
    display: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header-container { gap: 12px; }
    .header-actions { margin-left: auto; }
    .menu-trigger { display: flex; }
    .nav { 
        display: none; 
        position: absolute; 
        top: 64px; 
        left: 0; 
        width: 100%; 
        background: var(--black); 
        flex-direction: column; 
        padding: 0; 
        border-top: 1px solid rgba(255,255,255,0.1); 
        z-index: 999; 
    }
    .nav.nav-active { display: flex; }
    .nav-item { 
        padding: 16px 24px; 
        border-bottom: 1px solid rgba(255,255,255,0.05); 
        justify-content: space-between; 
        width: 100%;
        flex-wrap: wrap;
    }
    .nav-item:hover { color: var(--white); }
    .nav-item:hover .mega-menu { display: none; } /* Remove ativação no hover */
    .nav-item.nav-open { color: var(--green); }
    .nav-item.nav-open .mega-menu { 
        display: flex !important; 
        flex-direction: column; 
        animation: fadeIn 0.2s ease forwards; 
    }
    .mega-menu { 
        position: static; 
        transform: none; 
        width: 100%; 
        padding: 16px 0 0 0; 
        grid-template-columns: 1fr; 
        box-shadow: none; 
        background: transparent; 
        border-top: none; 
        gap: 16px; 
    }
    .mega-col-title { 
        color: var(--white); 
        border-bottom: 1px solid rgba(255,255,255,0.1); 
        padding-bottom: 8px;
        margin-bottom: 8px;
    }
    .mega-link { color: rgba(255,255,255,0.6); margin-bottom: 8px; }
    .mega-link:hover { color: var(--green); }
    
    .hero { padding: 60px 24px; }
    .product-page { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; padding: 0 16px; margin: 24px 0 !important; overflow-x: hidden; width: 100%; box-sizing: border-box; }
    .product-page * { max-width: 100%; box-sizing: border-box; }
    .product-info, .product-gallery, .shipping-calc, .product-pricing, .checkout-actions, .size-selector, .ml-shipping-box { min-width: 0; width: 100%; box-sizing: border-box; }
    .product-title { font-size: 26px; }
    .product-gallery { position: static; }
    .product-perks { grid-template-columns: 1fr; }
    .top-bar { font-size: 10px; padding: 6px 8px; }
    .cart-drawer, .search-drawer { width: 100vw; right: -100vw; }
    
    /* Footer Responsivo */
    .footer { padding: 40px 24px 24px !important; }
    body.cart-active .footer { padding-bottom: 120px !important; }
    
    .footer-inner { display: flex !important; flex-direction: column !important; gap: 40px !important; text-align: left; }
    .footer-top-row { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 40px 16px !important; width: 100%; }
    
    .footer-brand { flex-direction: column !important; align-items: center !important; text-align: center !important; width: 100%; }
    .footer-brand .logo { justify-content: center !important; margin-bottom: 24px; }
    .footer-desc { text-align: center !important; margin: 0 auto 40px auto !important; max-width: 100%; font-size: 13px; }
    
    .footer-support { text-align: center !important; width: 100%; }
    .support-title { text-align: center !important; }
    .footer-whatsapp { justify-content: center !important; font-size: 13px; }
    
    .footer-col { align-items: flex-start !important; }
    .footer-title { font-size: 12px; margin-bottom: 16px; min-height: 28px; display: flex; align-items: flex-end; }
    .footer-link { font-size: 13px; margin-bottom: 12px; }
    
    .footer-bottom { flex-direction: column !important; justify-content: center !important; text-align: center; gap: 16px !important; align-items: center; padding-top: 24px !important;}
}

@media (max-width: 480px) {
    .hero h1 { font-size: 36px; }
    .promo-video-wrapper { height: 400px; }
    .hero-badge { font-size: 10px; padding: 4px 14px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === FLOATING CART BAR (PILL DESIGN) === */
.floating-cart-bar { 
    position: fixed; 
    bottom: 24px; 
    left: 50%; 
    transform: translate(-50%, 150px); 
    width: 95%; 
    max-width: 520px; 
    background: #0b1114;
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 60px; 
    display: none; 
    align-items: center; 
    justify-content: space-between; 
    padding: 12px 12px 12px 14px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05); 
    z-index: 9999; 
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}
.floating-cart-bar.active { display: flex; }
.floating-cart-bar.is-scrolled { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }

.floating-cart-left { display: flex; align-items: center; gap: 12px; cursor: pointer; flex: 1; overflow: hidden; }
.floating-img-wrap { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.2); }
.floating-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.floating-cart-info { display: flex; flex-direction: column; overflow: hidden; white-space: nowrap; width: 100%; justify-content: center; }
.floating-item-title { font-size: 14px; font-weight: 700; color: #fff; text-overflow: ellipsis; overflow: hidden; margin-bottom: 2px; }
.floating-item-desc { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; text-overflow: ellipsis; overflow: hidden; }
.floating-total { font-size: 15px; font-weight: 800; color: var(--green); line-height: 1.2; }

.floating-checkout-btn { 
    background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%); 
    color: #fff; 
    font-weight: 800; 
    text-transform: uppercase; 
    padding: 18px 24px; 
    border: none; 
    border-radius: 50px; 
    cursor: pointer; 
    font-family: 'Barlow Condensed', sans-serif; 
    font-size: 16px; 
    letter-spacing: 1px; 
    transition: transform 0.2s, background 0.2s; 
    white-space: nowrap; 
    flex-shrink: 0;
    margin-left: 12px;
    box-shadow: 0 4px 15px rgba(76, 211, 0, 0.3);
}
.floating-checkout-btn:hover { transform: scale(1.02); background: linear-gradient(90deg, var(--green-light) 0%, var(--green) 100%); }

@media (max-width: 480px) {
    .floating-cart-bar { width: 96%; padding: 10px 10px 10px 10px; bottom: 16px; }
    .floating-checkout-btn { font-size: 15px; padding: 16px 20px; }
    .floating-img-wrap { width: 48px; height: 48px; }
    .floating-total { font-size: 14px; }
}

@media (min-width: 769px) {
    .floating-cart-bar {
        left: auto;
        right: 24px;
        width: max-content;
        max-width: 540px;
        transform: translate(calc(100% + 50px), 0);
    }
    .floating-cart-bar.is-scrolled { 
        transform: translate(0, 0); 
    }
}
