﻿/* ========================================
   Cleber Store — NIKE DESIGN SYSTEM v4.0
   Bold · Athletic · Product-focused
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
    /* Brand */
    --primary: #111111;
    --primary-dark: #000000;
    --primary-light: #222222;
    --accent: #0057b8;
    --accent-dark: #003d82;
    --accent-light: #1a6fd4;
    --accent-rgb: 0, 87, 184;
    --accent-glow: rgba(0, 87, 184, 0.2);

    /* Neutrals — Nike B&W */
    --black: #111111;
    --gray-900: #1a1a1a;
    --gray-800: #2d2d2d;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #757575;
    --gray-400: #9a9a9a;
    --gray-300: #c8c8c8;
    --gray-200: #e8e8e8;
    --gray-100: #f2f2f2;
    --gray-50: #f8f8f8;
    --white: #ffffff;

    /* Semantic */
    --success: #128a12;
    --success-bg: #e8f5e8;
    --danger: #d32f2f;
    --warning: #f59e0b;
    --info: #1976d2;
    --pix-green: #00b894;

    /* Surface */
    --body-bg: #ffffff;
    --surface: #f5f5f5;
    --surface-2: #fafafa;
    --card-bg: #ffffff;

    /* Typography */
    --font: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-display: 'Barlow Condensed', 'Impact', 'Arial Narrow', Arial, sans-serif;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 32px rgba(0,0,0,0.14);

    /* Radii — Nike uses minimal rounding */
    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-full: 999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.25s var(--ease);
    --transition-fast: 0.12s var(--ease);
    --transition-slow: 0.4s var(--ease);

    /* Layout */
    --max-width: 1280px;
    --header-h: 66px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font);
    background: var(--body-bg);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 14px;
}

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.mt-20 { margin-top: 20px; }

/* Scrollbar — minimal */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }

::selection { background: var(--black); color: var(--white); }

.text-accent { color: var(--accent); }

/* ========================================
   ANNOUNCEMENT BAR — Nike-style
   ======================================== */
.announcement-bar {
    background: linear-gradient(90deg, #111111, #1a1a1a, #111111);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.announcement-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.announcement-track span {
    flex-shrink: 0;
    padding: 0 10px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   TOP BAR — Nike Pure Black
   ======================================== */
.top-bar {
    background: var(--black);
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    border-bottom: none;
    letter-spacing: 0.3px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 34px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-left span,
.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-bar-right a:hover { color: var(--white); }
.top-bar-divider { opacity: 0.15; }

/* ========================================
   HEADER — Nike Clean
   ======================================== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1.5px solid var(--gray-200);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    border-bottom-color: var(--gray-200);
    background: rgba(255,255,255,0.98);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 28px;
    height: var(--header-h);
    align-items: center;
}

/* LOGO — Image */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 54px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    height: 48px;
    max-width: 200px;
    filter: invert(1);
    mix-blend-mode: screen;
    opacity: 0.95;
    transition: opacity var(--transition-fast);
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
}

.logo-icon {
    font-size: 24px;
    filter: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-b10 {
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo-mantos {
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 1px;
}

/* SEARCH BAR — Clean rounded */
.search-bar {
    flex: 1;
    max-width: 480px;
    position: relative;
}

.search-bar input {
    width: 100%;
    height: 42px;
    border: 1.5px solid var(--gray-200);
    border-radius: 0;
    padding: 0 44px 0 40px;
    font-size: 13px;
    font-family: var(--font);
    background: var(--gray-50);
    color: var(--black);
    transition: all var(--transition);
    outline: none;
}

.search-bar input::placeholder { color: var(--gray-400); }

.search-bar input:focus {
    background: var(--white);
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(17,17,17,0.08);
}

.search-icon-left {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 13px;
    pointer-events: none;
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 0;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background var(--transition);
}

.search-btn:hover { background: var(--accent); }

/* SEARCH SUGGESTIONS */
.search-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 0;
    box-shadow: var(--shadow-xl);
    padding: 8px 0;
    display: none;
    z-index: 100;
    border: 1.5px solid var(--black);
    border-top: none;
}

.search-suggestions.active { display: block; }

.suggestion-header {
    padding: 10px 16px 6px;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--gray-700);
    transition: background var(--transition-fast);
}

.suggestion-item:hover {
    background: var(--surface);
    color: var(--black);
}

.suggestion-item i {
    color: var(--accent);
    font-size: 11px;
}

/* HEADER ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.header-action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    padding: 8px 10px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    position: relative;
}

.header-action-item:hover {
    color: var(--black);
    background: var(--surface);
}

.header-action-item i { font-size: 18px; }

.action-text { display: flex; flex-direction: column; line-height: 1.2; }
.action-label { font-size: 10px; color: var(--gray-500); }
.action-text strong { font-size: 12px; color: var(--black); }

.action-count,
.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    background: var(--accent);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.cart-badge.bump { animation: badgeBump 0.3s ease; }
@keyframes badgeBump { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

/* ========================================
   NAVIGATION — Nike mega-nav style
   ======================================== */
.main-nav {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 18px;
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--black);
    border-radius: 0;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-item:hover a,
.nav-item.active a { color: var(--black); }

.nav-item:hover a::after,
.nav-item.active a::after { transform: scaleX(1); }

.nav-item.highlight a { color: var(--accent); font-weight: 600; }
.nav-item.highlight:hover a { color: var(--accent-dark); }

.nav-item.sale a { color: var(--accent); font-weight: 700; }
.nav-item.sale:hover a { color: var(--accent-dark); }

.nav-pulse {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

/* MEGA MENU */
.has-mega { position: relative; }

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 24px 32px;
    display: flex;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all var(--transition);
    z-index: 100;
    min-width: 380px;
    border-top: 2px solid var(--black);
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-bottom: 14px;
    font-weight: 700;
}

.mega-col a {
    display: block;
    padding: 5px 0;
    font-size: 13px;
    color: var(--gray-700);
}

.mega-col a:hover {
    color: var(--black);
    font-weight: 600;
}

/* ========================================
   MOBILE HAMBURGER
   ======================================== */
.mobile-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1010;
}

.mobile-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-hamburger.active span:nth-child(2) { opacity: 0; }
.mobile-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ========================================
   HERO SECTION — Centauro Editorial Banner
   ======================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    line-height: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 520;
}

/* SLIDE */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 0.8s var(--ease), visibility 0.8s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Full-width banner image */
.hero-slide-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.6s var(--ease), transform 8s ease-out;
}

.hero-slide.active .hero-slide-visual img {
    opacity: 1;
    transform: scale(1);
}

/* ─── LEFT PANEL — removed, just floating button ─── */
.hero-slide-panel {
    position: absolute;
    left: 48px;
    bottom: 32px;
    z-index: 3;
    background: none;
    backdrop-filter: none;
    padding: 0;
    width: auto;
    min-width: 0;
    display: block;
}

.hero-panel-content {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s var(--ease) 0.2s;
}

.hero-slide.active .hero-panel-content {
    opacity: 1;
    transform: translateY(0);
}

/* Brand logos area */
.hero-brand-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-brand-logos i {
    font-size: 28px;
    color: var(--white);
    opacity: 0.9;
}

.hero-brand-sep {
    color: rgba(255,255,255,0.25);
    font-size: 28px;
    font-weight: 200;
}

.hero-brand-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 4px;
    opacity: 0.9;
}

/* Title */
.hero-title {
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.hero-title .text-accent {
    color: var(--accent);
}

/* Description */
.hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    max-width: 360px;
    margin-bottom: 32px;
    line-height: 1.65;
}

/* COMPRAR button — simple outline like Centauro */
.btn-hero-comprar {
    display: inline-block;
    padding: 14px 40px;
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--white);
    border: 2px solid var(--white);
    border-radius: 0;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-hero-comprar:hover {
    background: transparent;
    color: var(--white);
}

/* ─── NAV ARROWS — Subtle circles ─── */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: all var(--transition);
    cursor: pointer;
}

.hero-nav--prev { left: 16px; }
.hero-nav--next { right: 16px; }

.hero-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ─── Hero Dots — Clean progress indicators ─── */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dots .dot {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.hero-dots .dot:hover {
    background: rgba(255,255,255,0.5);
}

.hero-dots .dot.active {
    background: rgba(255,255,255,0.35);
    width: 48px;
}

.hero-dots .dot .dot-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--white);
    border-radius: 2px;
}

.hero-dots .dot.active .dot-progress {
    animation: dotFill 6s linear forwards;
}

@keyframes dotFill {
    from { width: 0; }
    to { width: 100%; }
}

/* ─── Hide unused legacy elements ─── */
.hero-slide-bg,
.hero-slide-overlay,
.hero-content-wrap,
.hero-brand-tag,
.hero-badge,
.hero-buttons,
.hero-trust,
.hero-price-card,
.hero-bottom-bar,
.hero-particles,
.hero-image-ring,
.hero-image-glow,
.hero-image,
.hero-image-tag,
.hero-image-badge-float { display: none; }

.hero-content { display: flex; align-items: center; }

/* ========================================
   BUTTONS — Nike Athletic style
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font);
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,87,184,0.25);
}

.btn-glow { box-shadow: none; }

.btn-outline {
    border-color: var(--black);
    color: var(--black);
    background: transparent;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-block { width: 100%; }

.btn-whatsapp { background: #25d366; color: var(--white); border-color: #25d366; border-radius: 0; }
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; transform: translateY(-1px); }

/* ========================================
   BENEFITS BAR — Nike Athletic Strip
   ======================================== */
.benefits-bar {
    background: var(--black);
    border-bottom: none;
    position: relative;
    z-index: 5;
}

.benefits-scroll {
    display: flex;
    justify-content: space-between;
    padding: 0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.benefits-scroll::-webkit-scrollbar { display: none; }

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 18px 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
    flex: 1;
    justify-content: center;
}

.benefit-item:last-child { border-right: none; }

.benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 0;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: none;
    border: none;
}

.benefit-icon.pix { color: var(--pix-green); background: rgba(0,184,148,0.1); }

.benefit-text strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-text span { font-size: 10px; color: rgba(255,255,255,0.4); }

/* ========================================
   SECTION HEADERS — Nike Bold
   ======================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header.compact { margin-bottom: 24px; }

.section-header.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title-group {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding-left: 16px;
}

.section-title-group::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    background: var(--black);
}

.section-header.center .section-title-group {
    padding-left: 0;
}

.section-header.center .section-title-group::before {
    display: none;
}

.section-icon { display: none; }

@keyframes salePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    line-height: 1.0;
}

.section-subtitle {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 6px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-tabs {
    display: flex;
    background: var(--white);
    border-radius: 0;
    padding: 0;
    border: 1.5px solid var(--gray-200);
    gap: 0;
}

.tab-btn {
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-600);
    border-radius: 0;
    transition: all var(--transition);
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-right: 1.5px solid var(--gray-200);
}

.tab-btn:last-child { border-right: none; }

.tab-btn.active {
    background: var(--black);
    color: var(--white);
}

.tab-btn:hover:not(.active) { background: var(--gray-100); color: var(--black); }

.see-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1.5px solid var(--black);
    padding-bottom: 2px;
}

.see-all-btn:hover { gap: 12px; color: var(--accent); border-bottom-color: var(--accent); }

.empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0;
}

/* ========================================
   CATEGORIES — Nike Bold Cards
   ======================================== */
.categories-section { padding: 56px 0 48px; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.category-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    background: var(--black);
    border: none;
    padding: 32px 16px 26px;
    text-align: center;
    box-shadow: none;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s;
    border-radius: 0;
    pointer-events: none;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    background: var(--gray-900);
}

.cat-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.cat-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: var(--white);
    gap: 2px;
}

.cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    transition: all 0.25s var(--ease);
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.category-card:nth-child(1) .cat-icon,
.category-card:nth-child(2) .cat-icon,
.category-card:nth-child(3) .cat-icon,
.category-card:nth-child(4) .cat-icon { background: rgba(255,255,255,0.08); }
.category-card:nth-child(5) .cat-icon { background: var(--accent); border-color: var(--accent); }

.category-card:hover .cat-icon { background: var(--white); color: var(--black); transform: none; border-color: var(--white); }
.category-card:nth-child(5):hover .cat-icon { background: var(--white); color: var(--accent); }

.cat-content h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--white);
}

.cat-count {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.25s var(--ease);
    display: block;
    font-size: 0;
}

.cat-arrow i { display: none; }

.category-card:hover .cat-arrow { opacity: 1; transform: none; }
.category-card:nth-child(5):hover .cat-arrow { background: var(--accent); }

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section { padding: 48px 0; }

.promo-section {
    background: var(--surface);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* PRODUCT CARD — Nike Minimal */
.product-card {
    background: var(--card-bg);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.25s var(--ease);
    position: relative;
    border: 1px solid var(--gray-200);
    box-shadow: none;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.12);
    border-color: var(--black);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--gray-50);
    aspect-ratio: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.product-card:hover .product-image { transform: scale(1.06); }

.product-badge {
    position: absolute;
    top: 10px;
    left: 0;
    padding: 5px 12px;
    border-radius: 0;
    font-size: 9px;
    font-weight: 800;
    z-index: 3;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: none;
}

.product-badge.sale { background: var(--accent); color: var(--white); }
.product-badge.new { background: var(--black); color: var(--white); }
.product-badge.special { background: var(--gray-800); color: var(--white); }
.product-badge.soldout, .product-badge.badge-soldout { background: #64748b; color: #fff; }
.product-card.sold-out { opacity: 0.7; }
.product-card.sold-out .product-image, .product-card.sold-out img { filter: grayscale(40%); }

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: var(--white);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 3;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(-6px);
}

.product-card:hover .wishlist-btn { opacity: 1; transform: translateY(0); }
.wishlist-btn:hover { color: var(--danger); transform: scale(1.1) !important; }
.wishlist-btn.active { color: var(--danger); opacity: 1; transform: translateY(0); }
.wishlist-btn.active i { font-weight: 900; }

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 2;
}

.product-card:hover .product-overlay { opacity: 1; }

.quick-view-btn {
    background: var(--white);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transform: translateY(10px);
    transition: all var(--transition);
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-card:hover .quick-view-btn { transform: translateY(0); }
.quick-view-btn:hover { background: var(--black); color: var(--white); }

/* Product Sizes */
.product-sizes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0,0,0,0.04));
    transform: translateY(100%);
    transition: transform var(--transition);
    z-index: 3;
}

.product-card:hover .product-sizes { transform: translateY(0); }

.product-sizes span {
    width: 30px;
    height: 26px;
    border-radius: var(--radius-xs);
    background: var(--white);
    color: var(--gray-700);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xs);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
}

.product-sizes span:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* Product Info */
.product-info { padding: 14px 14px 16px; }

.product-category-link {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gray-400);
    font-weight: 700;
}

.product-name { margin: 5px 0 8px; font-size: 14px; font-weight: 700; line-height: 1.3; }
.product-name a { color: var(--black); transition: color var(--transition-fast); }
.product-name a:hover { color: var(--accent); }

.product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.stars { display: flex; gap: 1px; }
.stars i { font-size: 10px; color: var(--warning); }
.rating-count { font-size: 10px; color: var(--gray-400); }

.product-prices { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.price-old { font-size: 12px; color: var(--gray-400); text-decoration: line-through; }
.price-current { font-size: 20px; font-weight: 900; color: var(--black); font-family: var(--font-display); letter-spacing: -0.5px; }

.product-payment-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.product-installment {
    font-size: 11px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-pix {
    font-size: 12px;
    color: var(--pix-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-pix i { font-size: 11px; }
.product-pix em { font-style: normal; font-weight: 500; font-size: 10px; color: var(--gray-500); }

/* Add to Cart */
.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    border-radius: 0;
    background: var(--black);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all var(--transition);
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none;
}

.add-to-cart-btn:hover {
    background: var(--accent);
    transform: none;
    box-shadow: none;
}

.add-to-cart-btn:active { opacity: 0.85; }

/* ========================================
   PROMO BANNER — Nike Pure Black
   ======================================== */
.promo-banner {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promo-bg-elements { position: absolute; inset: 0; pointer-events: none; }

.promo-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.03);
}

.promo-circle.c1 { width: 500px; height: 500px; top: -150px; right: -100px; animation: promoSpin 35s linear infinite; }
.promo-circle.c2 { width: 350px; height: 350px; bottom: -100px; left: -80px; animation: promoSpin 28s linear infinite reverse; }
.promo-circle.c3 { display: none; }
@keyframes promoSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.promo-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.promo-text { flex: 1; }

.promo-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--gray-400);
    padding: 0 0 0 12px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    border: none;
    border-left: 3px solid var(--accent);
    text-transform: uppercase;
}

.promo-text h2 {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.promo-text h2 .text-accent { color: var(--accent); }

.promo-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 32px;
    max-width: 420px;
    line-height: 1.7;
}

.promo-stats-wrapper { flex-shrink: 0; }

.promo-stats { display: flex; gap: 0; border: 1px solid rgba(255,255,255,0.08); }

.stat-item {
    text-align: center;
    padding: 28px 32px;
    background: transparent;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.08);
    min-width: 130px;
}

.stat-item:last-child { border-right: none; }

.stat-number { display: block; font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.stat-number::after { content: '+'; color: var(--accent); }
.stat-label { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    padding: 64px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 32px;
    background: var(--gray-200);
    border: 1px solid var(--gray-200);
}

.testimonial-card {
    background: var(--white);
    border-radius: 0;
    padding: 28px 24px;
    transition: all var(--transition);
    border: none;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    right: 20px;
    font-size: 64px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--gray-50);
}

.testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.testimonial-stars i { color: var(--warning); font-size: 13px; }

.testimonial-card > p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 13px; color: var(--black); }
.testimonial-author span { display: block; font-size: 11px; color: var(--gray-400); margin-top: 1px; }

/* ========================================
   NEWSLETTER — Nike email capture
   ======================================== */
.newsletter-section { padding: 48px 0 64px; }

.newsletter-card {
    background: #000000;
    border-radius: 0;
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.03), transparent);
    pointer-events: none;
}

.newsletter-content { position: relative; z-index: 2; }

.newsletter-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 0;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-card h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--white); margin-bottom: 12px; text-transform: uppercase; letter-spacing: -0.5px; line-height: 1.0; }
.newsletter-card > .newsletter-content > p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 32px; line-height: 1.7; }
.newsletter-card strong { color: var(--accent); font-weight: 800; }

.newsletter-form { max-width: 500px; margin: 0 auto; }

.input-group {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.12);
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 20px;
    font-size: 13px;
    color: var(--white);
    font-family: var(--font);
    outline: none;
}

.input-group input::placeholder { color: rgba(255,255,255,0.3); }
.input-group .btn { flex-shrink: 0; border-radius: 0; padding: 14px 28px; }

.newsletter-form small { display: block; margin-top: 12px; font-size: 11px; color: rgba(255,255,255,0.3); }
.newsletter-form small i { margin-right: 4px; }

/* ========================================
   FOOTER — Nike Pure Black
   ======================================== */
.footer {
    background: #0a0a0a;
    color: var(--gray-400);
}

.footer-accent {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 30%, rgba(255,255,255,0.42) 50%, rgba(255,255,255,0.18) 70%, transparent 100%);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1.3fr;
    gap: 48px;
    padding: 56px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }

.footer-about p { font-size: 13px; line-height: 1.8; color: var(--gray-500); margin-bottom: 18px; }

.footer-wpp-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    transition: all var(--transition);
    letter-spacing: 0.2px;
}

.footer-wpp-cta i { font-size: 15px; }
.footer-wpp-cta:hover { background: #1ebe5a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.28); color: #fff; }

.footer-socials { display: flex; gap: 9px; align-items: center; }

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
    text-indent: -9999px;
}

.footer-socials a i { text-indent: 0; }
.footer-socials a:hover { background: var(--white); color: var(--black); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,255,255,0.12); border-color: transparent; }

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: block;
}

.footer-col ul li { margin-bottom: 9px; }

.footer-col ul a {
    font-size: 13px;
    color: var(--gray-500);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul a::before {
    content: '';
    width: 4px;
    height: 1px;
    background: var(--gray-700);
    display: inline-block;
    transition: all var(--transition);
    flex-shrink: 0;
}

.footer-col ul a:hover { color: var(--white); transform: translateX(4px); }
.footer-col ul a:hover::before { width: 8px; background: var(--gray-400); }

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 8px; color: var(--gray-500); }
.contact-list li a { display: flex; align-items: center; gap: 8px; color: var(--gray-500); transition: color var(--transition-fast); }
.contact-list li a:hover { color: var(--white); }
.contact-list i { font-size: 14px; color: var(--gray-500); width: 16px; flex-shrink: 0; }

.payment-methods { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }

.payment-icon {
    width: 42px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray-400);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-fast);
}

.payment-icon:hover { background: rgba(255,255,255,0.13); color: var(--gray-200); border-color: rgba(255,255,255,0.2); }

.security-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.security-badges span { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #22c55e; font-weight: 600; }

.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 11px; color: var(--gray-600); letter-spacing: 0.3px; }

/* ========================================
   WHATSAPP FLOAT — Subtle
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 900;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    transition: all var(--transition);
    animation: wppPulse 2.5s infinite;
}

.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }

@keyframes wppPulse {
    0% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 16px rgba(37,211,102,0.5), 0 0 0 8px rgba(37,211,102,0.08); }
    100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
}

.wpp-tooltip {
    position: absolute;
    right: 64px;
    background: var(--white);
    color: var(--black);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(6px);
    transition: all var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .wpp-tooltip { opacity: 1; transform: translateX(0); }

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 86px;
    right: 28px;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 890;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    box-shadow: none;
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }

/* ========================================
   CART SIDEBAR
   ======================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 92vw;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: var(--black);
    color: var(--white);
}

.cart-sidebar-header h3 { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

.cart-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--transition);
}

.cart-close:hover { background: var(--accent); transform: rotate(90deg); }

.cart-sidebar-body { flex: 1; overflow-y: auto; padding: 20px; }

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    gap: 14px;
    color: var(--gray-400);
}

.cart-empty i { font-size: 44px; opacity: 0.2; }
.cart-empty p { font-size: 14px; }

.cart-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    animation: fadeInUp 0.3s ease;
}

.cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--surface);
}

.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.cart-item-size { font-size: 11px; color: var(--gray-500); margin-bottom: 6px; }
.cart-item-price { font-size: 14px; font-weight: 800; color: var(--black); }
.cart-item-remove { color: var(--gray-400); font-size: 13px; align-self: flex-start; padding: 4px; }
.cart-item-remove:hover { color: var(--danger); }

.cart-item-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: 11px; color: var(--gray-500); }

.cart-item-qty-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }

.cart-qty-ctrl {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
}

.cart-qty-btn {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--gray-600);
    background: var(--surface);
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.cart-qty-btn:hover { background: var(--black); color: var(--white); }
.cart-qty-num { width: 28px; text-align: center; font-size: 12px; font-weight: 700; color: var(--black); }

/* Checkout Qty Controls */
.ck-qty-ctrl {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    margin-left: auto;
}

.ck-qty-ctrl button {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: #475569; background: #f8fafc;
    border: none; cursor: pointer; transition: background .15s, color .15s;
}

.ck-qty-ctrl button:hover { background: var(--black); color: #fff; }
.ck-qty-num { width: 30px; text-align: center; font-size: 12px; font-weight: 700; color: #1e293b; }
.ck-cart-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.cart-sidebar-footer {
    padding: 20px 24px;
    border-top: 2px solid var(--gray-100);
    background: var(--surface);
}

.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 15px; }
.cart-total strong { font-size: 22px; color: var(--black); font-weight: 900; }
.cart-sidebar-footer .btn { margin-bottom: 8px; }
.cart-sidebar-footer .btn-outline { border-color: var(--gray-300); color: var(--gray-700); }
.cart-sidebar-footer .btn-outline:hover { border-color: var(--black); color: var(--black); }

/* Cart CTA area — WhatsApp + Resumo */
.cart-cta-area { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }

.cart-wpp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.cart-wpp-btn i { font-size: 20px; flex-shrink: 0; }
.cart-wpp-btn:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,211,102,0.35); }

.cart-detail-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: transparent;
    color: var(--gray-600);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    transition: all var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}
.cart-detail-btn:hover { border-color: var(--black); color: var(--black); background: var(--surface); }
.cart-detail-btn i { font-size: 12px; }

.cart-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 4px;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.cart-overlay.active { opacity: 1; visibility: visible; }

/* ========================================
   QUICK VIEW MODAL
   ======================================== */
.quick-view-modal {
    position: fixed; inset: 0; z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all var(--transition);
}

.quick-view-modal.active { opacity: 1; visibility: visible; }

.qv-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }

.qv-content {
    position: relative;
    background: var(--white);
    border-radius: 0;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.97) translateY(16px);
    transition: all var(--transition);
}

.quick-view-modal.active .qv-content { transform: scale(1) translateY(0); }

.qv-close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--surface); color: var(--gray-600);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; z-index: 10; transition: all var(--transition);
}

.qv-close:hover { background: var(--black); color: var(--white); }

.qv-body { display: grid; grid-template-columns: 1fr 1fr; }

.qv-image {
    background: var(--surface);
    padding: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.qv-image img { max-height: 380px; object-fit: contain; border-radius: var(--radius-md); }

.qv-info { padding: 28px; display: flex; flex-direction: column; gap: 10px; }

.qv-category { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-500); font-weight: 700; }
.qv-info h2 { font-size: 20px; font-weight: 800; color: var(--black); }
.qv-rating { display: flex; align-items: center; gap: 6px; }
.qv-prices .price-old { font-size: 14px; }
.qv-prices .price-current { font-size: 24px; }
.qv-description p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

.qv-sizes label { display: block; font-size: 12px; font-weight: 700; color: var(--black); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.qv-size-options { display: flex; gap: 6px; }

.size-opt {
    width: 44px; height: 40px;
    border: 1.5px solid var(--gray-200); border-radius: 0;
    font-size: 11px; font-weight: 700; color: var(--gray-700);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); font-family: var(--font);
    text-transform: uppercase;
}

.size-opt:hover { border-color: var(--black); color: var(--black); }
.size-opt.active { background: var(--black); border-color: var(--black); color: var(--white); }

.qv-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }

/* ========================================
   TOAST
   ======================================== */
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 5000; display: flex; flex-direction: column; gap: 8px; }

.toast {
    background: var(--white);
    border-radius: 0;
    box-shadow: var(--shadow-xl);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 10px;
    min-width: 280px; max-width: 380px;
    transform: translateX(120%);
    transition: transform var(--transition);
    border-left: 4px solid var(--success);
}

.toast.show { transform: translateX(0); }

.toast-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--success-bg); color: var(--success);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}

.toast-text strong { display: block; font-size: 13px; color: var(--black); }
.toast-text span { font-size: 11px; color: var(--gray-500); }

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-in { opacity: 0; transform: translateY(24px); transition: all 0.5s var(--ease); }
.animate-in.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ========================================
   HOW IT WORKS — Nike Steps
   ======================================== */
.how-it-works-section { padding: 64px 0; background: var(--gray-50); }

.how-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    border: 1px solid var(--gray-200);
}

.how-step {
    text-align: center;
    padding: 40px 28px 32px;
    position: relative;
    flex: 1;
    max-width: none;
    border-right: 1px solid var(--gray-200);
    background: var(--white);
    transition: background var(--transition);
}

.how-step:last-child { border-right: none; }
.how-step:hover { background: var(--black); }
.how-step:hover .how-step-num { color: rgba(255,255,255,0.05); }
.how-step:hover .how-step-icon { background: var(--accent); color: var(--white); }
.how-step:hover h3 { color: var(--white); }
.how-step:hover p { color: rgba(255,255,255,0.45); }

.how-step-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    transition: color var(--transition);
}

.how-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 0;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
    transition: all var(--transition);
    box-shadow: none;
}

.how-step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--black); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; transition: color var(--transition); }
.how-step p { font-size: 12px; color: var(--gray-500); line-height: 1.65; transition: color var(--transition); }

.how-step-connector { display: none; }

/* ========================================
   TRUST SCORE
   ======================================== */
.trust-score { display: flex; align-items: center; gap: 8px; margin-top: 10px; justify-content: center; }
.trust-score-stars { display: flex; gap: 2px; color: var(--warning); font-size: 15px; }
.trust-score strong { font-size: 16px; font-weight: 900; color: var(--black); }
.trust-score span { font-size: 12px; color: var(--gray-500); }

.testimonial-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.verified-badge { font-size: 10px; color: var(--success); font-weight: 600; display: flex; align-items: center; gap: 3px; }
.verified-badge i { font-size: 11px; }

.testimonial-product-tag {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px; background: var(--surface); border-radius: var(--radius-sm); margin: 12px 0;
}

.testimonial-product-tag img { width: 32px; height: 32px; object-fit: cover; border-radius: 4px; }
.testimonial-product-tag span { font-size: 11px; font-weight: 600; color: var(--gray-700); }

/* ========================================
   FOOTER TRUST SEALS
   ======================================== */
.footer-trust-seals {
    display: flex;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.015);
}

.trust-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    padding: 22px 12px;
    color: var(--gray-500);
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition-fast);
}

.trust-seal:last-child { border-right: none; }
.trust-seal:hover { background: rgba(255,255,255,0.04); color: var(--gray-300); }
.trust-seal i { font-size: 20px; color: rgba(255,255,255,0.55); }
.trust-seal span { font-size: 10px; line-height: 1.3; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }

.admin-link {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    color: var(--gray-600); opacity: 0.2; font-size: 12px; transition: all var(--transition);
}

.admin-link:hover { opacity: 1; color: var(--white); }
.footer-bottom { position: relative; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-slide-panel { width: 42%; padding: 40px 36px; }
    .promo-stats { gap: 16px; }
}

@media (max-width: 992px) {
    .top-bar { display: none; }
    .header-content { height: 56px; gap: 14px; }
    .mobile-hamburger { display: flex; }
    .action-text { display: none; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-slider { aspect-ratio: auto; min-height: 340px; }
    .hero-slide { min-height: 340px; }
    .hero-slide-panel { left: 28px; bottom: 24px; }
    .hero-title { font-size: 24px; }
    .hero-desc { font-size: 13px; }
    .hero-nav { width: 40px; height: 40px; font-size: 13px; }
    .hero-nav--prev { left: 8px; }
    .hero-nav--next { right: 8px; }
    .hero-price-card { right: 24px; bottom: 56px; padding: 10px 14px; }
    .hero-price-value { font-size: 16px; }
    .hero-bottom-bar { padding: 8px 18px; }
    .promo-content { flex-direction: column; gap: 36px; text-align: center; }
    .promo-text p { margin: 0 auto 24px; }
    .promo-stats { justify-content: center; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }

    .main-nav {
        position: fixed; top: 0; left: 0;
        width: 280px; height: 100vh;
        background: var(--white); z-index: 1001;
        transform: translateX(-100%); transition: transform var(--transition);
        padding-top: 64px; overflow-y: auto;
        box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    }

    .main-nav.open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: stretch; }
    .nav-item a { padding: 14px 24px; border-bottom: 1px solid var(--gray-100); color: var(--black); }
    .nav-item a::after { display: none; }

    .mega-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; background: var(--surface); border-radius: 0;
        padding: 12px 24px; flex-direction: column; gap: 14px; min-width: 0; border-top: none;
    }

    .mega-col a { color: var(--gray-600); }

    .section-header { flex-direction: column; align-items: flex-start; }
    .section-actions { width: 100%; justify-content: space-between; }
    .qv-body { grid-template-columns: 1fr; }
    .qv-image { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
}

@media (max-width: 768px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid .category-card:nth-child(4),
    .categories-grid .category-card:nth-child(5) { grid-column: auto; }
    .category-card { padding: 18px 12px 16px; }
    .cat-icon { width: 40px; height: 40px; font-size: 16px; margin-bottom: 10px; }
    .promo-stats { flex-direction: column; gap: 12px; }
    .stat-item { min-width: auto; }
    .newsletter-card { padding: 32px 20px; }
    .newsletter-card h2 { font-size: 20px; }
    .input-group { flex-direction: column; border-radius: var(--radius-md); }
    .input-group .btn { border-radius: var(--radius-md); }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .hero-bottom-bar { flex-direction: column; gap: 6px; padding: 8px 14px; }
    .hero-countdown { width: 100%; justify-content: center; }
    .hero-dots-wrap { width: 100%; justify-content: center; }
    .hero-slide-panel { left: 20px; bottom: 20px; }
    .hero-slide-visual img { object-position: 70% center; }
    .section-tabs { width: 100%; }
    .tab-btn { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
    body { font-size: 13px; }
    .container { padding: 0 16px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .category-card { padding: 14px 8px 12px; }
    .cat-icon { width: 36px; height: 36px; font-size: 14px; margin-bottom: 8px; }
    .cat-content h3 { font-size: 11px; }
    .cat-count { font-size: 9px; }
    .product-info { padding: 10px 12px 12px; }
    .product-name { font-size: 12px; }
    .price-current { font-size: 15px; }
    .product-payment-info { font-size: 10px; }
    .add-to-cart-btn { font-size: 11px; padding: 8px; }
    .section-title { font-size: 18px; }
    .hero-title { font-size: 26px !important; }
    .promo-text h2 { font-size: 24px; }
    .search-bar { display: none; }
    .announcement-bar { height: 30px; font-size: 10px; }
    .hero-slider { aspect-ratio: auto; min-height: 300px; }
    .hero-slide { min-height: 300px; }
    .hero-slide-panel { left: 16px; bottom: 16px; }
    .btn-hero-comprar { padding: 12px 32px; font-size: 12px; }
    .hero-nav { display: none; }
    .hero-badge { font-size: 9px; padding: 5px 12px; }
    .hero-desc { font-size: 13px; }
    .hero-trust { gap: 10px; }
    .trust-item { font-size: 10px; }
    .countdown-label span { display: none; }
    .hero-slide-counter { display: none; }
}

/* ========================================
   SUBPAGES - PAGE HERO / BREADCRUMB
   ======================================== */
.page-hero {
    background: var(--black);
    padding: 40px 0 36px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-fire .page-title::before { content: ''; }
.page-hero-sale .page-title::before { content: ''; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 8px; color: var(--gray-500); }
.breadcrumb span { color: var(--white); font-weight: 600; }

.page-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    margin-bottom: 4px;
    text-transform: uppercase;
    line-height: 1.0;
}

.page-subtitle {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ========================================
   CATALOG PAGES
   ======================================== */
.catalog-section { padding: 36px 0 56px; }

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: 0;
    border: 1.5px solid var(--gray-200);
}

.catalog-count { font-size: 13px; color: var(--gray-500); font-weight: 500; }
.catalog-count strong { color: var(--black); font-weight: 800; }

.catalog-filters { display: flex; gap: 6px; flex-wrap: wrap; }

.filter-chip {
    padding: 7px 16px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    border: 1.5px solid var(--gray-200);
    color: var(--gray-600);
    background: var(--white);
    transition: all var(--transition);
    cursor: pointer;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.filter-chip:hover { border-color: var(--black); color: var(--black); }

.filter-chip.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.catalog-sort { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-600); }

.catalog-sort select {
    padding: 7px 12px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font);
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    outline: none;
}

.catalog-sort select:focus { border-color: var(--black); }

.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ========================================
   INFO BANNER
   ======================================== */
.info-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.info-banner i.fa-info-circle,
.info-banner i.fa-tshirt { font-size: 24px; color: var(--black); flex-shrink: 0; }
.info-banner div h3 { font-size: 15px; font-weight: 800; color: var(--black); margin-bottom: 3px; }
.info-banner div p { font-size: 12px; color: var(--gray-500); line-height: 1.6; }

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--surface);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
}

.info-card i { color: var(--accent); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.info-card h4 { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.info-card p { font-size: 12px; color: var(--gray-500); line-height: 1.5; }

/* Badge Variants */
.badge-player, .badge-fan {
    position: absolute; top: 10px; right: 10px;
    padding: 3px 8px; font-size: 9px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px;
    border-radius: var(--radius-sm); z-index: 2;
}

.badge-player { background: var(--black); color: var(--white); }
.badge-fan { background: var(--gray-800); color: var(--white); }

/* Promo page */
.promo-banner-section { padding: 0; margin-bottom: 8px; }

.promo-highlight-card {
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; color: var(--white); position: relative; overflow: hidden;
}

.promo-highlight-card::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 280px; height: 280px; background: rgba(255,255,255,0.03); border-radius: 50%;
}

.promo-highlight-card h3 { font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; }
.promo-highlight-card h2 { font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; color: var(--white); line-height: 1.3; }
.promo-highlight-card p { font-size: 14px; opacity: 0.6; margin-top: 3px; }

.promo-highlight-content { flex: 1; min-width: 0; }
.promo-label { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: var(--white); padding: 4px 12px; border-radius: var(--radius-full); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.promo-percent { color: var(--accent); }
.promo-timer-wrap { text-align: center; flex-shrink: 0; }
.promo-timer-label { display: block; font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 8px; letter-spacing: 0.5px; }

.promo-countdown { display: flex; gap: 8px; position: relative; z-index: 1; }

.promo-countdown .countdown-item,
.promo-countdown .countdown-unit {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 8px 12px; text-align: center; min-width: 52px;
}

.promo-countdown .countdown-item span,
.promo-countdown .countdown-unit span { display: block; font-size: 20px; font-weight: 900; color: var(--white); line-height: 1; }
.promo-countdown .countdown-item small,
.promo-countdown .countdown-unit small { font-size: 9px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); margin-top: 3px; display: block; }
.promo-countdown .countdown-number { display: block; font-size: 20px; font-weight: 900; color: var(--white); line-height: 1; }
.promo-countdown .countdown-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); margin-top: 3px; display: block; }
.countdown-separator { color: rgba(255,255,255,0.3); font-size: 20px; font-weight: 700; display: flex; align-items: center; }

.savings-badge {
    position: absolute; bottom: 8px; right: 8px;
    background: var(--success); color: var(--white);
    font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: var(--radius-full); z-index: 2;
}

/* ========================================
   INSTITUTIONAL PAGES
   ======================================== */
.institutional-content { padding: 36px 0 56px; }

.content-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 44px;
    border: 1px solid var(--gray-200);
}

.legal-content h2 {
    font-size: 18px; font-weight: 800; color: var(--black);
    margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}

.legal-content h2 i { color: var(--accent); font-size: 16px; }

.legal-section { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-100); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section p, .legal-section li { font-size: 13px; color: var(--gray-600); line-height: 1.8; margin-bottom: 8px; }
.legal-section ul { list-style: disc; padding-left: 18px; margin-bottom: 10px; }
.legal-section ul li { margin-bottom: 4px; }
.legal-section strong { color: var(--black); }
.legal-section a { color: var(--accent); font-weight: 600; }
.legal-section a:hover { text-decoration: underline; }

/* About */
.about-section { margin-bottom: 36px; }
.about-section h2 { font-size: 20px; font-weight: 800; color: var(--black); margin-bottom: 12px; text-transform: uppercase; }
.about-section p { font-size: 13px; color: var(--gray-600); line-height: 1.8; margin-bottom: 8px; }

.about-icon {
    width: 48px; height: 48px;
    background: var(--black); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 14px;
}

.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 18px; }

.value-card {
    background: var(--surface); border-radius: var(--radius-lg);
    padding: 24px 20px; text-align: center;
    transition: all var(--transition); border: 1px solid var(--gray-200);
}

.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--black); }
.value-card i { font-size: 28px; color: var(--black); margin-bottom: 12px; }
.value-card h3 { font-size: 14px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.value-card p { font-size: 12px; color: var(--gray-500); line-height: 1.6; }

.about-numbers { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-top: 18px; }

.number-card {
    text-align: center; padding: 20px; background: var(--black);
    border-radius: var(--radius-lg); color: var(--white);
}

.number-card .number, .number-card .number-value { display: block; font-size: 32px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.number-card .label, .number-card .number-label { font-size: 12px; opacity: 0.7; font-weight: 500; }

.about-cta { text-align: center; padding: 36px; background: var(--surface); border-radius: var(--radius-lg); margin-top: 18px; }
.about-cta h3 { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.about-cta p { font-size: 13px; color: var(--gray-500); margin-bottom: 18px; }
.about-cta .btn { display: inline-flex; }

.why-list { margin-top: 12px; }
.why-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.why-item:last-child { border-bottom: none; }
.why-item i { color: var(--accent); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.why-item div strong { display: block; font-size: 13px; color: var(--black); margin-bottom: 2px; }
.why-item div span { font-size: 12px; color: var(--gray-500); }

/* Trocas */
.exchange-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 32px; }

.step-card {
    text-align: center; padding: 24px 18px; background: var(--surface);
    border-radius: var(--radius-lg); border: 1px solid var(--gray-200); transition: all var(--transition);
}

.step-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.step-number {
    width: 36px; height: 36px; background: var(--black);
    color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 900; margin: 0 auto 12px;
}

.step-card h3 { font-size: 14px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.step-card p { font-size: 12px; color: var(--gray-500); line-height: 1.5; }

.highlight-box {
    background: var(--surface); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 20px 24px; margin: 18px 0;
}

.highlight-box h3 { font-size: 15px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.highlight-box p, .highlight-box li { font-size: 12px; color: var(--gray-600); line-height: 1.7; margin-bottom: 4px; }
.highlight-box ul { list-style: disc; padding-left: 18px; }

.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 18px; }

.contact-card-link, .contact-card-mini {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 18px; background: var(--surface);
    border-radius: var(--radius-md); border: 1px solid var(--gray-200); transition: all var(--transition);
}

.contact-card-link:hover, .contact-card-mini:hover {
    border-color: var(--black); transform: translateY(-1px); box-shadow: var(--shadow-sm);
}

.contact-card-link i, .contact-card-mini i { font-size: 20px; color: var(--black); flex-shrink: 0; }
.contact-card-link div strong, .contact-card-mini div strong { display: block; font-size: 13px; color: var(--black); }
.contact-card-link div span, .contact-card-mini div span { font-size: 11px; color: var(--gray-500); }

/* ========================================
   FAQ PAGE
   ======================================== */
.faq-categories { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

.faq-cat-btn {
    padding: 8px 16px; border-radius: 0;
    font-size: 11px; font-weight: 700; border: 1.5px solid var(--gray-200);
    color: var(--gray-600); background: var(--white); text-transform: uppercase; letter-spacing: 0.5px;
    transition: all var(--transition); cursor: pointer; font-family: var(--font);
    display: flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.3px;
}

.faq-cat-btn i { font-size: 13px; }
.faq-cat-btn:hover { border-color: var(--black); color: var(--black); }
.faq-cat-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition); }
.faq-item:hover { border-color: var(--gray-300); }
.faq-item.active { border-color: var(--black); }

.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; font-size: 14px; font-weight: 600; color: var(--black);
    text-align: left; cursor: pointer; font-family: var(--font); background: var(--white);
    border: none; gap: 14px;
}

.faq-question span { display: flex; align-items: center; gap: 10px; }
.faq-icon { color: var(--accent); font-size: 14px; flex-shrink: 0; }
.faq-question:hover { background: var(--surface); }

.faq-arrow { font-size: 11px; color: var(--gray-400); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.active .faq-arrow { transform: rotate(180deg); color: var(--black); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; background: var(--surface); }
.faq-item.active .faq-answer { max-height: 600px; padding: 0 20px 20px; }
.faq-answer p { font-size: 13px; color: var(--gray-600); line-height: 1.8; margin-bottom: 6px; padding-top: 14px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { list-style: disc; padding-left: 18px; margin-bottom: 8px; }
.faq-answer ul li { font-size: 13px; color: var(--gray-600); line-height: 1.7; margin-bottom: 3px; }
.faq-answer a { color: var(--accent); font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

.faq-cta { margin-top: 32px; }

.faq-cta-content {
    display: flex; align-items: center; gap: 18px;
    padding: 24px 28px; background: var(--black);
    border-radius: var(--radius-lg); color: var(--white);
}

.faq-cta-content > i { font-size: 32px; color: var(--white); flex-shrink: 0; }
.faq-cta-content div { flex: 1; }
.faq-cta-content h3 { font-size: 16px; font-weight: 800; margin-bottom: 3px; }
.faq-cta-content p { font-size: 12px; opacity: 0.6; }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; background: #25d366; color: var(--white);
    border-radius: 0; font-size: 12px; font-weight: 700;
    transition: all var(--transition); white-space: nowrap; flex-shrink: 0;
    text-transform: uppercase; letter-spacing: 0.8px;
}

.btn-whatsapp:hover { background: #1fa855; transform: translateY(-1px); }

/* ========================================
   BREADCRUMB (standalone)
   ======================================== */
.breadcrumb-section { background: var(--surface); border-bottom: 1px solid var(--gray-200); padding: 10px 0; }

/* ========================================
   PRODUCT DETAIL PAGE (PDP)
   ======================================== */
.pdp-section { padding: 36px 0 72px; }
.pdp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

.pdp-gallery { position: sticky; top: 80px; }
.pdp-main-image { position: relative; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gray-200); }
.pdp-main-image img { width: 85%; height: auto; object-fit: contain; transition: transform .4s ease; }
.pdp-main-image:hover img { transform: scale(1.04); }
.pdp-badge { position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 700; color: #fff; z-index: 2; text-transform: uppercase; }
.pdp-badge.sale { background: var(--accent); }
.pdp-badge.new { background: var(--black); }
.pdp-zoom-btn { position: absolute; bottom: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-600); font-size: 14px; cursor: pointer; transition: all .2s; z-index: 2; }
.pdp-zoom-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.pdp-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.pdp-thumb { width: 72px; height: 72px; border-radius: var(--radius-md); border: 2px solid var(--gray-200); overflow: hidden; cursor: pointer; transition: border-color .2s; display: flex; align-items: center; justify-content: center; background: var(--surface); }
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--black); }
.pdp-thumb img { width: 90%; height: auto; object-fit: contain; }

.pdp-category { color: var(--gray-500); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.pdp-name { font-size: 26px; font-weight: 800; color: var(--black); margin: 4px 0 10px; line-height: 1.2; text-transform: uppercase; }
.pdp-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.pdp-rating .stars { color: var(--warning); font-size: 14px; }
.pdp-rating .rating-text { font-size: 12px; color: var(--gray-500); }

.pdp-prices { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.pdp-price-old { font-size: 15px; color: var(--gray-500); text-decoration: line-through; }
.pdp-price-current { font-size: 28px; font-weight: 900; color: var(--black); }
.pdp-discount-tag { background: #fee2e2; color: var(--danger); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-sm); }

.pdp-payment-options { background: var(--success-bg); border: 1px solid #c6e6c6; border-radius: var(--radius-lg); padding: 12px 16px; margin-bottom: 18px; }
.pdp-pix { font-size: 14px; color: var(--success); margin-bottom: 4px; }
.pdp-pix strong { font-size: 16px; }
.pdp-pix-tag { background: var(--success); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; margin-left: 4px; }
.pdp-installment { font-size: 12px; color: var(--gray-600); }

.pdp-separator { height: 1px; background: var(--gray-200); margin: 18px 0; }

.pdp-size-section { margin-bottom: 18px; }
.pdp-size-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.pdp-size-header label { font-weight: 600; color: var(--black); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.size-guide-link { font-size: 12px; color: var(--gray-500); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.size-guide-link:hover { color: var(--black); }
.pdp-size-options { display: flex; gap: 8px; }
.pdp-size-btn { width: 48px; height: 48px; border-radius: var(--radius-md); border: 2px solid var(--gray-200); background: var(--white); font-size: 14px; font-weight: 700; color: var(--black); cursor: pointer; transition: all .2s; }
.pdp-size-btn:hover { border-color: var(--black); }
.pdp-size-btn.active { border-color: var(--black); background: var(--black); color: var(--white); }
.pdp-size-info { font-size: 11px; color: var(--gray-500); margin-top: 6px; }

.pdp-qty-section { margin-bottom: 18px; }
.pdp-qty-section label { font-weight: 600; font-size: 13px; display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.pdp-qty-control { display: flex; align-items: center; border: 2px solid var(--gray-200); border-radius: var(--radius-md); width: fit-content; overflow: hidden; }
.qty-btn { width: 40px; height: 40px; background: var(--surface); border: none; font-size: 13px; cursor: pointer; color: var(--gray-600); transition: all .2s; }
.qty-btn:hover { background: var(--black); color: var(--white); }
.pdp-qty-control input { width: 44px; height: 40px; text-align: center; border: none; font-size: 15px; font-weight: 700; font-family: inherit; }

.pdp-shipping { margin-bottom: 18px; }
.pdp-shipping label { font-weight: 600; font-size: 13px; display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.pdp-shipping-input { display: flex; gap: 8px; }
.pdp-shipping-input input { flex: 1; padding: 10px 12px; border: 2px solid var(--gray-200); border-radius: var(--radius-md); font-size: 13px; font-family: inherit; }
.pdp-shipping-input input:focus { border-color: var(--black); outline: none; }
.btn-calc-shipping { padding: 10px 18px; background: var(--black); color: var(--white); border: none; border-radius: var(--radius-md); font-weight: 600; font-size: 13px; cursor: pointer; font-family: inherit; transition: background .2s; text-transform: uppercase; }
.btn-calc-shipping:hover { background: var(--accent); }

.pdp-shipping-result { margin-top: 10px; }
.shipping-option { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: var(--surface); border-radius: var(--radius-md); margin-bottom: 4px; font-size: 12px; }
.shipping-option.free { background: var(--success-bg); border: 1px solid #c6e6c6; }
.shipping-price { font-weight: 700; }
.shipping-price.free { color: var(--success); }

.pdp-actions { margin-bottom: 18px; }
.pdp-actions .btn { margin-bottom: 8px; font-size: 14px; padding: 14px; }
.btn-lg { padding: 14px 22px; font-size: 14px; }
.pdp-wishlist-btn { width: 100%; padding: 10px; background: none; border: 2px solid var(--gray-200); border-radius: var(--radius-md); color: var(--gray-600); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; font-family: inherit; }
.pdp-wishlist-btn:hover { border-color: var(--danger); color: var(--danger); }

.pdp-trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 18px 0; }
.pdp-trust-item { text-align: center; padding: 12px 6px; background: var(--surface); border-radius: var(--radius-md); }
.pdp-trust-item i { font-size: 18px; color: var(--black); margin-bottom: 4px; display: block; }
.pdp-trust-item span { font-size: 10px; color: var(--gray-600); font-weight: 600; line-height: 1.3; }

.pdp-tabs-section { margin-top: 52px; border-top: 1px solid var(--gray-200); }
.pdp-tabs-nav { display: flex; gap: 0; border-bottom: 1px solid var(--gray-200); }
.pdp-tab-btn { padding: 14px 24px; font-size: 13px; font-weight: 600; color: var(--gray-500); background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; transition: all .2s; font-family: inherit; margin-bottom: -1px; text-transform: uppercase; letter-spacing: 0.3px; }
.pdp-tab-btn:hover { color: var(--black); }
.pdp-tab-btn.active { color: var(--black); border-bottom-color: var(--black); }
.tab-count { background: var(--black); color: var(--white); font-size: 10px; padding: 1px 6px; border-radius: 8px; margin-left: 4px; }

.pdp-tab-content { display: none; padding: 28px 0; }
.pdp-tab-content.active { display: block; }
.pdp-tab-content h3 { font-size: 18px; margin-bottom: 14px; color: var(--black); text-transform: uppercase; }
.pdp-features { list-style: none; padding: 0; }
.pdp-features li { padding: 6px 0; font-size: 13px; color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
.pdp-features li i { color: var(--success); font-size: 12px; }

.pdp-details-table { width: 100%; border-collapse: collapse; }
.pdp-details-table tr { border-bottom: 1px solid var(--gray-100); }
.pdp-details-table th { text-align: left; padding: 10px 14px; font-size: 13px; color: var(--gray-500); width: 160px; font-weight: 600; }
.pdp-details-table td { padding: 10px 14px; font-size: 13px; color: var(--black); }

.pdp-reviews-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.reviews-big-rating { display: flex; align-items: center; gap: 12px; }
.big-number { font-size: 44px; font-weight: 900; color: var(--black); }
.reviews-big-rating .stars { color: var(--warning); font-size: 16px; }
.pdp-review-item { padding: 18px 0; border-bottom: 1px solid var(--gray-100); }
.review-item-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.review-item-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; flex-shrink: 0; }
.review-item-header strong { font-size: 13px; }
.review-item-header span { font-size: 11px; color: var(--gray-500); }
.review-item-stars { color: var(--warning); font-size: 13px; margin-bottom: 6px; }
.no-reviews { color: var(--gray-500); text-align: center; padding: 36px 0; }

.pdp-related { margin-top: 52px; }

/* Zoom */
.pdp-zoom-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10000; display: none; align-items: center; justify-content: center; }
.pdp-zoom-modal.active { display: flex; }
.pdp-zoom-modal .zoom-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.85); }
.pdp-zoom-modal .zoom-content { position: relative; z-index: 2; max-width: 90vw; max-height: 90vh; }
.pdp-zoom-modal .zoom-content img { max-width: 100%; max-height: 85vh; border-radius: var(--radius-lg); }
.zoom-close { position: absolute; top: -18px; right: -18px; width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: none; font-size: 16px; cursor: pointer; box-shadow: var(--shadow-md); }

/* Review form */
.review-form-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; }
.rfm-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.rfm-content { position: relative; z-index: 2; background: var(--white); border-radius: var(--radius-xl); padding: 28px; max-width: 460px; width: 90%; max-height: 90vh; overflow-y: auto; }
.rfm-close { position: absolute; top: 14px; right: 14px; width: 28px; height: 28px; border-radius: 50%; background: var(--surface); border: none; font-size: 12px; cursor: pointer; }
.rfm-content h3 { font-size: 18px; margin-bottom: 18px; text-transform: uppercase; }
.rf-stars { font-size: 26px; color: var(--gray-200); cursor: pointer; display: flex; gap: 3px; }
.rf-stars i.active { color: var(--warning); }

/* ========================================
   CHECKOUT PAGE
   ======================================== */
.checkout-body { background: var(--surface); }
.checkout-header { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 14px 0; }
.checkout-header-content { display: flex; align-items: center; justify-content: space-between; }
.checkout-steps-indicator { display: flex; align-items: center; gap: 6px; }
.step-ind { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gray-400); font-weight: 600; }
.step-ind.active { color: var(--black); }
.step-ind.completed { color: var(--success); }
.step-num { width: 24px; height: 24px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.step-ind.active .step-num { background: var(--black); color: var(--white); border-color: var(--black); }
.step-ind.completed .step-num { background: var(--success); color: var(--white); border-color: var(--success); }
.step-line { width: 28px; height: 2px; background: var(--gray-200); }
.checkout-secure { font-size: 12px; color: var(--success); font-weight: 600; }

.checkout-main { padding: 36px 0 72px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }
.checkout-forms { background: var(--white); border-radius: var(--radius-xl); padding: 28px; border: 1px solid var(--gray-200); }

.checkout-step { display: none; }
.checkout-step.active { display: block; }
.checkout-step h2 { font-size: 20px; margin-bottom: 22px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; }
.checkout-step h2 i { color: var(--accent); }

.form-row { margin-bottom: 14px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 0; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--black); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 12px; border: 2px solid var(--gray-200); border-radius: var(--radius-md); font-size: 13px; font-family: inherit; transition: border-color .2s; background: var(--white); }
.form-group input:focus, .form-group select:focus { border-color: var(--black); outline: none; }
.form-group small { font-size: 11px; color: var(--gray-500); display: block; margin-top: 3px; }
.form-group small a { color: var(--accent); }

.shipping-methods { margin-top: 10px; }
.shipping-method { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 6px; cursor: pointer; transition: all .2s; }
.shipping-method.active, .shipping-method:hover { border-color: var(--black); background: var(--surface); }
.shipping-method input { accent-color: var(--black); }
.sm-info { flex: 1; }
.sm-info strong { display: block; font-size: 13px; }
.sm-info span { font-size: 11px; color: var(--gray-500); }
.sm-price { font-weight: 700; font-size: 14px; }
.sm-price.free { color: var(--success); }

.checkout-nav-btns { display: flex; gap: 10px; justify-content: space-between; margin-top: 22px; }

/* Auth tabs */
.auth-tabs { display: flex; gap: 0; margin-bottom: 22px; border-radius: var(--radius-md); overflow: hidden; border: 2px solid var(--gray-200); }
.auth-tab { flex: 1; padding: 12px 14px; font-size: 13px; font-weight: 600; color: var(--gray-500); background: var(--surface); border: none; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 6px; font-family: inherit; text-transform: uppercase; letter-spacing: 0.3px; }
.auth-tab:first-child { border-right: 2px solid var(--gray-200); }
.auth-tab.active { background: var(--black); color: var(--white); }
.auth-tab:hover:not(.active) { background: var(--gray-100); color: var(--black); }
.auth-panel { display: none; }
.auth-panel.active { display: block; animation: fadeInUp 0.3s ease; }

.payment-methods-ck { display: flex; gap: 8px; margin-bottom: 18px; }
.pay-method-btn { flex: 1; padding: 12px; border: 2px solid var(--gray-200); border-radius: var(--radius-md); font-size: 13px; font-weight: 600; color: var(--gray-600); cursor: pointer; transition: all .2s; text-align: center; font-family: inherit; background: var(--white); }
.pay-method-btn:hover { border-color: var(--black); color: var(--black); }
.pay-method-btn.active { border-color: var(--black); background: var(--surface); color: var(--black); }
.pay-discount { background: var(--success); color: var(--white); font-size: 9px; padding: 2px 5px; border-radius: 3px; margin-left: 3px; }

.pay-content { display: none; }
.pay-content.active { display: block; }

.pix-info { display: grid; grid-template-columns: 180px 1fr; gap: 20px; }
.pix-qr-placeholder { width: 180px; height: 180px; background: var(--surface); border: 2px dashed var(--gray-200); border-radius: var(--radius-xl); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gray-500); }
.pix-qr-placeholder i { font-size: 44px; color: var(--success); margin-bottom: 8px; }
.pix-details h3 { font-size: 16px; margin-bottom: 10px; }
.pix-details ul { list-style: none; padding: 0; }
.pix-details li { padding: 5px 0; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.pix-details li i { color: var(--success); }
.pix-total { margin-top: 14px; padding: 12px 16px; background: var(--success-bg); border-radius: var(--radius-md); display: flex; justify-content: space-between; font-size: 15px; }
.pix-total strong { font-size: 22px; color: var(--success); }

.boleto-info { text-align: center; padding: 28px; }
.boleto-icon { font-size: 44px; color: var(--gray-500); margin-bottom: 14px; }
.boleto-info ul { list-style: none; padding: 0; text-align: left; max-width: 380px; margin: 14px auto 0; }
.boleto-info li { padding: 6px 0; font-size: 13px; display: flex; gap: 6px; color: var(--gray-600); }

.order-confirmed { text-align: center; padding: 36px 0; }
.confirm-icon { font-size: 64px; color: var(--success); margin-bottom: 18px; }
.order-confirmed h2 { font-size: 24px; margin-bottom: 8px; text-transform: uppercase; }
.order-number { font-size: 16px; color: var(--gray-600); margin-bottom: 28px; }
.confirm-details { display: flex; flex-direction: column; gap: 12px; max-width: 460px; margin: 28px auto; text-align: left; }
.confirm-detail-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--surface); border-radius: var(--radius-md); }
.confirm-detail-item i { font-size: 20px; color: var(--accent); flex-shrink: 0; }
.confirm-detail-item strong { display: block; font-size: 13px; }
.confirm-detail-item span { font-size: 11px; color: var(--gray-500); }
.confirm-actions { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }

/* Cart Items */
.ck-cart-item { display: flex; align-items: center; gap: 12px; padding: 14px; background: var(--surface); border-radius: var(--radius-lg); margin-bottom: 8px; transition: all .2s; border: 1px solid transparent; }
.ck-cart-item:hover { border-color: var(--gray-200); background: var(--white); }
.ck-cart-img { width: 64px; height: 64px; border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0; }
.ck-cart-img img { width: 100%; height: 100%; object-fit: cover; }
.ck-cart-info { flex: 1; min-width: 0; }
.ck-cart-info h4 { font-size: 13px; font-weight: 700; margin: 0 0 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ck-cart-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.ck-size { font-size: 11px; color: var(--gray-500); display: flex; align-items: center; gap: 3px; }
.ck-size strong { color: var(--black); }
.ck-cart-price { font-size: 14px; font-weight: 800; color: var(--black); }
.ck-cart-remove { width: 32px; height: 32px; border: none; background: transparent; color: var(--gray-400); cursor: pointer; border-radius: var(--radius-md); font-size: 13px; transition: all .2s; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ck-cart-remove:hover { background: #fef2f2; color: var(--danger); }

.how-it-works-box { margin-top: 28px; padding: 20px; background: var(--success-bg); border-radius: var(--radius-lg); max-width: 480px; margin-left: auto; margin-right: auto; }
.how-it-works-box h4 { margin-bottom: 12px; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.how-it-works-box .how-steps { font-size: 13px; color: #475569; text-align: left; line-height: 1.9; }
.how-it-works-box .how-steps p { margin: 0; }

.form-error { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #fef2f2; border: 1px solid #fee2e2; border-radius: var(--radius-md); color: var(--danger); font-size: 13px; font-weight: 600; margin-top: 14px; animation: shake .4s; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 20%, 60% { transform: translateX(-3px); } 40%, 80% { transform: translateX(3px); } }

.summary-card { background: var(--white); border-radius: var(--radius-xl); padding: 24px; border: 1px solid var(--gray-200); position: sticky; top: 18px; }
.summary-card h3 { font-size: 16px; margin-bottom: 18px; text-transform: uppercase; }
.summary-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); }
.summary-item img { width: 52px; height: 52px; object-fit: cover; border-radius: var(--radius-md); }
.summary-item-info { flex: 1; min-width: 0; }
.summary-item-info strong { display: block; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.summary-item-info span { font-size: 11px; color: var(--gray-500); }
.summary-item-price { font-weight: 700; font-size: 13px; white-space: nowrap; }
.summary-separator { height: 1px; background: var(--gray-200); margin: 14px 0; }
.summary-coupon { margin-bottom: 14px; }
.coupon-input-wrap { display: flex; gap: 6px; }
.coupon-input-wrap input { flex: 1; padding: 8px 10px; border: 2px solid var(--gray-200); border-radius: var(--radius-md); font-size: 12px; font-family: inherit; }
.coupon-input-wrap button { padding: 8px 14px; background: var(--black); color: var(--white); border: none; border-radius: var(--radius-md); font-weight: 600; font-size: 12px; cursor: pointer; font-family: inherit; }
.coupon-applied { display: flex; align-items: center; gap: 6px; padding: 8px; background: var(--success-bg); border-radius: var(--radius-md); font-size: 12px; color: var(--success); font-weight: 600; }
.coupon-applied button { background: none; border: none; color: var(--danger); cursor: pointer; }

.summary-totals { margin-bottom: 14px; }
.summary-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 13px; }
.summary-row.total { border-top: 2px solid var(--gray-200); padding-top: 10px; margin-top: 4px; font-size: 16px; }
.summary-row.total strong { font-size: 20px; color: var(--black); }
.pix-row strong { color: var(--success) !important; }

.summary-trust { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.st-item { font-size: 11px; color: var(--gray-500); display: flex; align-items: center; gap: 3px; }
.st-item i { color: var(--success); }

/* ========================================
   SUBPAGE LAYOUT
   ======================================== */
.subpage-section { padding: 44px 0 72px; background: var(--body-bg); }
.subpage-container { max-width: 880px; margin: 0 auto; }
.subpage-header { text-align: center; margin-bottom: 36px; }

.subpage-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--black); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto 18px;
}

.subpage-header h1 { font-size: 28px; font-weight: 900; color: var(--black); margin-bottom: 6px; text-transform: uppercase; }
.subpage-header p { font-size: 14px; color: var(--gray-500); max-width: 460px; margin: 0 auto; line-height: 1.6; }

/* Tracking */
.tracking-search-box { max-width: 560px; margin: 0 auto 36px; text-align: center; }
.tracking-search-box label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.tracking-input-group { display: flex; gap: 8px; }
.tracking-input-group input { flex: 1; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius-md); font-size: 14px; font-family: inherit; }
.tracking-input-group input:focus { border-color: var(--black); outline: none; }

.tracking-order-info { background: var(--white); border-radius: var(--radius-xl); padding: 24px; border: 1px solid var(--gray-200); margin-bottom: 20px; }
.tracking-order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 8px; }
.tracking-order-header h2 { font-size: 20px; text-transform: uppercase; }
.tracking-date { font-size: 12px; color: var(--gray-500); }
.tracking-status-badge { padding: 5px 14px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700; }
.tracking-status-badge.pending { background: #fef3c7; color: #92400e; }
.tracking-status-badge.shipped { background: #dbeafe; color: #1e40af; }
.tracking-status-badge.delivered { background: #d1fae5; color: #065f46; }

.tracking-item { display: flex; align-items: center; gap: 10px; padding: 8px; background: var(--surface); border-radius: var(--radius-md); margin-bottom: 4px; }
.tracking-item img { width: 44px; height: 44px; object-fit: cover; border-radius: var(--radius-md); }
.tracking-item strong { font-size: 13px; }
.tracking-item span:last-child { margin-left: auto; font-weight: 700; }

.tracking-timeline { background: var(--white); border-radius: var(--radius-xl); padding: 24px; border: 1px solid var(--gray-200); margin-bottom: 20px; }
.tracking-timeline h3 { font-size: 16px; margin-bottom: 20px; text-transform: uppercase; }
.timeline { position: relative; }
.timeline-item { display: flex; gap: 14px; padding-bottom: 24px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: 16px; top: 36px; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item:last-child::before { display: none; }
.timeline-item.completed::before { background: var(--success); }
.timeline-dot { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--gray-200); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gray-400); flex-shrink: 0; z-index: 1; }
.timeline-item.completed .timeline-dot { background: var(--success); border-color: var(--success); color: var(--white); }
.timeline-item.current .timeline-dot { border-color: var(--accent); color: var(--accent); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb),.3); } 50% { box-shadow: 0 0 0 6px rgba(var(--accent-rgb),0); } }
.timeline-content strong { display: block; font-size: 13px; }
.timeline-content span { font-size: 11px; color: var(--gray-500); }
.timeline-content p { font-size: 12px; color: var(--gray-600); margin-top: 3px; }

.tracking-help { display: flex; align-items: center; gap: 14px; background: var(--success-bg); border-radius: var(--radius-xl); padding: 18px 22px; }
.tracking-help i { font-size: 28px; color: #25d366; flex-shrink: 0; }
.tracking-help div { flex: 1; }
.tracking-help strong { display: block; font-size: 14px; }
.tracking-not-found { text-align: center; padding: 36px; color: var(--gray-500); }
.tracking-not-found i { font-size: 44px; margin-bottom: 14px; display: block; }

/* Size Guide */
.size-guide-content h2 { font-size: 18px; margin: 36px 0 14px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; }
.size-guide-content h2 i { color: var(--accent); }

.size-tip-card { display: flex; gap: 12px; padding: 16px 20px; background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius-lg); margin-bottom: 24px; }
.size-tip-card i { font-size: 22px; color: var(--warning); flex-shrink: 0; margin-top: 2px; }
.size-tip-card strong { display: block; margin-bottom: 3px; }
.size-tip-card p { font-size: 13px; color: var(--gray-600); margin: 0; }

.size-table-wrap { overflow-x: auto; }
.size-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); }
.size-table thead { background: var(--black); }
.size-table th { padding: 12px 16px; color: var(--white); font-size: 12px; font-weight: 600; text-align: left; text-transform: uppercase; letter-spacing: 0.5px; }
.size-table td { padding: 12px 16px; font-size: 13px; border-bottom: 1px solid var(--gray-100); }
.size-label { color: var(--accent); font-size: 15px; }
.highlight-row { background: var(--surface); }
.most-sold { background: var(--black); color: var(--white); font-size: 9px; padding: 2px 6px; border-radius: 3px; margin-left: 6px; font-weight: 600; text-transform: uppercase; }
.size-note { font-size: 11px; color: var(--gray-500); margin-top: 8px; }

.measure-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 18px; }
.measure-step { text-align: center; padding: 24px 18px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); position: relative; }
.measure-step-num { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); width: 24px; height: 24px; background: var(--black); color: var(--white); border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.measure-step-icon { font-size: 24px; color: var(--black); margin-bottom: 10px; }
.measure-step h3 { font-size: 14px; margin-bottom: 6px; }
.measure-step p { font-size: 12px; color: var(--gray-600); }

.model-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.model-card { padding: 24px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.model-badge { display: inline-block; padding: 3px 12px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 700; color: var(--white); margin-bottom: 10px; text-transform: uppercase; }
.model-badge.jogador { background: var(--black); }
.model-badge.torcedor { background: var(--gray-700); }
.model-card ul { list-style: none; padding: 0; margin: 10px 0; }
.model-card li { padding: 4px 0; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.model-card li i { color: var(--success); font-size: 12px; }
.model-tip { font-size: 12px; color: var(--gray-600); background: var(--surface); padding: 8px 12px; border-radius: var(--radius-md); margin-top: 10px; }

.size-cta { text-align: center; background: var(--surface); border-radius: var(--radius-xl); padding: 36px; margin-top: 26px; }
.size-cta h3 { font-size: 20px; margin-bottom: 6px; text-transform: uppercase; }
.size-cta p { color: var(--gray-600); margin-bottom: 18px; }

/* Cookie Consent */
.cookie-consent { position: fixed; bottom: -200px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-200); padding: 16px 22px; z-index: 9999; display: flex; align-items: center; justify-content: center; gap: 18px; box-shadow: 0 -2px 12px rgba(0,0,0,.06); transition: bottom .4s var(--ease); }
.cookie-consent.show { bottom: 0; }
.cookie-content { display: flex; align-items: center; gap: 10px; flex: 1; max-width: 680px; }
.cookie-icon { font-size: 24px; flex-shrink: 0; }
.cookie-content p { font-size: 12px; color: var(--gray-600); margin: 0; }
.cookie-content a { color: var(--black); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; gap: 6px; flex-shrink: 0; }
.btn-sm { padding: 7px 16px; font-size: 12px; }

/* Cart sidebar enhancements */
.cart-coupon-section { padding: 10px 0; border-bottom: 1px solid var(--gray-100); margin-bottom: 10px; }
.cart-coupon-input { display: flex; gap: 6px; }
.cart-coupon-input input { flex: 1; padding: 7px 10px; border: 2px solid var(--gray-200); border-radius: var(--radius-md); font-size: 12px; font-family: inherit; }
.cart-coupon-input input:focus { border-color: var(--black); outline: none; }
.cart-coupon-input button { padding: 7px 12px; background: var(--black); color: var(--white); border: none; border-radius: var(--radius-md); font-size: 11px; font-weight: 600; cursor: pointer; font-family: inherit; }
.cart-coupon-applied { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--success); font-weight: 600; background: var(--success-bg); padding: 7px 10px; border-radius: var(--radius-md); }
.cart-coupon-applied button { background: none; border: none; color: var(--danger); cursor: pointer; font-size: 11px; margin-left: auto; }
.cart-subtotal, .cart-discount { display: flex; justify-content: space-between; font-size: 13px; padding: 3px 0; }
.cart-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; padding: 6px 0; border-top: 2px solid var(--gray-200); margin-top: 3px; }
.cart-pix-total { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 600; padding: 6px 10px; margin-top: 6px; background: var(--success-bg); border-radius: var(--radius-md); border: 1px solid #c6e6c6; }
.cart-pix-total span { display: flex; align-items: center; gap: 5px; color: var(--success); }
.cart-pix-total strong { color: var(--success); font-size: 15px; }
.cart-item-size { font-size: 11px; color: var(--gray-500); }

/* ========================================
   CATALOG CARD VARIANT (renderCatalogCard)
   ======================================== */
.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    aspect-ratio: 1;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-actions {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transition: all var(--transition);
    z-index: 3;
}

.product-card:hover .product-actions { opacity: 1; transform: translateY(-50%) translateX(0); }

.action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
}

.action-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.product-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    font-weight: 600;
    display: block;
}

.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-full);
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    transition: all var(--transition);
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-add-cart:hover { background: var(--accent); transform: translateY(-1px); }

/* Subpages responsive */
@media (max-width: 1200px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 992px) {
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-highlight-card { flex-direction: column; text-align: center; }
    .content-card { padding: 24px 20px; }
    .faq-cta-content { flex-direction: column; text-align: center; }
    .about-numbers { grid-template-columns: repeat(2, 1fr); }
    .how-steps { flex-direction: column; gap: 0; }
    .how-step-connector { transform: rotate(90deg); padding: 0; margin: -6px 0; }
    .footer-trust-seals { flex-wrap: wrap; }
    .trust-seal { flex: 0 0 calc(33.333% - 1px); border-right: 1px solid rgba(255,255,255,0.06); }
    .trust-seal:nth-child(3), .trust-seal:last-child { border-right: none; }
    .pdp-layout { grid-template-columns: 1fr; gap: 28px; }
    .pdp-gallery { position: static; }
    .checkout-layout { grid-template-columns: 1fr; }
    .summary-card { position: static; }
    .pix-info { grid-template-columns: 1fr; }
    .model-comparison { grid-template-columns: 1fr; }
    .measure-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .page-title { font-size: 22px; }
    .catalog-toolbar { flex-direction: column; align-items: stretch; }
    .catalog-filters { justify-content: center; }
    .catalog-sort { justify-content: center; }
    .exchange-steps { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .promo-countdown { flex-wrap: wrap; justify-content: center; }
    .trust-score { flex-direction: column; gap: 4px; }
    .trust-seal span { display: none; }
    .pdp-trust-badges { grid-template-columns: repeat(2, 1fr); }
    .pdp-name { font-size: 20px; }
    .pdp-price-current { font-size: 24px; }
    .checkout-steps-indicator .step-text { display: none; }
    .checkout-forms { padding: 18px; }
    .payment-methods-ck { flex-direction: column; }
    .tracking-order-header { flex-direction: column; align-items: flex-start; }
    .measure-steps { grid-template-columns: 1fr; }
    .cookie-consent { flex-direction: column; text-align: center; gap: 10px; padding: 14px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .tracking-help { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .page-hero { padding: 28px 0 24px; }
    .page-title { font-size: 18px; }
    .page-subtitle { font-size: 12px; }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .content-card { padding: 18px 16px; }
    .info-banner { flex-direction: column; text-align: center; padding: 16px; }
    .about-values { grid-template-columns: 1fr; }
    .about-numbers { grid-template-columns: 1fr 1fr; }
    .number-card .number { font-size: 26px; }
    .faq-question { padding: 12px 14px; font-size: 13px; }
    .faq-cta-content { padding: 18px; }
    .contact-cards { grid-template-columns: 1fr; }
    .footer-trust-seals { justify-content: space-around; }
    .trust-seal { padding: 16px 8px; flex: 0 0 calc(50% - 1px); }
    .trust-seal:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.06); }
    .trust-seal:nth-child(4), .trust-seal:last-child { border-right: none; }
    .testimonial-header { flex-direction: column; align-items: flex-start; gap: 4px; }
    .pdp-size-options { flex-wrap: wrap; }
    .pdp-thumbs { flex-wrap: wrap; }
    .pdp-tabs-nav { overflow-x: auto; }
    .pdp-tab-btn { white-space: nowrap; padding: 10px 16px; font-size: 12px; }
    .checkout-header-content { flex-direction: column; gap: 10px; }
    .checkout-nav-btns { flex-direction: column; }
    .form-row.two-col, .form-row.three-col { grid-template-columns: 1fr; }
    .confirm-actions { flex-direction: column; }
    .tracking-input-group { flex-direction: column; }
    .subpage-header h1 { font-size: 22px; }
    .subpage-icon { width: 52px; height: 52px; font-size: 20px; }
}

/* ========================================
   DARK MODE — prefers-color-scheme + manual [data-theme="dark"]
   ======================================== */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --body-bg: #0d1117;
        --surface: #161b22;
        --surface-2: #1c2128;
        --card-bg: #21262d;
        --gray-700: #c9d1d9;
        --gray-600: #b1bac4;
        --gray-500: #8b949e;
        --gray-400: #6e7681;
        --gray-300: #484f58;
        --gray-200: #30363d;
        --gray-100: #21262d;
        --gray-50: #161b22;
        --shadow-sm: 0 2px 6px rgba(0,0,0,0.4);
        --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
        --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
    }
}

[data-theme="dark"] {
    --body-bg: #0d1117;
    --surface: #161b22;
    --surface-2: #1c2128;
    --card-bg: #21262d;
    --gray-700: #c9d1d9;
    --gray-600: #b1bac4;
    --gray-500: #8b949e;
    --gray-400: #6e7681;
    --gray-300: #484f58;
    --gray-200: #30363d;
    --gray-100: #21262d;
    --gray-50: #161b22;
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) { color-scheme: dark; } }
[data-theme="dark"] { color-scheme: dark; }

/* Dark mode overrides for components that don't use CSS variables */
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .header { background: var(--body-bg); border-bottom-color: var(--gray-200); } }
[data-theme="dark"] .header { background: var(--body-bg); border-bottom-color: var(--gray-200); }

@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .header.scrolled { background: rgba(13,17,23,0.98); } }
[data-theme="dark"] .header.scrolled { background: rgba(13,17,23,0.98); }

@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .search-bar input { background: var(--surface); border-color: var(--gray-200); color: var(--gray-700); } }
[data-theme="dark"] .search-bar input { background: var(--surface); border-color: var(--gray-200); color: var(--gray-700); }

@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .search-bar input:focus { background: var(--card-bg); border-color: var(--accent); } }
[data-theme="dark"] .search-bar input:focus { background: var(--card-bg); border-color: var(--accent); }

@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .product-card { background: var(--card-bg); border-color: var(--gray-200); } }
[data-theme="dark"] .product-card { background: var(--card-bg); border-color: var(--gray-200); }

@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .mega-menu { background: var(--card-bg); border-color: var(--gray-200); } }
[data-theme="dark"] .mega-menu { background: var(--card-bg); border-color: var(--gray-200); }

@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .nav-item a { color: var(--gray-600); } }
[data-theme="dark"] .nav-item a { color: var(--gray-600); }

@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .nav-item:hover a, :root:not([data-theme="light"]) .nav-item.active a { color: var(--gray-700); } }
[data-theme="dark"] .nav-item:hover a,
[data-theme="dark"] .nav-item.active a { color: var(--gray-700); }

/* ========================================
   DARK MODE TOGGLE BUTTON
   ======================================== */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: rotate(15deg);
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

/* Skip-to-content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.15s;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* Focus-visible — keyboard nav only */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}

:focus:not(:focus-visible) { outline: none; }

/* Reduce motion for vestibular disorders */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast support */
@media (forced-colors: active) {
    .btn-primary, .product-badge, .promo-label { border: 2px solid ButtonText; }
}

