/* ==============================================
   OCULTAR PLACEHOLDERS - revelados via JS
   ============================================== */
#footer-phone,
#footer-whatsapp-contact,
#footer-email {
    display: none;
}

#footer-about:empty {
    display: none;
}

/* =====================================================
   🛒 TRUEX STORE - CSS v2.0
   Template profissional baseado em Dooca
   ===================================================== */

/* Importar fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* =====================================================
   VARIÁVEIS CSS
   ===================================================== */
:root {
    /* Cores - serão sobrescritas pela config da loja via JS */
    --color-primary: #7ED957;
    --color-primary-rgb: 126, 217, 87;
    --color-primary-dark: #6bc548;
    --color-primary-light: #a5e88a;
    --color-secondary: #1a2744;
    --color-secondary-light: #2a3a5c;
    --color-accent: #ff6b35;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;
    
    /* Cores do Header */
    --header-bg-color: #1a2744;
    --header-text-color: #ffffff;
    
    /* Cores do Footer */
    --footer-bg-color: #1a2744;
    --footer-text-color: #ffffff;
    --footer-link-color: rgba(255,255,255,0.8);
    --footer-link-hover-color: #7ED957;
    
    /* Tons de cinza */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Texto */
    --text-primary: #1a2744;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --text-light: #ffffff;
    
    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #1a2744;
    
    /* Tipografia */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-heading: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Espaçamento */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Bordas */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-card-hover: 0 12px 24px rgba(0,0,0,0.12);
    
    /* Transições */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}

/* =====================================================
   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;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

/* =====================================================
   UTILITIES
   ===================================================== */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-xl);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-primary { color: var(--color-primary); }
.text-success { color: var(--color-success); }
.text-error { color: var(--color-error); }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }
.gap-3 { gap: var(--spacing-lg); }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.p-3 { padding: var(--spacing-lg); }
.p-4 { padding: var(--spacing-xl); }

.bg-light { background-color: var(--bg-secondary); }
.bg-white { background-color: var(--bg-primary); }
.bg-dark { background-color: var(--bg-dark); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 12px 24px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn .material-icons {
    font-size: 20px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--text-light);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-secondary);
    color: var(--text-light);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background: var(--color-secondary-light);
    border-color: var(--color-secondary-light);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--text-light);
}

.btn-outline-secondary {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--gray-300);
}

.btn-outline-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 8px 12px;
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--text-primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: var(--font-size-xs);
}

.btn-lg {
    padding: 16px 32px;
    font-size: var(--font-size-base);
}

.btn-block {
    width: 100%;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
}

.btn-icon.btn-sm {
    width: 36px;
    height: 36px;
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: var(--font-size-base);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.2);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* =====================================================
   BARRA DE INFORMAÇÕES (verde no topo) - WhatsApp + Horário centralizado
   ===================================================== */
.info-bar {
    background: var(--color-primary);
    color: var(--text-light);
    padding: 5px 0;
    font-size: 12px;
}

.info-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.info-bar-center {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.info-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    right: 0;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.info-bar-item .material-icons {
    font-size: 16px;
}

.info-bar-item svg {
    flex-shrink: 0;
}

.info-bar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--text-light);
    transition: all var(--transition-fast);
    opacity: 0.9;
}

.info-bar-social:hover {
    opacity: 1;
    transform: scale(1.15);
}

.info-bar-link {
    color: var(--text-light);
    opacity: 0.9;
    transition: opacity var(--transition-fast);
    font-weight: 500;
}

.info-bar-link:hover {
    opacity: 1;
}

/* =====================================================
   BARRA PROMOCIONAL ANIMADA (escura) - Marquee
   ===================================================== */
.promo-bar {
    color: var(--text-light);
    padding: 0;
    font-size: var(--font-size-sm);
    font-weight: 700;
    letter-spacing: 0.5px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 42px;
    text-transform: uppercase;
    /* Animated diagonal stripes background */
    background: repeating-linear-gradient(
        -45deg,
        var(--promo-bar-color1, var(--color-secondary)),
        var(--promo-bar-color1, var(--color-secondary)) 10px,
        var(--promo-bar-color2, var(--color-secondary-dark, #0d1b2a)) 10px,
        var(--promo-bar-color2, var(--color-secondary-dark, #0d1b2a)) 20px
    );
    background-size: 28.28px 28.28px;
    animation: promoStripeScroll 1.5s linear infinite;
}

.promo-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

@keyframes promoStripeScroll {
    0% { background-position: 0 0; }
    100% { background-position: 28.28px 0; }
}

.promo-marquee {
    position: relative;
    width: 100%;
    height: 100%;
}

.tarja-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.5s ease;
    white-space: nowrap;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.tarja-slide.active {
    opacity: 1;
}

.tarja-slide .material-icons {
    font-size: 18px;
    color: #FFD700;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.tarja-slide span:not(.material-icons) {
    font-size: 0.85rem;
    letter-spacing: 0.8px;
}

/* Highlighted words in tarjas */
.tarja-slide strong,
.tarja-slide b {
    color: #FFD700;
    font-weight: 800;
}

.tarja-slide .tarja-cupom {
    background: #FFD700;
    color: #1a1a2e;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-left: 6px;
    display: inline-block;
    text-shadow: none;
}

.promo-bar:hover .tarja-slide {
    /* pausa visual - não precisa parar timer */
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    background: var(--color-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

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

.header-main .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.header-logo img {
    height: 80px;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

/* Search */
.header-search {
    flex: 1;
    max-width: 700px;
}

.search-form {
    display: flex;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.search-form:focus-within {
    background: var(--bg-primary);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-lg);
}

.search-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-size: var(--font-size-base);
}

.search-form input::placeholder {
    color: var(--text-muted);
}

.search-form input:focus {
    outline: none;
}

.search-form button {
    padding: 14px 24px;
    background: transparent;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.search-form button:hover {
    color: var(--color-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    color: var(--text-light);
    font-weight: 600;
}

.header-action:hover {
    background: rgba(0,0,0,0.1);
}

.header-action .material-icons {
    font-size: 26px;
}

.header-action span {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.header-action.cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 6px;
    background: var(--color-secondary);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   NAVIGATION - Menu de Categorias com Ícones
   ===================================================== */
.nav-bar {
    background: var(--color-secondary);
    border-top: none;
    position: relative;
    z-index: var(--z-dropdown, 100);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border-bottom: 3px solid transparent;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.nav-menu > li:first-child > a {
    border-left: none;
}

.nav-menu > li > a .nav-icon {
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.nav-menu > li > a .nav-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-menu > li > a:hover .nav-icon img {
    filter: brightness(0) invert(0.6) sepia(1) saturate(5) hue-rotate(80deg);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background: rgba(255,255,255,0.1);
    color: var(--color-primary);
}

.nav-menu > li > a:hover .nav-icon,
.nav-menu > li > a.active .nav-icon {
    color: var(--color-primary);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-primary);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: var(--z-dropdown);
}

.nav-menu > li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 12px 20px;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.nav-dropdown li a:hover {
    background: var(--gray-50);
    color: var(--color-primary);
    padding-left: 24px;
}

/* =====================================================
   MEGA MENU - Dropdown com todas as categorias
   ===================================================== */
.mega-menu-wrapper {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-primary, #fff);
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: var(--z-dropdown);
    border-top: 3px solid var(--color-primary, #7ED957);
    max-height: 70vh;
    overflow-y: auto;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Grid de colunas do mega menu */
.mega-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 32px;
}

.mega-col {
    width: 25%;
    min-width: 200px;
    padding: 0 20px 24px;
    box-sizing: border-box;
}

.mega-col-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary, #1e293b);
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--gray-100, #f1f5f9);
    transition: color .15s;
}

.mega-col-title:hover {
    color: var(--color-primary, #7ED957);
}

.mega-col-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--color-primary, #7ED957);
}

.mega-col-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.mega-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col-links li a {
    display: block;
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-secondary, #64748b);
    text-decoration: none;
    transition: all .15s;
}

.mega-col-links li a:hover {
    color: var(--color-primary, #7ED957);
    padding-left: 6px;
}

/* Header bar do mega menu */
.mmc-header-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--color-secondary, #1a2744);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.mmc-header-bar strong { flex: 1; letter-spacing: .5px; text-transform: uppercase; }
.mmc-close-btn {
    background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer;
    display: flex; align-items: center; padding: 0; transition: color .15s;
}
.mmc-close-btn:hover { color: #fff; }
.mmc-close-btn .material-icons { font-size: 18px; }

/* Lista de categorias */
.mmc-list {
    overflow-y: auto;
    flex: 1;
}
.mmc-list::-webkit-scrollbar { width: 4px; }
.mmc-list::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 2px; }

/* Item de categoria */
.mmc-item {
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.mmc-item:last-child { border-bottom: none; }

.mmc-header {
    display: flex;
    align-items: center;
    padding: 0;
    cursor: default;
    transition: background .15s;
}
.mmc-item.has-sub .mmc-header {
    cursor: pointer;
}
.mmc-item.has-sub .mmc-header:hover { background: #f5f7fa; }

.mmc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary, #1e293b);
    text-decoration: none;
    flex: 1;
    min-width: 0;
    transition: color .15s;
}
.mmc-item:not(.has-sub) .mmc-link:hover { color: var(--color-primary, #7ED957); }
.mmc-icon { font-size: 18px; color: var(--color-primary, #7ED957); flex-shrink: 0; display: inline-flex; align-items: center; }
.mmc-icon img { width: 18px; height: 18px; object-fit: contain; }
.mmc-nome { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.mmc-arrow {
    font-size: 18px;
    color: #aaa;
    padding-right: 12px;
    flex-shrink: 0;
    transition: transform .22s ease, color .15s;
}
.mmc-arrow.rotated { transform: rotate(90deg); color: var(--color-primary, #7ED957); }

/* Submenu expansível */
.mmc-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, opacity 0.2s ease;
    opacity: 0;
    background: #f8fafc;
    border-top: 1px solid #f0f0f0;
}
.mmc-sub.open {
    max-height: 400px;
    opacity: 1;
}
.mmc-sub-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px 8px 46px;
    font-size: 12px;
    color: #4b5563;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.03);
    transition: all .15s;
}
.mmc-sub-link:hover { background: #edf5e0; color: var(--color-primary, #7ED957); padding-left: 50px; }
.mmc-sub-all {
    color: var(--color-secondary, #1a2744);
    font-weight: 600;
    background: #f0f4ff;
    padding-left: 16px;
}
.mmc-sub-all:hover { background: #e0e8ff; padding-left: 20px; }

/* Manter compatibilidade com clases antigas */
.mega-menu-category { display: none !important; }

.mega-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.25);
    z-index: calc(var(--z-dropdown) - 1);
}

.mega-menu-overlay.active {
    display: block;
}

/* =====================================================
   BANNER CAROUSEL (Principal)
   ===================================================== */
.banner-carousel {
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
}

.banner-slide {
    display: none;
    position: relative;
}

.banner-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.banner-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-content h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.banner-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.banner-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.banner-dot.active,
.banner-dot:hover {
    background: var(--text-light);
    transform: scale(1.2);
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.banner-arrow:hover {
    background: var(--text-light);
    transform: translateY(-50%) scale(1.1);
}

.banner-arrow.prev { left: 20px; }
.banner-arrow.next { right: 20px; }

.banner-arrow .material-icons {
    font-size: 28px;
    color: var(--text-primary);
}

/* =====================================================
   MINI BANNERS (Grid de banners menores)
   ===================================================== */
.mini-banners {
    padding: var(--spacing-xl) 0;
}

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

.mini-banners-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.mini-banners-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.mini-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--gray-200);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.mini-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mini-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.mini-banner:hover img {
    transform: scale(1.05);
}

.mini-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--text-light);
}

.mini-banner-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 4px;
}

.mini-banner-content p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

.mini-banner-tag {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--color-primary);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
}

/* =====================================================
   BANNER FULL (Banner largo promocional)
   ===================================================== */
.banner-full {
    position: relative;
    overflow: hidden;
    margin: var(--spacing-2xl) 0;
}

.banner-full-inner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
}

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

.banner-full-content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-3xl);
    max-width: 600px;
    color: var(--text-light);
}

.banner-full-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.banner-full-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.banner-full-content .btn {
    font-size: var(--font-size-base);
    padding: 16px 40px;
}

.banner-full-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26,39,68,0.9) 0%, rgba(26,39,68,0.3) 100%);
}

/* Banner sem overlay - quando é só imagem */
.banner-full-inner.banner-full-no-overlay {
    min-height: auto;
}

.banner-full-inner.banner-full-no-overlay img {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 150px;
    max-height: none;
    object-fit: contain;
}

.banner-full-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

/* Picture dentro dos banners */
.banner-slide picture,
.mini-banner picture,
.banner-full-inner picture {
    display: contents;
}

.banner-slide picture img,
.mini-banner picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-full-inner picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-full-inner.banner-full-no-overlay picture {
    display: block;
    width: 100%;
}

.banner-full-inner.banner-full-no-overlay picture img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =====================================================
   CARROSSEL DE MARCAS
   ===================================================== */
.brands-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.brands-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.brands-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.brands-carousel {
    display: flex;
    gap: var(--spacing-2xl);
    animation: scrollBrands 30s linear infinite;
    width: max-content;
}

.brands-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
}

.brand-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Brands Grid (alternativa sem animação) */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
}

/* =====================================================
   BANNER NEWSLETTER
   ===================================================== */
.newsletter-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--spacing-3xl) 0;
    margin: var(--spacing-2xl) 0;
}

.newsletter-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-2xl);
}

.newsletter-content {
    flex: 1;
    color: var(--text-light);
}

.newsletter-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.newsletter-content p {
    font-size: var(--font-size-base);
    opacity: 0.9;
}

.newsletter-form-inline {
    display: flex;
    gap: var(--spacing-sm);
    flex: 1;
    max-width: 500px;
}

.newsletter-form-inline input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
}

.newsletter-form-inline button {
    padding: 16px 32px;
    background: var(--color-secondary);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.newsletter-form-inline button:hover {
    background: var(--color-secondary-light);
}

/* =====================================================
   🎡 ROLETA DE PRÊMIOS (SPIN WHEEL)
   ===================================================== */

/* Overlay */
.roleta-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.roleta-overlay.roleta-visible {
    opacity: 1;
}

/* Popup Container */
.roleta-popup {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    max-width: 820px;
    width: 95%;
    max-height: 95vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.15);
    animation: roletaPopupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

@keyframes roletaPopupIn {
    from { transform: scale(0.7) translateY(30px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

/* Botão Fechar */
.roleta-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    line-height: 1;
}

.roleta-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

/* Layout 2 colunas */
.roleta-layout {
    display: flex;
    align-items: center;
    gap: 0;
    max-height: 95vh;
}

/* Lado esquerdo: Form */
.roleta-form-side {
    flex: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-y: auto;
    max-height: 95vh;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.roleta-form-side::-webkit-scrollbar {
    display: none;
}

.roleta-icon-gift {
    font-size: 48px;
    margin-bottom: 8px;
    animation: roletaBounce 2s infinite;
}

@keyframes roletaBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.roleta-title {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    letter-spacing: -0.5px;
}

.roleta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0 0 24px 0;
    line-height: 1.4;
}

/* Inputs */
.roleta-input-group {
    width: 100%;
    margin-bottom: 12px;
}

.roleta-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
    box-sizing: border-box;
}

.roleta-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.roleta-input:focus {
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

/* Botão Girar */
.roleta-btn-girar {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}

.roleta-btn-girar:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.roleta-btn-girar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.roleta-btn-girar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: roletaShine 3s infinite;
}

@keyframes roletaShine {
    from { transform: translateX(-100%) rotate(45deg); }
    to { transform: translateX(100%) rotate(45deg); }
}

.roleta-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(26, 26, 46, 0.3);
    border-top-color: #1a1a2e;
    border-radius: 50%;
    animation: roletaSpin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

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

.roleta-termos {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    margin-top: 16px;
    line-height: 1.3;
}

/* Lado direito: Roda */
.roleta-wheel-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

.roleta-wheel-container {
    position: relative;
    width: 340px;
    height: 340px;
}

/* Spinner wrapper - this is what rotates, not the canvas */
.roleta-wheel-spinner {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    will-change: transform;
    transform-origin: center center;
}

.roleta-wheel-spinner canvas {
    display: block;
    width: 340px;
    height: 340px;
}

/* Ponteiro */
.roleta-ponteiro {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 30px solid #FFD700;
    z-index: 5;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4));
}

/* Resultado */
.roleta-resultado {
    text-align: center;
    animation: roletaFadeIn 0.5s ease;
}

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

.roleta-resultado-icon {
    font-size: 52px;
    margin-bottom: 8px;
}

.roleta-resultado h3 {
    color: #FFD700;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.roleta-resultado p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0 0 20px 0;
}

/* Cupom Box */
.roleta-cupom-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px dashed #FFD700;
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.roleta-cupom-box span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.roleta-cupom-box code {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: transparent;
}

.roleta-btn-copiar {
    background: #FFD700;
    color: #1a1a2e;
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.roleta-btn-copiar:hover {
    background: #FFA500;
    transform: scale(1.05);
}

/* Botão fechar resultado */
.roleta-btn-fechar {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.roleta-btn-fechar:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Confetti */
.roleta-confetti {
    position: absolute;
    border-radius: 2px;
    opacity: 0;
    animation: roletaConfettiFall linear forwards;
    pointer-events: none;
    z-index: 20;
}

@keyframes roletaConfettiFall {
    0% { opacity: 1; transform: translateY(0) rotate(0deg); }
    100% { opacity: 0; transform: translateY(500px) rotate(720deg); }
}

/* FAB (botão flutuante para reabrir) */
.roleta-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    animation: roletaFabPulse 2s infinite;
    border: none;
}

.roleta-fab:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

@keyframes roletaFabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 215, 0, 0.7); }
}

/* =====================================================
   ROLETA - RESPONSIVO
   ===================================================== */

@media (max-width: 768px) {
    .roleta-popup {
        max-width: 100%;
        width: 100%;
        max-height: 100dvh;
        min-height: 0;
        border-radius: 0;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .roleta-popup::-webkit-scrollbar {
        display: none;
    }
    
    .roleta-layout {
        flex-direction: column;
        align-items: center;
        max-height: none;
    }
    
    .roleta-form-side {
        padding: 16px 20px 20px;
        max-height: none;
        overflow-y: visible;
        order: 2;
    }
    
    .roleta-wheel-side {
        padding: 12px 10px 0;
        order: 1;
    }
    
    .roleta-wheel-container {
        width: 190px;
        height: 190px;
    }
    
    .roleta-wheel-spinner {
        width: 190px;
        height: 190px;
    }
    
    .roleta-wheel-spinner canvas {
        width: 190px;
        height: 190px;
    }
    
    .roleta-ponteiro {
        border-left-width: 10px;
        border-right-width: 10px;
        border-top-width: 20px;
        top: -4px;
    }
    
    .roleta-close {
        top: 8px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .roleta-icon-gift {
        font-size: 28px;
        margin-bottom: 2px;
    }
    
    .roleta-title {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }
    
    .roleta-subtitle {
        font-size: 0.8rem;
        margin-bottom: 14px;
    }
    
    .roleta-input-group {
        margin-bottom: 8px;
    }
    
    .roleta-input {
        padding: 11px 14px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .roleta-btn-girar {
        padding: 13px 20px;
        font-size: 0.95rem;
        border-radius: 10px;
        margin-top: 4px;
    }
    
    .roleta-termos {
        margin-top: 10px;
        font-size: 0.65rem;
    }
    
    .roleta-resultado-icon {
        font-size: 36px;
    }
    
    .roleta-resultado h3 {
        font-size: 1.2rem;
    }
    
    .roleta-resultado p {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }
    
    .roleta-cupom-box {
        padding: 10px 14px;
    }
    
    .roleta-cupom-box code {
        font-size: 1.1rem;
    }
    
    .roleta-btn-fechar {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    .roleta-fab {
        bottom: 16px;
        left: 16px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .roleta-wheel-container {
        width: 170px;
        height: 170px;
    }
    
    .roleta-wheel-spinner {
        width: 170px;
        height: 170px;
    }
    
    .roleta-wheel-spinner canvas {
        width: 170px;
        height: 170px;
    }
    
    .roleta-form-side {
        padding: 12px 16px 16px;
    }
    
    .roleta-icon-gift {
        font-size: 24px;
    }
    
    .roleta-title {
        font-size: 1.1rem;
    }
    
    .roleta-input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .roleta-btn-girar {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* =====================================================
   DEPOIMENTOS DE CLIENTES
   ===================================================== */
.testimonials-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.testimonials-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.testimonials-header p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.testimonials-header .divider {
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    margin: 0 auto;
    border-radius: var(--radius-full);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
}

.testimonial-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.testimonial-avatar {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-full);
    margin: 0 auto var(--spacing-lg);
    overflow: hidden;
    border: 5px solid var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--spacing-md);
}

.testimonial-stars .material-icons {
    font-size: 24px;
    color: #1a1a1a;
}

.testimonial-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
}

.testimonial-name {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
}

/* =====================================================
   PRODUTOS COM COUNTDOWN (Ofertas Relâmpago)
   ===================================================== */
.flash-deals-section {
    padding: var(--spacing-3xl) 0;
}

.flash-deals-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.flash-deals-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.flash-deals-header p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.flash-deal-item {
    display: grid;
    grid-template-columns: 250px 1fr 200px 1fr;
    align-items: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.flash-deal-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.flash-deal-image {
    width: 250px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

/* Badge de desconto */
.flash-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.flash-slider {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.flash-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.flash-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.flash-slide-dots {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.flash-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0,0,0,0.25);
    cursor: pointer;
    transition: background 0.3s;
}

.flash-dot.active {
    background: var(--color-primary, #e63946);
}

.flash-deal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.flash-deal-info {
    text-align: center;
}

.flash-deal-info h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.flash-deal-price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    font-style: italic;
}

/* Preço original riscado */
.flash-price-original {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 400;
    font-style: normal;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 2px;
}

.flash-deal-price span {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 400;
    font-style: normal;
    color: var(--text-secondary);
}

.flash-deal-stock {
    text-align: center;
}

.flash-deal-stock .label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-style: italic;
}

.flash-deal-stock .quantity {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.flash-deal-stock .unit {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Barra de progresso de estoque */
.flash-stock-progress {
    width: 100%;
    padding: 0 10px;
}

.flash-progress-bar {
    width: 100%;
    height: 10px;
    background: var(--gray-200, #e5e7eb);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.flash-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #ef4444 50%, #dc2626 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
}

.flash-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.flash-stock-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.flash-vendidos {
    color: #dc2626;
    font-weight: 600;
}

.flash-restantes {
    color: var(--text-secondary);
}

.flash-deal-countdown {
    background: var(--color-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--text-light);
}

.flash-deal-countdown .countdown-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.flash-deal-countdown .countdown-subtitle {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--spacing-md);
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-digits {
    display: flex;
    gap: 3px;
}

.countdown-digit {
    background: var(--text-primary);
    color: var(--text-light);
    width: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.countdown-separator {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.countdown-label {
    font-size: 10px;
    text-transform: lowercase;
    margin-top: 4px;
    opacity: 0.9;
}

.flash-deal-countdown .btn {
    background: var(--text-primary);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--font-size-sm);
}

.flash-deal-countdown .btn:hover {
    background: var(--color-secondary);
}

/* Responsivo - Depoimentos e Flash Deals */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .flash-deal-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .flash-deal-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .testimonial-avatar {
        width: 120px;
        height: 120px;
    }
    
    .countdown-digit {
        width: 25px;
        height: 35px;
        font-size: var(--font-size-base);
    }
}

/* =====================================================
   RESPONSIVO - Banners
   ===================================================== */
@media (max-width: 992px) {
    .mini-banners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mini-banners-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-full-content {
        padding: var(--spacing-xl);
    }
    
    .banner-full-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .newsletter-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form-inline {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mini-banners-grid,
    .mini-banners-grid.cols-2,
    .mini-banners-grid.cols-4 {
        grid-template-columns: 1fr;
    }
    
    .banner-full-inner {
        min-height: 200px;
    }
    
    /* Banner sem overlay no mobile - respeita a proporção da imagem */
    .banner-full-inner.banner-full-no-overlay {
        min-height: auto;
    }
    
    .banner-full-content {
        padding: var(--spacing-lg);
    }
    
    .newsletter-form-inline {
        flex-direction: column;
    }
    
    .brand-item {
        width: 120px;
        height: 60px;
    }
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header.text-left {
    text-align: left;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: italic;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    border-radius: var(--radius-full);
}

.section-header.text-left .section-title::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-top: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.text-left .section-subtitle {
    margin-left: 0;
}

/* Section with header and arrows */
.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
}

.section-nav {
    display: flex;
    gap: var(--spacing-sm);
}

.section-nav button {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.section-nav button:hover {
    background: var(--color-primary);
    color: var(--text-light);
}

/* =====================================================
   FEATURES BAR
   ===================================================== */
.features-bar {
    background: var(--bg-secondary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-bottom: none;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon .material-icons {
    font-size: 26px;
    color: var(--text-light);
}

.feature-content h5 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.feature-content p {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

/* =====================================================
   MENU CATEGORIAS CIRCULAR (estilo KaBuM)
   ===================================================== */
.categorias-circular-section {
    padding: 20px 0 25px;
    background: var(--bg-secondary);
    border-top: none;
}

.categorias-circular-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 45px;
}

.categorias-circular-track {
    display: flex;
    gap: 44px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    flex: 1;
    justify-content: center;
}

.categorias-circular-track::-webkit-scrollbar {
    display: none;
}

.cat-circ-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 120px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 5px 10px;
}

.cat-circ-item:hover {
    transform: translateY(-5px);
}

.cat-circ-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.cat-circ-item:hover .cat-circ-icon {
    filter: brightness(1.35);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
    transform: scale(1.08);
}

.cat-circ-icon .material-icons {
    font-size: 38px;
    color: #fff;
}

/* Ícone por URL — exibe a imagem real sem filtro nenhum */
.cat-circ-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.cat-circ-item:hover .cat-circ-icon img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.cat-circ-nome {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
    max-width: 110px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cat-circ-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.cat-circ-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.cat-circ-arrow:hover .material-icons {
    color: #fff;
}

.cat-circ-arrow .material-icons {
    font-size: 22px;
    color: var(--text-secondary);
}

.cat-circ-prev {
    left: 0;
}

.cat-circ-next {
    right: 0;
}

/* =====================================================
   PRODUCT CARD
   ===================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 280px));
    gap: var(--spacing-lg);
    justify-content: center;
}

.products-grid.cols-5 {
    grid-template-columns: repeat(5, minmax(0, 240px));
}

.products-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 280px));
}

.products-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 320px));
}

/* Link "Ver todos" das seções */
.section-see-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: var(--spacing-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.section-see-all:hover {
    gap: 8px;
    color: var(--color-primary-dark);
}

.section-see-all .material-icons {
    font-size: 18px;
}

.product-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.product-card > a {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.product-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--gray-50);
    flex-shrink: 0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--spacing-sm);
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

/* Badges */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.product-badge.sale {
    background: var(--color-accent);
    color: var(--text-light);
}

.product-badge.new {
    background: var(--color-primary);
    color: var(--text-light);
}

.product-badge.hot {
    background: var(--color-primary);
    color: var(--text-light);
}

/* Badge de desconto circular */
.product-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 55px;
    height: 55px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.product-discount-badge .percent {
    font-size: 16px;
    line-height: 1;
}

.product-discount-badge .off {
    font-size: 10px;
    text-transform: uppercase;
}

/* Quando tem badge de desconto, mover outros badges para baixo */
.product-card-image:has(.product-discount-badge) .product-badges {
    top: 75px;
}

/* Quick Actions */
.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    color: var(--text-secondary);
}

.product-action-btn:hover {
    background: var(--color-primary);
    color: var(--text-light);
    transform: scale(1.1);
}

.product-action-btn.favorited {
    background: var(--color-error);
    color: var(--text-light);
}

.product-action-btn .material-icons {
    font-size: 20px;
}

/* Card Info */
.product-card-info {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: var(--font-size-xs);
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-name {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.product-card:hover .product-name {
    color: var(--color-primary);
}

/* Price */
.product-price {
    margin-top: auto;
    padding-top: var(--spacing-sm);
}

.product-price-old {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    min-height: 20px;
}

.product-price-current {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.product-price-pix {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 4px;
}

.product-price-pix .material-icons {
    font-size: 16px;
}

.product-installments {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin-top: 4px;
    min-height: 18px;
}

/* Cronômetro de Promoção no Card */
.product-promo-timer {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    overflow: hidden;
    margin: 0 var(--spacing-sm);
    margin-bottom: 6px;
    border-radius: var(--radius-md);
    height: 32px;
}

.promo-timer-icon {
    background: rgba(0, 0, 0, 0.15);
    width: 32px;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.promo-timer-icon .material-icons {
    font-size: 16px;
    color: #fff;
}

.promo-timer-content {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    padding: 0 8px;
    min-width: 0;
    overflow: hidden;
}

.promo-timer-label {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-transform: uppercase;
    flex-shrink: 0;
}

.promo-timer-countdown {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-timer-expired {
    background: var(--gray-400);
}

.promo-timer-expired .promo-timer-countdown {
    font-size: 10px;
    letter-spacing: 0;
    font-family: inherit;
}

/* Buy Button - sempre alinhado */
.product-card-buy {
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    margin-top: auto;
}

.product-card-buy .btn {
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
}

/* =====================================================
   PRODUCT CAROUSEL
   ===================================================== */
.products-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.products-carousel {
    display: flex;
    gap: var(--spacing-lg);
    transition: transform var(--transition-slow);
    padding: var(--spacing-sm) 0;
}

.products-carousel .product-card {
    flex: 0 0 calc(20% - var(--spacing-lg) * 4/5);
    min-width: 220px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--bg-primary);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: var(--text-light);
}

.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }

/* =====================================================
   DECORAÇÃO QUADRICULADA LATERAL (estilo Bagy)
   Fundo fixo - conteúdo se move por cima
   Padrão xadrez com quadrados sólidos
   ===================================================== */

/* Wrapper de fundo com quadriculado */
.bg-checkered {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    background-color: var(--gray-100);
}

/* Quadriculado lado esquerdo - padrão xadrez */
.bg-checkered::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
    background-color: var(--gray-100);
    background-image: 
        linear-gradient(45deg, #fff 25%, transparent 25%),
        linear-gradient(-45deg, #fff 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #fff 75%),
        linear-gradient(-45deg, transparent 75%, #fff 75%);
    background-size: 80px 80px;
    background-position: 0 0, 0 40px, 40px -40px, -40px 0px;
    opacity: 0.35;
}

/* Quadriculado lado direito - padrão xadrez */
.bg-checkered::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    background-color: var(--gray-100);
    background-image: 
        linear-gradient(45deg, #fff 25%, transparent 25%),
        linear-gradient(-45deg, #fff 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #fff 75%),
        linear-gradient(-45deg, transparent 75%, #fff 75%);
    background-size: 80px 80px;
    background-position: 0 0, 0 40px, 40px -40px, -40px 0px;
    opacity: 0.35;
}

/* Rodapé cobre o quadriculado */
.footer {
    position: relative;
    z-index: 10;
}

/* Esconder em telas menores */
@media (max-width: 1400px) {
    .bg-checkered::before,
    .bg-checkered::after {
        display: none;
    }
}

/* Remover div antiga */
.page-decoration {
    display: none;
}

/* =====================================================
   CATEGORY SECTION
   ===================================================== */
.category-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.category-section:nth-child(even) {
    background: var(--bg-secondary);
}

.category-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.category-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.category-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.category-divider {
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    margin: 0 auto;
    border-radius: var(--radius-full);
}

.category-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--spacing-lg);
}

.category-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary);
    transition: all var(--transition-fast);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.category-link:hover {
    gap: 8px;
}

/* =====================================================
   PRODUCT PAGE
   ===================================================== */
.product-page {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 420px;
}

.product-main-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: zoom-in;
}

.product-thumbnails {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding-bottom: var(--spacing-sm);
}

.product-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--spacing-xs);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
    border-color: var(--color-primary);
}

/* =====================================================
   ZOOM COM LUPA - Produto
   ===================================================== */
.product-main-image {
    position: relative;
}

.product-main-image img {
    transition: none;
}

/* Lupa circular que segue o mouse */
.zoom-lens {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid var(--color-primary, #7ED957);
    box-shadow: 0 0 0 1px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.18);
    cursor: none;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
    overflow: hidden;
    transition: opacity .2s ease;
    background-repeat: no-repeat;
    /* O background-image e background-size são setados via JS */
}

.zoom-lens.active {
    opacity: 1;
}

/* Crosshair no centro da lupa */
.zoom-lens::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 50%;
    pointer-events: none;
}

/* Ícone de zoom no canto da imagem (hint visual) */
.zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,.55);
    color: #fff;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
    z-index: 5;
    transition: opacity .3s;
}

.zoom-hint .material-icons {
    font-size: 16px;
}

.product-main-image:hover .zoom-hint {
    opacity: 0;
}

/* Cursor escondido quando zoom ativo */
.product-main-image.zoom-active {
    cursor: none;
}

.product-main-image.zoom-active img {
    cursor: none;
}

/* === Fullscreen zoom (mobile) === */
.zoom-fullscreen-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    touch-action: none;
}

.zoom-fullscreen-overlay.active {
    opacity: 1;
    visibility: visible;
}

.zoom-fullscreen-overlay img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    transform-origin: center center;
    transition: transform .1s ease;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.zoom-fullscreen-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    font-size: 24px;
    backdrop-filter: blur(4px);
}

.zoom-fullscreen-close:hover {
    background: rgba(255,255,255,.3);
}

.zoom-fullscreen-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: 14px;
    z-index: 10001;
}

.zoom-fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    backdrop-filter: blur(4px);
}

.zoom-fullscreen-nav:hover {
    background: rgba(255,255,255,.25);
}

.zoom-fullscreen-nav.prev { left: 16px; }
.zoom-fullscreen-nav.next { right: 16px; }

/* Mobile: esconder lupa, usar fullscreen */
@media (max-width: 768px) {
    .zoom-lens,
    .zoom-hint {
        display: none !important;
    }
    
    .zoom-fullscreen-nav {
        width: 36px;
        height: 36px;
    }
}

/* Desktop: esconder controles de fullscreen (exceto se forçar) */
@media (min-width: 769px) {
    .zoom-fullscreen-nav {
        width: 48px;
        height: 48px;
    }
}

/* Product Details */
.product-details {
    padding: var(--spacing-md) 0;
}

.product-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

/* Códigos do Produto (SKU, EAN, Marca) */
.product-codes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.product-code {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.product-code:hover {
    background: var(--gray-200);
}

.product-code .material-icons {
    font-size: 14px;
    color: var(--text-muted);
}

.product-code.product-brand {
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.15) 0%, rgba(126, 217, 87, 0.08) 100%);
    color: var(--color-primary-dark);
    font-weight: 600;
}

.product-code.product-brand .material-icons {
    color: var(--color-primary);
}

.product-sku {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.product-stars {
    display: flex;
    gap: 2px;
    color: var(--color-warning);
}

.product-rating-text {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Pricing */
.product-pricing {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.product-pricing .product-price-old {
    font-size: var(--font-size-lg);
    margin-bottom: 4px;
}

.product-pricing .product-price-current {
    font-size: var(--font-size-4xl);
    color: var(--color-primary);
}

.product-pricing .product-price-pix {
    font-size: var(--font-size-lg);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(126, 217, 87, 0.1);
    border-radius: var(--radius-md);
    display: inline-flex;
    margin-top: var(--spacing-sm);
}

.product-pricing .product-installments {
    font-size: var(--font-size-base);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
}

/* Actions */
.product-actions-buy {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.quantity-selector {
    display: flex;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-selector button {
    width: 48px;
    height: 48px;
    background: var(--gray-50);
    font-size: var(--font-size-xl);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.quantity-selector button:hover {
    background: var(--gray-200);
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: var(--font-size-lg);
    font-weight: 600;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.product-actions-buy .btn-primary {
    flex: 1;
    padding: 14px 24px;
    font-size: var(--font-size-base);
}

.product-secondary-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.product-secondary-actions .btn-outline-secondary {
    flex: 1;
}

/* Shipping Calculator */
.product-shipping-calc {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.product-shipping-calc h5 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.shipping-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 100%;
}

.shipping-form input {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
}

.shipping-form button,
.shipping-form .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.shipping-results {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
}

.shipping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-100);
}

.shipping-option:last-child {
    border-bottom: none;
}

.shipping-option-info {
    display: flex;
    flex-direction: column;
}

.shipping-option-name {
    font-weight: 500;
}

.shipping-option-time {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.shipping-option-price {
    font-weight: 700;
    color: var(--color-primary);
}

.shipping-option-price.free {
    color: var(--color-success);
}

/* Product Tabs */
/* =====================================================
   PRODUCT INFO ACCORDION - Sistema de Cascata
   ===================================================== */
.product-info-section {
    margin-top: var(--spacing-3xl);
    border-top: 1px solid var(--gray-200);
    padding-top: var(--spacing-xl);
}

.product-info-section .section-title {
    font-family: 'Poppins', var(--font-family);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.product-info-section .section-title .material-icons {
    color: var(--color-primary);
    font-size: 28px;
}

/* Accordion Container */
.product-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* Accordion Item */
.accordion-item {
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.accordion-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.accordion-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(126, 217, 87, 0.15);
}

/* Accordion Header */
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    cursor: pointer;
    background: var(--bg-primary);
    transition: all var(--transition-fast);
    user-select: none;
}

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.08) 0%, rgba(126, 217, 87, 0.03) 100%);
    border-bottom: 1px solid var(--gray-100);
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.accordion-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-icon .material-icons {
    color: white;
    font-size: 22px;
}

.accordion-title {
    font-family: 'Poppins', var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--text-primary);
}

.accordion-subtitle {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-top: 2px;
}

.accordion-arrow {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.accordion-arrow .material-icons {
    font-size: 20px;
    color: var(--text-secondary);
    transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-arrow {
    background: var(--color-primary);
}

.accordion-item.active .accordion-arrow .material-icons {
    color: white;
    transform: rotate(180deg);
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 10000px;
}

.accordion-body {
    padding: var(--spacing-xl);
    padding-top: var(--spacing-lg);
}

/* Descrição do Produto */
.product-description-content {
    font-family: 'Poppins', var(--font-family) !important;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.9;
    font-size: var(--font-size-base);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product-description-content img {
    max-width: 100% !important;
    height: auto !important;
}

.product-description-content table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

.product-description-content * {
    font-family: 'Poppins', var(--font-family) !important;
}

.product-description-content p,
.product-description-content span,
.product-description-content div {
    font-family: 'Poppins', var(--font-family) !important;
    font-weight: 600;
}

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

.product-description-content ul,
.product-description-content ol {
    font-family: 'Poppins', var(--font-family) !important;
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.product-description-content li {
    font-family: 'Poppins', var(--font-family) !important;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: var(--spacing-sm);
}

.product-description-content ul li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: -12px;
}

.product-description-content h4,
.product-description-content h5,
.product-description-content strong,
.product-description-content b {
    font-family: 'Poppins', var(--font-family) !important;
    color: var(--text-primary);
    font-weight: 700;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

/* Especificações Técnicas - Tabela */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--gray-100);
}

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

.specs-table tr:nth-child(even) {
    background: var(--gray-50);
}

.specs-table td {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-sm);
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    width: 40%;
    background: rgba(126, 217, 87, 0.05);
}

.specs-table td:last-child {
    color: var(--text-secondary);
}

/* Specs Grid - Para muitas especificações */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

.spec-item .spec-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.spec-item .spec-value {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
}

/* Itens Inclusos */
.included-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.included-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.included-item:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.included-item .check-icon {
    width: 24px;
    height: 24px;
    background: var(--color-success);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-item .check-icon .material-icons {
    font-size: 16px;
    color: white;
}

.included-item span {
    font-size: var(--font-size-sm);
    color: var(--text-primary);
}

/* Garantia */
.warranty-info {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.1) 0%, rgba(126, 217, 87, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(126, 217, 87, 0.3);
}

.warranty-badge {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warranty-badge .number {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
    line-height: 1;
}

.warranty-badge .label {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
}

.warranty-details h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.warranty-details p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.warranty-details ul {
    margin-top: var(--spacing-md);
}

.warranty-details li {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    padding: var(--spacing-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.warranty-details li .material-icons {
    font-size: 16px;
    color: var(--color-success);
}

/* Por que Comprar */
.why-buy-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.why-buy-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
}

.why-buy-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.why-buy-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-buy-icon .material-icons {
    font-size: 20px;
    color: white;
}

.why-buy-content h5 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.why-buy-content p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* SKU e Meta Info */
.product-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-100);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    background: var(--gray-50);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.meta-item .material-icons {
    font-size: 16px;
    color: var(--text-muted);
}

.meta-item strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Responsivo */
@media (max-width: 768px) {
    .accordion-header {
        padding: var(--spacing-md);
    }
    
    .accordion-icon {
        width: 36px;
        height: 36px;
    }
    
    .accordion-icon .material-icons {
        font-size: 18px;
    }
    
    .accordion-body {
        padding: var(--spacing-md);
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-table td {
        padding: var(--spacing-sm);
        display: block;
    }
    
    .specs-table td:first-child {
        width: 100%;
        border-bottom: none;
        padding-bottom: 4px;
    }
    
    .specs-table td:last-child {
        padding-top: 0;
    }
    
    .warranty-info {
        flex-direction: column;
        text-align: center;
    }
    
    .warranty-badge {
        margin: 0 auto;
    }
    
    .included-items {
        grid-template-columns: 1fr;
    }
}

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

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* =====================================================
   CART
   ===================================================== */
.cart-page {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--spacing-2xl);
    align-items: start;
}

.cart-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: sticky;
    top: 100px;
}

.cart-items {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.cart-header {
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    font-weight: 600;
}

.cart-item {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-100);
}

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

.cart-item-image {
    width: 100px;
    height: 100px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--spacing-xs);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.cart-item-sku {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.cart-item-price {
    text-align: right;
}

.cart-item-price-unit {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.cart-item-price-total {
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.cart-item-remove {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.cart-item-remove:hover {
    color: var(--color-error);
}

/* Cart Summary */
.cart-summary {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: var(--spacing-lg);
}

.cart-summary h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--gray-200);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    font-size: var(--font-size-xl);
    font-weight: 700;
}

/* Cart Empty */
.cart-empty {
    text-align: center;
    padding: var(--spacing-3xl);
}

.cart-empty .material-icons {
    font-size: 80px;
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
}

.cart-empty h2 {
    margin-bottom: var(--spacing-md);
}

.cart-empty p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* =====================================================
   MODAL CALCULAR FRETE
   ===================================================== */
.frete-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.frete-modal-overlay.active {
    display: flex;
}

.frete-modal {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.frete-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.frete-modal-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0;
}

.frete-modal-close {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.frete-modal-close:hover {
    background: var(--gray-100);
    color: var(--text-primary);
}

.frete-modal-close .material-icons {
    font-size: 18px;
}

.frete-modal-body {
    padding: 24px;
}

.frete-cep-group {
    margin-bottom: 20px;
}

.frete-cep-group label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

.frete-cep-input-row {
    display: flex;
    gap: 10px;
}

.frete-cep-input-row input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: var(--font-size-lg);
    font-weight: 600;
    letter-spacing: 1px;
    transition: border-color var(--transition-fast);
}

.frete-cep-input-row input:focus {
    border-color: var(--color-primary);
    outline: none;
}

.frete-cep-input-row button {
    padding: 14px 24px;
    white-space: nowrap;
}

.frete-busca-cep {
    display: inline-block;
    margin-top: 8px;
    font-size: var(--font-size-xs);
    color: var(--color-primary);
    text-decoration: underline;
}

/* Frete Results */
.frete-calculando {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.spinner-sm {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.frete-gratis-msg {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid #a5d6a7;
    margin-bottom: 16px;
    font-size: var(--font-size-sm);
}

.frete-opcoes-table {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.frete-opcoes-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 10px 16px;
    background: var(--gray-100);
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.frete-opcao {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 14px 16px;
    border-top: 1px solid var(--gray-200);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.frete-opcao:hover {
    background: var(--gray-50);
}

.frete-opcao.selected {
    background: #e8f5e9;
}

.frete-opcao input[type="radio"] {
    display: none;
}

.frete-opcao-nome {
    font-size: var(--font-size-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.frete-opcao-nome::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-400);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.frete-opcao.selected .frete-opcao-nome::before,
.frete-opcao input[type="radio"]:checked ~ .frete-opcao-nome::before {
    border-color: var(--color-primary);
    background: var(--color-primary);
    box-shadow: inset 0 0 0 3px #fff;
}

.frete-opcao-prazo {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.frete-opcao-valor {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-primary);
    text-align: right;
}

.frete-gratis-valor {
    color: #2e7d32;
}

/* Progress bar Frete Grátis */
.frete-progress-box {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
}

.frete-progress-box p {
    font-size: var(--font-size-sm);
    margin-top: 10px;
    margin-bottom: 8px;
}

.frete-progress-bar {
    width: 100%;
    height: 10px;
    background: var(--gray-200);
    border-radius: 5px;
    overflow: hidden;
}

.frete-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f9a825, var(--color-primary));
    border-radius: 5px;
    transition: width 0.5s ease;
}

.frete-gratis-box {
    background: #e8f5e9;
    border-color: #a5d6a7;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2e7d32;
}

.frete-gratis-box .material-icons {
    font-size: 28px;
    color: #2e7d32;
}

/* Cupom de Desconto */
.cart-coupon {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.cart-coupon h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.cart-coupon h4 .material-icons {
    color: var(--color-primary);
    font-size: 20px;
}

.coupon-form {
    display: flex;
    gap: var(--spacing-sm);
}

.coupon-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.coupon-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.coupon-form input::placeholder {
    text-transform: none;
}

.coupon-form button {
    padding: 12px 24px;
    background: var(--color-secondary);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.coupon-form button:hover {
    background: var(--color-secondary-light);
}

/* Cupom aplicado */
.coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    background: rgba(126, 217, 87, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
}

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

.coupon-applied-info .material-icons {
    color: var(--color-success);
}

.coupon-applied-info .coupon-code {
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
}

.coupon-applied-info .coupon-discount {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.coupon-applied button {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.coupon-applied button:hover {
    background: var(--gray-100);
    color: var(--color-error);
}

/* Linha de desconto no resumo */
.cart-summary-discount {
    color: var(--color-success);
    font-weight: 500;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding-top: var(--spacing-3xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
}

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

.footer-logo img {
    height: 50px;
    /* Removido filter que deixava tudo branco */
}

.footer-about {
    font-size: var(--font-size-sm);
    color: var(--footer-text-color);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: var(--footer-text-color);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
    color: var(--footer-text-color);
}

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

.footer-links a {
    font-size: var(--font-size-sm);
    color: var(--footer-link-color);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--footer-link-hover-color);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--footer-link-color);
}

.footer-contact-item .material-icons {
    color: var(--color-primary);
    font-size: 20px;
}

/* Newsletter */
.footer-newsletter p {
    font-size: var(--font-size-sm);
    color: var(--footer-text-color);
    opacity: 0.8;
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--color-primary);
    color: var(--text-light);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--color-primary-dark);
}

/* Footer Bottom */
.footer-payments-section {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-lg);
}

.footer-payments-section .footer-title {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
}

.footer-payment-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.payment-card-img {
    height: 36px;
    width: auto;
    border-radius: 6px;
    transition: transform var(--transition-fast);
    object-fit: contain;
}

.payment-card-img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--spacing-lg) 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-copyright {
    font-size: var(--font-size-sm);
    color: var(--footer-text-color);
    opacity: 0.7;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    color: var(--footer-text-color);
    opacity: 0.8;
}

.truex-logo-footer {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.truex-name {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* =====================================================
   PAINEL DO CLIENTE
   ===================================================== */
.conta-page { max-width: 1000px; margin: 0 auto; display: flex; gap: 24px; }

/* Login / Register */
.conta-login-card, .conta-register-card { max-width: 440px; margin: 40px auto; background: var(--bg-primary); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; }
.conta-register-card { max-width: 600px; }
.conta-login-card h2, .conta-register-card h2 { text-align: center; margin: 0 0 6px; }
.conta-sub { text-align: center; color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; }
.conta-login-link { text-align: center; font-size: 13px; margin-top: 16px; }
.conta-login-link a { color: var(--color-primary); font-weight: 600; }

/* Form */
.conta-form { display: flex; flex-direction: column; gap: 12px; }
.conta-field { display: flex; flex-direction: column; flex: 1; }
.conta-field label { font-size: 12px; font-weight: 600; color: var(--text-secondary); margin-bottom: 5px; }
.conta-field input, .conta-field select { padding: 11px 14px; border: 1px solid var(--gray-300); border-radius: var(--radius-md); font-size: 14px; transition: border-color 0.2s; }
.conta-field input:focus, .conta-field select:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1); }
.conta-row { display: flex; gap: 12px; }

/* Buttons */
.conta-btn-primary { padding: 13px; background: var(--color-primary); color: #fff; border: none; border-radius: var(--radius-md); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-top: 4px; }
.conta-btn-primary:hover { filter: brightness(1.1); }
.conta-btn-primary:disabled { opacity: 0.6; cursor: wait; }
.conta-btn-outline { display: block; text-align: center; padding: 13px; border: 2px solid var(--gray-300); border-radius: var(--radius-md); font-size: 14px; font-weight: 600; color: var(--text-primary); text-decoration: none; cursor: pointer; background: none; width: 100%; }
.conta-btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.conta-btn-sm { display: inline-flex; align-items: center; gap: 4px; padding: 8px 14px; background: var(--color-primary); color: #fff; border: none; border-radius: var(--radius-md); font-size: 13px; font-weight: 600; cursor: pointer; }
.conta-btn-sm:hover { filter: brightness(1.1); }

/* Divider */
.conta-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--gray-400); font-size: 13px; }
.conta-forgot-link { display: block; text-align: right; font-size: 13px; color: var(--color-primary); margin-top: 8px; text-decoration: none; font-weight: 500; transition: opacity 0.2s; }
.conta-forgot-link:hover { opacity: 0.8; text-decoration: underline; }
.conta-divider::before, .conta-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }

/* PF/PJ Toggle */
.conta-tipo-toggle { display: flex; gap: 0; margin-bottom: 20px; border: 2px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.conta-tipo-toggle button { flex: 1; padding: 10px; border: none; background: var(--bg-primary); font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--text-secondary); }
.conta-tipo-toggle button.active { background: var(--color-primary); color: #fff; }

/* Sidebar Menu */
.conta-sidebar { width: 240px; flex-shrink: 0; }
.conta-user { display: flex; align-items: center; gap: 10px; padding: 16px; background: var(--bg-primary); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); margin-bottom: 12px; }
.conta-user .material-icons { font-size: 36px; color: var(--gray-400); }
.conta-user strong { display: block; font-size: 14px; }
.conta-user small { font-size: 11px; color: var(--text-secondary); }
.conta-menu { background: var(--bg-primary); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.conta-menu a { display: flex; align-items: center; gap: 10px; padding: 14px 16px; font-size: 14px; color: var(--text-primary); text-decoration: none; border-bottom: 1px solid var(--gray-100); transition: background 0.15s; }
.conta-menu a:last-child { border-bottom: none; }
.conta-menu a:hover { background: var(--gray-50); }
.conta-menu a.active { color: var(--color-primary); font-weight: 600; background: rgba(var(--color-primary-rgb), 0.04); border-left: 3px solid var(--color-primary); }
.conta-menu a .material-icons { font-size: 20px; }
.conta-logout { color: #e53935 !important; }

/* Content */
.conta-content { flex: 1; background: var(--bg-primary); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; }
.conta-content h2 { font-size: 20px; margin: 0 0 20px; }

/* Empty state */
.conta-empty { text-align: center; padding: 40px; }
.conta-empty .material-icons { font-size: 48px; color: var(--gray-300); }
.conta-empty p { color: var(--text-secondary); margin: 8px 0 16px; }

/* Pedidos */
/* Pedidos - Lista */
.conta-pedidos-count { font-size: 14px; color: var(--text-secondary); margin: -8px 0 16px; }
.conta-pedidos-list { display: flex; flex-direction: column; gap: 12px; }
.conta-pedido-card { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow 0.2s; }
.conta-pedido-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.conta-pedido-head { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 16px; padding: 16px; }
.conta-pedido-status-wrap { display: flex; align-items: flex-start; }
.conta-pedido-status { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px; white-space: nowrap; }
.conta-pedido-status.pendente { background: #fff3e0; color: #e65100; }
.conta-pedido-status.pago, .conta-pedido-status.aprovado { background: #e8f5e9; color: #2e7d32; }
.conta-pedido-status.enviado { background: #e3f2fd; color: #1565c0; }
.conta-pedido-status.entregue { background: #e8f5e9; color: #2e7d32; }
.conta-pedido-status.cancelado { background: #fce4ec; color: #c62828; }
.conta-pedido-meta { display: flex; flex-direction: column; gap: 2px; }
.conta-pedido-meta strong { font-size: 14px; }
.conta-pedido-meta span { font-size: 12px; color: var(--text-secondary); }
.conta-pedido-valores { text-align: right; display: flex; flex-direction: column; gap: 2px; }
.conta-pedido-valores span { font-size: 12px; color: var(--text-secondary); }
.conta-pedido-valores strong { font-size: 15px; }
.conta-pedido-parcelas { color: var(--color-primary) !important; font-weight: 500; }
.conta-pedido-btn { padding: 10px 22px; background: var(--color-primary); color: #fff; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; text-align: center; }
.conta-pedido-btn:hover { filter: brightness(1.1); }

@media (max-width: 768px) {
    .conta-pedido-head { grid-template-columns: 1fr 1fr; gap: 10px; }
    .conta-pedido-status-wrap { order: 1; }
    .conta-pedido-meta { order: 2; }
    .conta-pedido-valores { order: 3; text-align: left; }
    .conta-pedido-btn { order: 4; }
}

/* Pedido Detalhe */
.ped-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.ped-header-info h2 { margin: 0 0 4px; font-size: 22px; }
.ped-date { font-size: 13px; color: var(--text-secondary); }

/* Payment card */
.ped-payment-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; text-align: center; margin-bottom: 16px; }
.ped-payment-title { font-size: 14px; color: var(--text-secondary); margin: 0 0 16px; }
.ped-pix-head { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.ped-pix-val { font-size: 24px; font-weight: 800; }
.ped-qr-wrap { margin: 16px auto; display: flex; justify-content: center; }
.ped-qr-img { width: 220px; height: 220px; object-fit: contain; border: 3px solid var(--gray-200); padding: 8px; background: #fff; border-radius: var(--radius-md); display: block; }
.ped-payment-instrucao { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin: 12px 0; }
.ped-copy-wrap { display: flex; gap: 0; border: 1px solid var(--gray-300); border-radius: var(--radius-md); overflow: hidden; margin: 14px 0; max-width: 500px; margin-left: auto; margin-right: auto; }
.ped-copy-wrap input { flex: 1; border: none; padding: 12px; font-family: monospace; font-size: 12px; background: #fff; min-width: 0; }
.ped-copy-btn { padding: 12px 20px; background: var(--color-secondary); color: #fff; border: none; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.ped-copy-btn:hover { filter: brightness(1.15); }
.ped-expire { font-size: 12px; color: #e65100; font-style: italic; margin-top: 12px; }
.ped-boleto-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--color-primary); color: #fff; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; text-decoration: none; margin-bottom: 14px; }

/* Status Timeline */
.ped-status-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; text-align: center; margin-bottom: 16px; }
.ped-status-card h3 { margin: 0 0 20px; font-size: 16px; font-weight: 700; }
.ped-timeline { display: flex; align-items: flex-start; justify-content: center; gap: 0; padding: 0 10px; }
.ped-timeline-step { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 80px; }
.ped-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--gray-300); border: 3px solid var(--gray-200); transition: all 0.3s; }
.ped-timeline-step.active .ped-dot { background: var(--color-primary); border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(76,175,80,0.15); }
.ped-timeline-step span { font-size: 11px; color: var(--text-secondary); line-height: 1.3; }
.ped-timeline-step.active span { color: var(--text-primary); font-weight: 600; }
.ped-timeline-line { flex: 1; height: 3px; background: var(--gray-200); margin-top: 7px; min-width: 20px; max-width: 60px; }
.ped-timeline-line.active { background: var(--color-primary); }
.ped-cancelado { display: flex; align-items: center; justify-content: center; gap: 8px; color: #c62828; font-size: 16px; font-weight: 700; padding: 12px; }
.ped-cancelado .material-icons { font-size: 28px; }

/* Info grid (endereco + resumo) */
.ped-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ped-info-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; }
.ped-info-card h3 { margin: 0 0 12px; font-size: 16px; font-weight: 700; }
.ped-info-name { font-weight: 700; margin: 0 0 4px; }
.ped-info-card p { margin: 0 0 2px; font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.ped-resumo-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 14px; }
.ped-discount span { color: var(--color-primary); }
.ped-resumo-total { border-top: 1px solid var(--gray-200); margin-top: 6px; padding-top: 8px; font-size: 15px; }

/* Products card */
.ped-products-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; }
.ped-products-card h3 { margin: 0 0 14px; font-size: 16px; font-weight: 700; }
.ped-product { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.ped-product:last-child { border-bottom: none; }
.ped-product img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--gray-200); flex-shrink: 0; }
.ped-product-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ped-product-info strong { font-size: 14px; line-height: 1.3; }
.ped-product-price { font-size: 14px; font-weight: 700; }
.ped-product-sku { font-size: 12px; color: var(--text-secondary); }
.ped-product-unit { font-size: 12px; color: var(--text-secondary); }
.ped-product-total { font-size: 15px; font-weight: 700; white-space: nowrap; }

/* ===== Rastreio Card ===== */
.ped-rastreio-card { 
    border: 2px solid #4CAF50; 
    border-radius: var(--radius-lg); 
    padding: 20px; 
    margin-bottom: 16px; 
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
}
.ped-rastreio-card h3 { 
    margin: 0 0 16px; 
    font-size: 16px; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}
.ped-rastreio-content { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}
.ped-rastreio-info { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}
.ped-rastreio-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 14px; 
}
.ped-rastreio-label { 
    color: var(--text-secondary); 
}
.ped-rastreio-value { 
    font-weight: 600; 
}
.ped-rastreio-code { 
    font-family: monospace; 
    background: #fff; 
    padding: 6px 12px; 
    border-radius: 6px; 
    border: 1px solid #c8e6c9;
    font-size: 15px;
    letter-spacing: 1px;
}
.ped-rastreio-actions { 
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
}
.ped-rastreio-copy { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    padding: 10px 16px; 
    border: 1px solid #c8e6c9; 
    background: #fff; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 13px; 
    font-weight: 500;
    transition: all 0.2s;
}
.ped-rastreio-copy:hover { 
    border-color: #4CAF50; 
    background: #e8f5e9; 
}
.ped-rastreio-copy .material-icons { 
    font-size: 18px; 
}
.ped-rastreio-btn { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    padding: 10px 20px; 
    background: #4CAF50; 
    color: #fff; 
    border-radius: 8px; 
    font-size: 13px; 
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.ped-rastreio-btn:hover { 
    background: #388E3C; 
}
.ped-rastreio-btn .material-icons { 
    font-size: 18px; 
}

/* ===== Nota Fiscal Card ===== */
.ped-nf-card { 
    border: 1px solid #1565c0; 
    border-radius: var(--radius-lg); 
    padding: 20px; 
    margin-bottom: 16px; 
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
.ped-nf-card h3 { 
    margin: 0 0 16px; 
    font-size: 16px; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}
.ped-nf-content { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}
.ped-nf-info { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}
.ped-nf-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 14px; 
}
.ped-nf-label { 
    color: var(--text-secondary); 
}
.ped-nf-value { 
    font-weight: 500; 
}
.ped-nf-chave-row { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 6px; 
    margin-top: 8px; 
    padding-top: 12px; 
    border-top: 1px dashed #90caf9;
}
.ped-nf-chave { 
    font-family: monospace; 
    font-size: 11px; 
    background: #fff; 
    padding: 8px 12px; 
    border-radius: 6px; 
    border: 1px solid #90caf9;
    word-break: break-all;
    line-height: 1.4;
}
.ped-nf-copy-btn { 
    padding: 4px 8px; 
    border: none; 
    background: #1565c0; 
    color: #fff; 
    border-radius: 4px; 
    cursor: pointer;
    display: flex;
    align-items: center;
}
.ped-nf-copy-btn .material-icons { 
    font-size: 16px; 
}
.ped-nf-actions { 
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
}
.ped-nf-btn { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    padding: 10px 16px; 
    border-radius: 8px; 
    font-size: 13px; 
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.ped-nf-btn .material-icons { 
    font-size: 18px; 
}
.ped-nf-btn-pdf { 
    background: #c62828; 
    color: #fff; 
}
.ped-nf-btn-pdf:hover { 
    background: #b71c1c; 
}
.ped-nf-btn-xml { 
    background: #fff; 
    color: #1565c0; 
    border: 1px solid #1565c0;
}
.ped-nf-btn-xml:hover { 
    background: #e3f2fd; 
}

@media (max-width: 768px) {
    .ped-info-grid { grid-template-columns: 1fr; }
    
    /* Timeline ajustada para mobile */
    .ped-timeline { 
        padding: 0 5px; 
        justify-content: space-between;
        overflow-x: auto;
    }
    .ped-timeline-step { 
        min-width: 50px; 
        flex: 1;
    }
    .ped-timeline-step span { 
        font-size: 9px; 
        text-align: center;
        word-break: break-word;
        hyphens: auto;
    }
    .ped-timeline-line { 
        min-width: 10px; 
        max-width: 30px; 
    }
    .ped-status-card {
        padding: 16px 12px;
    }
    .ped-status-card h3 {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    /* Código PIX e Boleto */
    .ped-copy-wrap { flex-direction: column; }
    .ped-copy-wrap input { 
        font-size: 11px; 
        padding: 10px;
        text-overflow: ellipsis;
    }
    .ped-copy-btn { text-align: center; }
    
    /* Rastreio responsivo */
    .ped-rastreio-card {
        padding: 16px;
    }
    .ped-rastreio-card h3 {
        font-size: 14px;
    }
    .ped-rastreio-row { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 4px; 
    }
    .ped-rastreio-code {
        font-size: 12px;
        padding: 8px 10px;
        word-break: break-all;
        max-width: 100%;
        display: block;
    }
    .ped-rastreio-actions { 
        flex-direction: column; 
    }
    .ped-rastreio-copy, .ped-rastreio-btn { 
        width: 100%; 
        justify-content: center; 
    }
    
    /* NF responsivo */
    .ped-nf-card {
        padding: 16px;
    }
    .ped-nf-row { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 4px; 
    }
    .ped-nf-actions { 
        flex-direction: column; 
    }
    .ped-nf-btn { 
        width: 100%; 
        justify-content: center; 
    }
    .ped-nf-chave {
        font-size: 10px;
        word-break: break-all;
    }
    
    /* Header do pedido */
    .ped-header {
        flex-direction: column;
        gap: 10px;
    }
    .ped-header-info h2 {
        font-size: 18px;
    }
    
    /* Products card mobile */
    .ped-products-card {
        padding: 14px;
    }
    .ped-product {
        gap: 10px;
    }
    .ped-product img {
        width: 48px;
        height: 48px;
    }
    .ped-product-info strong {
        font-size: 13px;
    }
    .ped-product-total {
        font-size: 14px;
    }
}

/* Endereços */
.conta-enderecos-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.conta-enderecos-head h2 { margin: 0; }
.conta-novo-end { padding: 16px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 16px; }
.conta-enderecos-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.conta-end-card { padding: 16px; border: 1px solid var(--gray-200); border-radius: var(--radius-md); position: relative; }
.conta-end-card.principal { border-color: var(--color-primary); }
.conta-end-badge { position: absolute; top: 8px; right: 8px; font-size: 10px; font-weight: 700; background: var(--color-primary); color: #fff; padding: 2px 8px; border-radius: 100px; }
.conta-end-card strong { display: block; font-size: 14px; margin-bottom: 6px; }
.conta-end-card p { margin: 2px 0; font-size: 13px; color: var(--text-secondary); }
.conta-end-actions { display: flex; gap: 8px; margin-top: 10px; }
.conta-end-actions button { padding: 4px 10px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); background: none; font-size: 11px; cursor: pointer; display: flex; align-items: center; gap: 4px; }
.conta-end-actions button:hover { border-color: var(--color-primary); color: var(--color-primary); }
.conta-end-actions button.delete:hover { border-color: #e53935; color: #e53935; }
.conta-end-actions button .material-icons { font-size: 14px; }

/* Responsive */
@media (max-width: 768px) {
    .conta-page { flex-direction: column; }
    .conta-sidebar { width: 100%; }
    .conta-row { flex-direction: column; gap: 10px; }
    .conta-enderecos-list { grid-template-columns: 1fr; }
    .conta-login-card, .conta-register-card { margin: 20px auto; padding: 24px; }
    .conta-content { padding: 16px; }
    .conta-content h2 { font-size: 18px; }
}

/* Extra small devices */
@media (max-width: 480px) {
    .ped-timeline { 
        padding: 0; 
        gap: 0;
    }
    .ped-timeline-step { 
        min-width: 45px; 
    }
    .ped-timeline-step span { 
        font-size: 8px; 
    }
    .ped-timeline-line { 
        min-width: 8px; 
        max-width: 20px; 
    }
    .ped-dot {
        width: 14px;
        height: 14px;
    }
    .ped-status-card {
        padding: 12px 8px;
    }
    .ped-rastreio-code {
        font-size: 11px;
        padding: 6px 8px;
        letter-spacing: 0.5px;
    }
    .ped-header-info h2 {
        font-size: 16px;
    }
    .ped-date {
        font-size: 12px;
    }
}

/* =====================================================
   SMART STEPS CHECKOUT
   ===================================================== */
/* =====================================================
   CHECKOUT - LOGIN GATE
   ===================================================== */
.ck-login-gate {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 0;
}

.ck-login-card {
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.ck-login-logo {
    margin-bottom: 28px;
}

.ck-login-logo img {
    max-height: 60px;
    object-fit: contain;
}

.ck-login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.ck-login-sub {
    color: var(--text-muted, #6b7280);
    font-size: 0.9rem;
    margin: 0 0 28px 0;
}

.ck-login-form {
    text-align: left;
}

.ck-login-field {
    margin-bottom: 16px;
}

.ck-login-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.ck-login-field input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200, #e5e7eb);
    border-radius: var(--radius-md, 8px);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.ck-login-field input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb, 34, 197, 94), 0.1);
}

.ck-login-btn-primary {
    width: 100%;
    padding: 15px 24px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md, 8px);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}

.ck-login-btn-primary:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}

.ck-login-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ck-login-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    gap: 12px;
}

.ck-login-divider::before,
.ck-login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200, #e5e7eb);
}

.ck-login-divider span {
    color: var(--text-muted, #6b7280);
    font-size: 0.85rem;
}

.ck-login-forgot {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--color-primary, #7ED957);
    margin-top: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}
.ck-login-forgot:hover { opacity: 0.8; text-decoration: underline; }

.ck-login-btn-outline {
    display: block;
    width: 100%;
    padding: 13px 24px;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gray-200, #e5e7eb);
    border-radius: var(--radius-md, 8px);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
}

.ck-login-btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.ck-login-btn-outline strong {
    color: var(--color-primary);
    font-weight: 700;
}

.ck-login-btn-guest {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    background: none;
    border: none;
    color: var(--text-muted, #6b7280);
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s;
}

.ck-login-btn-guest:hover {
    color: var(--color-primary);
}

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

@media (max-width: 600px) {
    .ck-login-card {
        padding: 32px 24px;
    }
    
    .ck-login-gate {
        min-height: auto;
        padding: 24px 0;
    }
}

.ck-section { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-xl); }
.ck-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: flex-start; }

/* Cards */
.ck-card { background: var(--bg-primary); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; transition: all 0.3s; }
.ck-card.locked { opacity: 0.5; pointer-events: none; }
.ck-card.active { border-color: var(--color-primary); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

.ck-card-head { display: flex; align-items: center; gap: 14px; padding: 18px 22px; }
.ck-card.done .ck-card-head { padding: 16px 22px; }

.ck-card-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-200); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ck-card.active .ck-card-icon { background: var(--color-primary); }
.ck-card-icon.done { background: #4CAF50; }
.ck-card-icon .material-icons { font-size: 18px; color: #fff; }

.ck-num { font-size: 13px; font-weight: 700; color: #fff; }
.ck-card.locked .ck-num { color: var(--gray-500); }

.ck-card-head h3 { margin: 0; font-size: 15px; font-weight: 700; }
.ck-card.done .ck-card-head strong { font-size: 12px; color: var(--color-primary); letter-spacing: 0.5px; }
.ck-card.done .ck-card-head p { margin: 4px 0 0; font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
.ck-card.done .ck-card-head > div { flex: 1; }

.ck-alter-btn { background: none; border: none; color: var(--text-secondary); font-size: 13px; cursor: pointer; padding: 4px 8px; font-weight: 500; }
.ck-alter-btn:hover { color: var(--color-primary); }

.ck-card-body { padding: 0 22px 22px; }

/* Form */
.ck-row { display: flex; gap: 12px; margin-bottom: 12px; }
.ck-row:last-child { margin-bottom: 0; }
.ck-f { flex: 1; display: flex; flex-direction: column; }
.ck-f.full { flex: 1 1 100%; }
.ck-f label { font-size: 12px; font-weight: 600; color: var(--text-secondary); margin-bottom: 5px; }
.ck-f input, .ck-f select { padding: 10px 12px; border: 1px solid var(--gray-300); border-radius: var(--radius-md); font-size: 14px; background: var(--bg-primary); color: var(--text-primary); transition: border-color 0.2s; }
.ck-f input:focus, .ck-f select:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1); }

.ck-cep-wrap { display: flex; gap: 6px; }
.ck-cep-wrap input { flex: 1; }
.ck-cep-wrap button { padding: 0 12px; background: var(--color-primary); color: #fff; border: none; border-radius: var(--radius-md); cursor: pointer; }
.ck-cep-wrap button:hover { filter: brightness(1.1); }

.ck-next-btn { margin-top: 16px; padding: 12px 32px; background: var(--color-primary); color: #fff; border: none; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.ck-next-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* Loading */
.ck-loading { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 20px; color: var(--text-secondary); font-size: 14px; }
.spinning { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Frete */
.ck-frete-gratis { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #e8f5e9; color: #2e7d32; border-radius: var(--radius-md); margin-bottom: 14px; font-size: 14px; }
.ck-frete-progress { margin-bottom: 14px; }
.ck-frete-bar { height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.ck-frete-bar > div { height: 100%; background: var(--color-primary); border-radius: 3px; transition: width 0.3s; }
.ck-frete-progress p { font-size: 13px; color: var(--text-secondary); margin: 0; }

.ck-frete-list { display: flex; flex-direction: column; gap: 8px; }
.ck-frete-opt { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--gray-200); border-radius: var(--radius-md); cursor: pointer; transition: all 0.15s; }
.ck-frete-opt:hover { border-color: var(--gray-400); background: var(--gray-50); }
.ck-frete-opt.selected { border-color: var(--color-primary); background: rgba(var(--color-primary-rgb), 0.03); }
.ck-frete-opt input { display: none; }

.ck-radio { width: 18px; height: 18px; border: 2px solid var(--gray-400); border-radius: 50%; flex-shrink: 0; position: relative; transition: border-color 0.15s; background: #fff; }
.ck-radio::after { content: ''; position: absolute; top: 3px; left: 3px; width: 8px; height: 8px; background: transparent; border-radius: 50%; transition: background 0.15s; }
.ck-frete-opt.selected .ck-radio, .ck-pay-opt.selected .ck-radio { border-color: var(--color-primary); }
.ck-frete-opt.selected .ck-radio::after, .ck-pay-opt.selected .ck-radio::after { background: var(--color-primary); }

.ck-frete-info { flex: 1; }
.ck-frete-info strong { display: block; font-size: 13px; }
.ck-frete-info small { font-size: 11px; color: var(--text-secondary); }
.ck-frete-val { font-weight: 700; font-size: 14px; }
.ck-frete-val.free { color: #2e7d32; }

/* Pagamento */
.ck-pay-list { display: flex; flex-direction: column; gap: 8px; }
.ck-pay-opt { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--gray-200); border-radius: var(--radius-md); cursor: pointer; transition: all 0.15s; }
.ck-pay-opt:hover { border-color: var(--gray-400); background: var(--gray-50); }
.ck-pay-opt.selected { border-color: var(--color-primary); background: rgba(var(--color-primary-rgb), 0.03); }
.ck-pay-opt input { display: none; }
.ck-pay-info { flex: 1; }
.ck-pay-info strong { display: block; font-size: 14px; }
.ck-pay-info small { font-size: 12px; color: var(--text-secondary); }
.ck-off { color: #2e7d32 !important; font-weight: 700; }
.ck-pay-val { font-weight: 700; font-size: 15px; }

.ck-pay-expand { margin-top: 16px; padding: 20px; background: var(--gray-50); border-radius: var(--radius-md); border: 1px solid var(--gray-100); }

/* Card form */
.ck-card-input-wrap { position: relative; }
.ck-card-input-wrap input { padding-right: 50px; }
.ck-card-brand-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: flex; align-items: center; }
.ck-card-brand-icon img { height: 24px; width: auto; }
.ck-card-secure { font-size: 12px; color: var(--text-secondary); margin-top: 12px; line-height: 1.5; }

.ck-pix-logo { text-align: center; margin-bottom: 16px; }
.ck-pix-steps { display: flex; flex-direction: column; gap: 12px; }
.ck-pix-step { display: flex; align-items: flex-start; gap: 12px; }
.ck-pix-step span:first-child { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--color-primary); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--color-primary); flex-shrink: 0; }
.ck-pix-step p { margin: 3px 0 0; font-size: 13px; line-height: 1.4; }

.ck-pay-total { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; margin-top: 16px; border-top: 1px solid var(--gray-200); font-size: 15px; }
.ck-pay-total strong { font-size: 18px; }

.ck-finalizar { width: 100%; padding: 16px; background: var(--color-primary); color: #fff; border: none; border-radius: var(--radius-md); font-size: 16px; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; transition: all 0.2s; margin-top: 12px; }
.ck-finalizar:hover { filter: brightness(1.1); transform: translateY(-1px); }
.ck-finalizar:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.ck-secure { text-align: center; font-size: 11px; color: var(--text-secondary); margin-top: 14px; line-height: 1.5; }

/* Trust Badges Section */
.ck-trust-section { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gray-100); }

.ck-trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }

.ck-trust-badge { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-md); }
.ck-trust-badge .material-icons { font-size: 22px; color: var(--color-primary); flex-shrink: 0; }
.ck-trust-badge div { display: flex; flex-direction: column; }
.ck-trust-badge strong { font-size: 11px; color: var(--text-primary); line-height: 1.3; }
.ck-trust-badge small { font-size: 10px; color: var(--text-secondary); }

.ck-card-brands { text-align: center; margin-bottom: 16px; }
.ck-brand-label { font-size: 11px; color: var(--text-secondary); display: block; margin-bottom: 8px; }
.ck-brands-list { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.ck-brand-icon { width: 44px; height: 30px; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

.ck-secure-text { text-align: center; font-size: 11px; color: var(--text-secondary); line-height: 1.6; margin: 0; display: flex; align-items: flex-start; justify-content: center; gap: 6px; }
.ck-secure-text .material-icons { font-size: 16px; color: var(--color-primary); flex-shrink: 0; margin-top: 1px; }

@media (max-width: 768px) {
    .ck-trust-badges { grid-template-columns: 1fr; gap: 8px; }
    .ck-brand-icon { width: 38px; height: 26px; }
}

/* Sidebar */
.ck-resumo { background: var(--bg-primary); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; position: sticky; top: 100px; }
.ck-resumo h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-200); text-decoration: underline; }

.ck-items { max-height: 280px; overflow-y: auto; }
.ck-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.ck-item img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--gray-200); }
.ck-item-info { flex: 1; min-width: 0; }
.ck-item-name { display: block; font-size: 12px; font-weight: 500; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.ck-item-qty { font-size: 11px; color: var(--text-secondary); }
.ck-item-price { font-size: 13px; font-weight: 700; white-space: nowrap; }

.ck-totals { padding-top: 10px; }
.ck-tot-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 13px; }
.ck-discount { color: #2e7d32; }
.ck-tot-final { font-size: 17px; padding-top: 8px; border-top: 1px solid var(--gray-200); margin-top: 6px; }
.ck-pix-line { text-align: right; font-size: 12px; color: var(--text-secondary); }
.ck-pix-valor { color: var(--color-primary); font-weight: 600; }

/* Confirmation - Full width layout */
.ck-layout-full { grid-template-columns: 1fr !important; max-width: 700px; margin: 0 auto; }

.ck-confirm { text-align: center; padding: 40px 32px; }
.ck-confirm-head { margin-bottom: 28px; }
.ck-check-circle { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, #4CAF50, #2e7d32); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; animation: ckPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3); }
.ck-check-circle .material-icons { font-size: 40px; color: #fff; }
@keyframes ckPop { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.ck-confirm-head h2 { color: var(--color-primary); font-size: 26px; margin: 0 0 10px; }
.ck-pedido-badge { display: inline-block; padding: 5px 16px; background: var(--gray-100); border-radius: 100px; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.ck-confirm-sub { font-size: 14px; color: var(--text-secondary); margin-top: 12px; line-height: 1.6; }

/* Payment result */
.ck-pay-result { margin: 24px auto; padding: 28px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); text-align: center; max-width: 500px; }
.ck-pay-result-head { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.ck-pay-val-big { font-size: 28px; font-weight: 800; color: var(--text-primary); }

.ck-qr-wrap { margin: 16px auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.ck-qr-img { width: 240px; height: 240px; object-fit: contain; border: 3px solid var(--gray-200); padding: 10px; background: #fff; border-radius: var(--radius-md); display: block; }
.ck-qr-instrucao { font-size: 14px; color: var(--text-secondary); margin: 16px 0 0; line-height: 1.6; text-align: center; }

.ck-copy-wrap { display: flex; gap: 0; border: 1px solid var(--gray-300); border-radius: var(--radius-md); overflow: hidden; margin: 16px 0; }
.ck-copy-wrap input { flex: 1; border: none; padding: 13px; font-family: monospace; font-size: 12px; background: #fff; color: var(--text-primary); min-width: 0; }
.ck-copy-btn { padding: 13px 22px; background: var(--color-secondary); color: #fff; border: none; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.ck-copy-btn:hover { filter: brightness(1.15); }

.ck-mp-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 14px; color: var(--color-primary); text-decoration: none; font-weight: 600; }
.ck-mp-link:hover { text-decoration: underline; }
.ck-expire { font-size: 13px; color: #e65100; margin-top: 16px; font-style: italic; }

.ck-boleto-link { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--color-primary); color: #fff; border-radius: var(--radius-md); font-size: 15px; font-weight: 600; text-decoration: none; margin-bottom: 16px; }
.ck-boleto-link:hover { filter: brightness(1.1); }

/* Order summary in confirmation */
.ck-confirm-resumo { margin: 28px 0; padding: 20px; background: var(--bg-primary); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); text-align: left; }
.ck-confirm-resumo h3 { font-size: 16px; font-weight: 700; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-200); }

.ck-confirm-items { margin-bottom: 14px; }
.ck-confirm-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.ck-confirm-item:last-child { border-bottom: none; }
.ck-confirm-item img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--gray-200); }
.ck-confirm-item-info { flex: 1; }
.ck-confirm-item-info strong { display: block; font-size: 14px; line-height: 1.3; margin-bottom: 2px; }
.ck-confirm-item-info span { font-size: 13px; color: var(--text-secondary); }
.ck-confirm-item-total { font-size: 15px; font-weight: 700; white-space: nowrap; }

.ck-confirm-totals { padding-top: 10px; border-top: 1px solid var(--gray-200); }
.ck-confirm-totals .ck-tot-row { font-size: 14px; }
.ck-confirm-totals .ck-tot-final { font-size: 18px; }

/* Info grid */
.ck-confirm-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; text-align: left; }
.ck-confirm-info-card { display: flex; align-items: flex-start; gap: 10px; padding: 14px; background: var(--gray-50); border-radius: var(--radius-md); border: 1px solid var(--gray-100); }
.ck-confirm-info-card .material-icons { color: var(--color-primary); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.ck-confirm-info-card strong { display: block; font-size: 13px; margin-bottom: 3px; }
.ck-confirm-info-card p { margin: 0; font-size: 12px; color: var(--text-secondary); line-height: 1.4; }

.ck-confirm-btns { margin-top: 24px; }
.ck-btn-back { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--color-primary); color: #fff; border-radius: var(--radius-md); font-size: 15px; font-weight: 600; text-decoration: none; }
.ck-btn-back:hover { filter: brightness(1.1); }

@media (max-width: 768px) {
    .ck-confirm { padding: 24px 16px; }
    .ck-confirm-head h2 { font-size: 20px; }
    .ck-pay-val-big { font-size: 22px; }
    .ck-confirm-info-grid { grid-template-columns: 1fr; }
    .ck-copy-wrap { flex-direction: column; }
    .ck-copy-btn { justify-content: center; }
}

/* Responsive */
@media (max-width: 900px) {
    .ck-layout { grid-template-columns: 1fr; }
    .ck-resumo { position: relative; top: 0; order: -1; }
    .ck-row { flex-direction: column; gap: 10px; }
    .ck-pay-opt { flex-wrap: wrap; }
    .ck-pay-val { width: 100%; text-align: left; margin-top: -4px; padding-left: 42px; }
    .ck-copy-wrap { flex-direction: column; }
    .ck-copy-btn { text-align: center; }
}

/* =====================================================
   LOADING & NOTIFICATIONS
   ===================================================== */
.loading-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl);
    min-height: 400px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--color-primary);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
}

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

.loading-page p {
    margin-top: var(--spacing-md);
    color: var(--text-secondary);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: var(--z-tooltip);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.toast {
    background: var(--bg-primary);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.success {
    border-left: 4px solid var(--color-success);
}

.toast.error {
    border-left: 4px solid var(--color-error);
}

.toast.info {
    border-left: 4px solid var(--color-info);
}

.toast .material-icons {
    font-size: 24px;
}

.toast.success .material-icons { color: var(--color-success); }
.toast.error .material-icons { color: var(--color-error); }
.toast.info .material-icons { color: var(--color-info); }

/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-menu-btn {
    display: none;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: var(--z-modal-backdrop);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-content {
    width: 300px;
    height: 100%;
    background: var(--bg-primary);
    overflow-y: auto;
    animation: slideRight 0.3s ease;
}

@keyframes slideRight {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-menu {
    padding: var(--spacing-md);
}

.mobile-nav-menu a {
    display: block;
    padding: var(--spacing-md);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-submenu {
    padding-left: var(--spacing-lg);
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.mobile-nav-submenu.collapsed {
    max-height: 0;
    opacity: 0;
}

.mobile-nav-submenu a {
    font-size: var(--font-size-sm);
    font-weight: normal;
    color: var(--text-secondary);
}

/* Item de categoria com subcategorias */
.mobile-nav-item.has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-item.has-children > a {
    flex: 1;
    border-bottom: none;
}

.mobile-nav-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.mobile-nav-toggle:hover {
    color: var(--color-primary);
}

.mobile-nav-toggle.expanded {
    transform: rotate(180deg);
}

.mobile-nav-toggle .material-icons {
    font-size: 24px;
}

/* Mobile Menu - Novo Layout */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: var(--bg-primary);
    z-index: calc(var(--z-modal) + 1);
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    background: var(--color-primary);
    color: var(--text-primary);
}

.mobile-menu-header span {
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.mobile-menu-header button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.1);
    border-radius: var(--radius-full);
    color: var(--text-primary);
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active ~ .mobile-menu-backdrop,
.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile nav menu com ícones */
.mobile-nav-menu a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mobile-nav-menu a .material-icons {
    font-size: 20px;
    color: var(--color-primary);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
    .products-grid,
    .products-grid.cols-5,
    .products-grid.cols-4,
    .products-grid.cols-3 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid,
    .products-grid.cols-5,
    .products-grid.cols-4,
    .products-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-page {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: static;
    }
    
    .cart-page {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        position: static;
    }
    
    /* =====================================================
       CART MOBILE IMPROVEMENTS
       ===================================================== */
    
    /* Cupom mais compacto */
    .cart-coupon {
        padding: var(--spacing-md);
    }
    
    .cart-coupon h4 {
        font-size: 14px;
        margin-bottom: var(--spacing-sm);
    }
    
    .coupon-form {
        flex-wrap: nowrap;
    }
    
    .coupon-form input {
        padding: 10px 12px;
        font-size: 14px;
        min-width: 0;
    }
    
    .coupon-form button {
        padding: 10px 16px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    /* Resumo do Pedido */
    .cart-summary {
        padding: var(--spacing-md);
    }
    
    .cart-summary h3 {
        font-size: 16px;
        margin-bottom: var(--spacing-md);
        padding-bottom: var(--spacing-sm);
    }
    
    .cart-summary-line {
        font-size: 14px;
        padding: 8px 0;
        gap: var(--spacing-sm);
    }
    
    .cart-summary-line span:first-child {
        flex-shrink: 0;
    }
    
    .cart-summary-line span:last-child {
        text-align: right;
        word-break: break-word;
    }
    
    /* Link Calcular Frete - garantir visibilidade */
    .cart-summary-line a {
        white-space: nowrap;
        color: var(--color-primary);
        font-weight: 600;
    }
    
    .cart-summary-total {
        font-size: 18px;
        padding: var(--spacing-md) 0;
        margin-top: var(--spacing-sm);
        border-top: 2px solid var(--gray-200);
    }
    
    /* PIX desconto */
    .cart-summary .product-price-pix {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: var(--color-primary);
        font-weight: 600;
        padding: 8px 0;
        margin-top: var(--spacing-sm);
    }
    
    /* Botões de ação do carrinho */
    .cart-summary .btn-block {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .cart-summary .btn-primary.btn-block {
        margin-top: var(--spacing-md) !important;
    }
    
    .cart-summary .btn-outline-secondary.btn-block {
        margin-top: var(--spacing-sm) !important;
        background: var(--gray-50);
    }
    
    /* Item do carrinho mobile */
    .cart-item {
        flex-direction: row;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-details {
        flex: 1;
        min-width: 0;
    }
    
    .cart-item-name {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .cart-item-price {
        font-size: 15px;
    }
    
    .cart-item-actions {
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-sm);
        margin-top: 8px;
    }
    
    .cart-item-quantity {
        transform: scale(0.9);
        transform-origin: left center;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-bar {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-3xl: 1.5rem;
        --font-size-4xl: 1.75rem;
    }
    
    .products-grid,
    .products-grid.cols-5,
    .products-grid.cols-4,
    .products-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-card-info {
        padding: 8px 10px;
    }
    
    .product-name {
        font-size: 12px;
        min-height: 34px;
        margin-bottom: 4px;
    }
    
    .product-category {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .product-price-current {
        font-size: 16px;
    }
    
    .product-price-old {
        font-size: 11px;
        min-height: 16px;
    }
    
    .product-price-pix {
        font-size: 12px;
    }
    
    .product-installments {
        font-size: 10px;
    }
    
    .product-card-buy {
        padding: 4px 10px 10px;
    }
    
    .product-promo-timer {
        margin: 0 6px 4px;
        height: 26px;
        border-radius: 6px;
    }
    
    .promo-timer-icon {
        width: 26px;
        min-width: 26px;
        height: 26px;
        border-radius: 6px 0 0 6px;
    }
    
    .promo-timer-icon .material-icons {
        font-size: 12px;
    }
    
    .promo-timer-label {
        display: none;
    }
    
    .promo-timer-countdown {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .promo-timer-content {
        gap: 0;
        padding: 0 6px;
        min-width: 0;
        overflow: hidden;
        justify-content: center;
    }
    
    .product-card-buy .btn {
        font-size: 12px;
        padding: 8px;
    }
    
    .product-card-image {
        aspect-ratio: 1;
    }
    
    .features-grid {
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .feature-icon .material-icons {
        font-size: 22px;
    }
    
    .feature-content h5 {
        font-size: 13px;
    }
    
    .feature-content p {
        font-size: 11px;
    }
    
    /* Categorias Circular - Mobile */
    .categorias-circular-section {
        padding: 15px 0 10px;
    }
    
    .categorias-circular-wrapper {
        padding: 0 36px;
        position: relative;
    }
    
    .categorias-circular-track {
        justify-content: flex-start;
        padding: 8px 0;
        gap: 0;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
    }
    
    .cat-circ-item {
        min-width: 33.333%;
        max-width: 33.333%;
        flex-shrink: 0;
        gap: 6px;
        padding: 4px 2px;
        scroll-snap-align: start;
    }
    
    .cat-circ-icon {
        width: 58px;
        height: 58px;
    }
    
    .cat-circ-icon .material-icons {
        font-size: 25px;
    }
    
    .cat-circ-icon img {
        width: 32px;
        height: 32px;
    }
    
    .cat-circ-nome {
        font-size: 9px;
        max-width: 75px;
    }
    
    .cat-circ-arrow {
        display: flex;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 50%;
        transform: translateY(-55%);
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
        z-index: 10;
        background: #fff;
        border: 1px solid var(--gray-200);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .cat-circ-arrow .material-icons {
        font-size: 18px;
        color: var(--text-secondary);
    }
    
    .cat-circ-prev {
        left: 2px;
    }
    
    .cat-circ-next {
        right: 2px;
    }
    
    .header-search {
        display: none;
    }
    
    .header-logo img {
        height: 50px;
        max-height: 50px;
    }
    
    .header-main {
        padding: 8px 0;
    }
    
    .header-main .container {
        gap: 8px;
    }
    
    .header-action span:not(.material-icons) {
        display: none;
    }
    
    .header-actions {
        gap: 4px;
    }
    
    .info-bar-center {
        flex-direction: column;
        gap: 2px;
    }
    
    .info-bar-link {
        display: none;
    }
    
    .info-bar {
        font-size: 11px;
        padding: 4px 0;
    }
    
    .info-bar-right {
        display: none;
    }
    
    .promo-bar {
        font-size: 10px;
        height: 28px;
    }
    
    .tarja-slide {
        gap: 4px;
        padding: 0 8px;
    }
    
    .tarja-slide .material-icons {
        font-size: 13px;
    }
    
    .tarja-slide span:not(.material-icons) {
        font-size: 0.68rem;
        letter-spacing: 0.3px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .tarja-slide strong,
    .tarja-slide b {
        font-size: 0.68rem;
    }
    
    .tarja-slide .tarja-cupom {
        font-size: 0.65rem;
        padding: 1px 6px;
        margin-left: 3px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Footer contact centralizado no mobile */
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .newsletter-form {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .newsletter-form input {
        min-width: 200px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }
    
    .banner-content h1 {
        font-size: var(--font-size-2xl);
    }
    
    .product-actions-buy {
        flex-direction: column;
    }
    
    /* Product page mobile */
    .product-title {
        font-size: 18px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .product-details {
        padding: 8px 0;
        overflow: hidden;
    }
    
    .product-main-image {
        margin-bottom: 8px;
    }
    
    .product-thumbnails img {
        width: 56px;
        height: 56px;
    }
    
    .product-codes {
        gap: 4px;
    }
    
    .product-code {
        font-size: 10px;
        padding: 4px 8px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-pricing {
        padding: 12px;
    }

    .product-pricing .product-price-current {
        font-size: 22px;
    }

    .product-shipping-calc {
        padding: 12px;
    }

    .shipping-form input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .accordion-body {
        padding: 12px;
    }

    .accordion-header {
        padding: 12px;
    }

    .accordion-icon {
        width: 36px;
        height: 36px;
    }

    .accordion-icon .material-icons {
        font-size: 18px;
    }

    .product-description-content {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* Overflow control */
    .product-page,
    .section,
    .container {
        overflow-x: hidden;
    }

    /* Flash deals countdown mobile */
    .flash-deal-countdown {
        padding: 16px 12px;
    }

    .countdown-timer {
        gap: 4px;
    }

    .countdown-digit {
        width: 24px;
        height: 32px;
        font-size: 14px;
    }

    .countdown-separator {
        font-size: 16px;
    }

    .countdown-label {
        font-size: 9px;
    }

    .flash-deal-countdown .countdown-title {
        font-size: 14px;
    }

    .flash-deal-countdown .countdown-subtitle {
        font-size: 12px;
    }

    .flash-deal-countdown .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .flash-deal-info h4 {
        font-size: 14px;
        word-wrap: break-word;
    }

    .flash-deal-price {
        font-size: 20px;
    }
    
    /* Sticky bar mobile */
    .sticky-product-bar {
        display: none !important;
    }
    
    /* Cart mobile */
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Checkout mobile */
    .ck-layout {
        grid-template-columns: 1fr !important;
    }
    
    .ck-sidebar {
        order: -1;
    }
    
    /* Flash deals mobile */
    .flash-deal-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .flash-deal-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Section titles mobile */
    .section-header h2 {
        font-size: 18px;
    }
    
    /* Container padding */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Conta pages mobile */
    .conta-page {
        flex-direction: column;
    }
    
    .conta-sidebar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-grid,
    .products-grid.cols-5,
    .products-grid.cols-4,
    .products-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .product-card-info {
        padding: 6px 8px;
    }
    
    .product-name {
        font-size: 11px;
        min-height: 30px;
        -webkit-line-clamp: 2;
    }
    
    .product-price-current {
        font-size: 14px;
    }
    
    .product-price-pix {
        font-size: 11px;
    }
    
    .product-price-pix .material-icons {
        font-size: 13px;
    }
    
    .product-installments {
        font-size: 9px;
    }
    
    .product-card-buy .btn {
        font-size: 11px;
        padding: 7px;
    }
    
    .product-promo-timer {
        margin: 0 6px 3px;
        height: 26px;
        border-radius: 5px;
    }
    
    .promo-timer-icon {
        width: 26px;
        height: 26px;
        border-radius: 5px 0 0 5px;
    }
    
    .promo-timer-icon .material-icons {
        font-size: 12px;
    }
    
    .promo-timer-label {
        display: none;
    }
    
    .promo-timer-countdown {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
    
    .promo-timer-content {
        padding: 0 6px;
        justify-content: center;
    }
    
    .product-badges {
        gap: 2px;
    }
    
    .product-badge {
        font-size: 9px;
        padding: 2px 5px;
    }
    
    .product-discount-badge {
        width: 40px;
        height: 40px;
        top: 6px;
        left: 6px;
    }
    
    .product-discount-badge .percent {
        font-size: 12px;
        line-height: 1;
    }
    
    .product-discount-badge .off {
        font-size: 8px;
    }
    
    /* Ajustar posição dos outros badges quando tem desconto no mobile */
    .product-card-image:has(.product-discount-badge) .product-badges {
        top: 52px;
    }
    
    .features-grid {
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-sm);
        gap: var(--spacing-xs);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon .material-icons {
        font-size: 20px;
    }
    
    .feature-content h5 {
        font-size: 11px;
    }
    
    .feature-content p {
        font-size: 10px;
    }
    
    .header-action .material-icons {
        font-size: 22px;
    }
    
    .cart-count {
        font-size: 10px;
        width: 16px;
        height: 16px;
    }
    
    /* Product page mobile small */
    .product-title {
        font-size: 16px;
    }
    
    .product-price-main {
        font-size: 22px;
    }
    
    .section-header h2 {
        font-size: 16px;
    }
    
    .countdown-digit {
        width: 20px;
        height: 28px;
        font-size: 12px;
    }
    
    .countdown-separator {
        font-size: 14px;
    }
    
    .countdown-timer {
        gap: 3px;
    }

    .countdown-label {
        font-size: 8px;
    }
}

/* =====================================================
   SUBCATEGORIES
   ===================================================== */
.subcategorias {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.subcategorias .btn {
    font-size: var(--font-size-sm);
}

/* =====================================================
   SEARCH RESULTS
   ===================================================== */
.search-results-header {
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}

.search-results-header h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
}

.search-results-count {
    color: var(--text-secondary);
}

.search-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.search-sort select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
}

/* Search Empty State */
.search-empty {
    text-align: center;
    padding: 60px 20px;
}

.search-empty .material-icons {
    font-size: 72px;
    color: var(--text-muted);
    opacity: 0.4;
}

.search-empty h2 {
    margin: 16px 0 8px;
    color: var(--text-primary);
}

.search-empty p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.search-empty-tips {
    display: inline-block;
    text-align: left;
    margin-top: 20px;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-secondary);
}

.search-empty-tips ul {
    margin: 8px 0 0 20px;
    list-style: disc;
}

.search-empty-tips li {
    margin-bottom: 4px;
}

/* =====================================================
   🔍 SEARCH AUTOCOMPLETE DROPDOWN
   ===================================================== */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    z-index: 9999;
    max-height: 480px;
    overflow-y: auto;
    display: none;
    animation: searchDropIn .2s ease;
}

.search-dropdown.active {
    display: block;
}

@keyframes searchDropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-dd-section {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.search-dd-section:last-of-type {
    border-bottom: none;
}

.search-dd-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.search-dd-label .material-icons {
    font-size: 15px;
}

.search-dd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background .15s;
    cursor: pointer;
}

.search-dd-item:hover {
    background: var(--bg-secondary);
}

.search-dd-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    flex-shrink: 0;
}

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

.search-dd-name {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.search-dd-name mark {
    background: #fef08a;
    color: inherit;
    padding: 0 1px;
    border-radius: 2px;
}

.search-dd-brand {
    font-size: 11px;
    color: var(--text-muted);
}

.search-dd-price {
    text-align: right;
    flex-shrink: 0;
}

.search-dd-price-old {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.search-dd-price-now {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.search-dd-price-now.promo {
    color: var(--color-success, #16a34a);
}

.search-dd-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px 16px 8px;
}

.search-dd-cat-chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: 100px;
    font-size: 12px;
    text-decoration: none;
    transition: all .15s;
    border: 1px solid var(--border-color);
}

.search-dd-cat-chip:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.search-dd-viewall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    border-top: 1px solid var(--border-color);
    transition: background .15s;
}

.search-dd-viewall:hover {
    background: var(--bg-secondary);
}

.search-dd-empty {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-muted);
}

.search-dd-empty .material-icons {
    font-size: 40px;
    opacity: 0.4;
    display: block;
    margin-bottom: 8px;
}

.search-dd-empty p {
    font-size: 14px;
    margin: 0;
    color: var(--text-secondary);
}

.search-dd-tip {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* =====================================================
   MOBILE SEARCH
   ===================================================== */
.mobile-search-wrap {
    padding: 0 16px 12px;
    position: relative;
}

.mobile-search-form {
    border-radius: var(--radius-md) !important;
    box-shadow: none !important;
    border: 1px solid var(--border-color) !important;
}

.mobile-search-form input {
    padding: 12px 16px !important;
    font-size: 15px !important;
}

.mobile-search-wrap .search-dropdown {
    position: absolute;
    left: 16px;
    right: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    max-height: 60vh;
}

/* =====================================================
   📱 MOBILE SEARCH BUTTON & OVERLAY (estilo KaBuM/ML)
   ===================================================== */
.mobile-search-btn {
    display: none !important;
}

/* Backdrop escuro atrás */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.mobile-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sheet branca no topo */
.mobile-search-sheet {
    background: var(--bg-primary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.mobile-search-overlay.active .mobile-search-sheet {
    transform: translateY(0);
}

.mobile-search-overlay-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    padding-top: max(12px, env(safe-area-inset-top, 12px));
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.mobile-search-overlay-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 0 12px;
    border: 2px solid transparent;
    transition: border-color .2s;
}

.mobile-search-overlay-input-wrap:focus-within {
    border-color: var(--color-primary);
    background: var(--bg-primary);
}

.mobile-search-overlay-input-wrap .material-icons {
    color: var(--text-muted);
    font-size: 22px;
    flex-shrink: 0;
}

.mobile-search-overlay-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 4px;
    font-size: 16px;
    color: var(--text-primary);
    outline: none;
    -webkit-appearance: none;
}

.mobile-search-overlay-input-wrap input::placeholder {
    color: var(--text-muted);
}

.mobile-search-overlay-close {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 4px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Body de resultados — rola dentro da sheet */
.mobile-search-overlay-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.mobile-search-overlay-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
}

.mobile-search-overlay-hint .material-icons {
    font-size: 36px;
    opacity: 0.3;
    margin-bottom: 10px;
}

.mobile-search-overlay-hint p {
    font-size: 14px;
    margin: 0;
}

/* Itens maiores pro toque */
.mobile-search-overlay-body .search-dd-item {
    padding: 14px 16px;
    gap: 14px;
}

.mobile-search-overlay-body .search-dd-img {
    width: 52px;
    height: 52px;
}

.mobile-search-overlay-body .search-dd-name {
    font-size: 14px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-search-overlay-body .search-dd-viewall {
    padding: 16px;
    font-size: 14px;
}

.mobile-search-overlay-body .search-dd-cats {
    padding: 8px 16px 12px;
}

.mobile-search-overlay-body .search-dd-cat-chip {
    padding: 8px 14px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .mobile-search-btn {
        display: flex !important;
        order: -1;
    }
}

/* =====================================================
   PAGINAÇÃO
   ===================================================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pagination-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb, 126,217,87), 0.08);
}

.pagination-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.pagination-btn .material-icons {
    font-size: 20px;
}

.pagination-dots {
    padding: 0 4px;
    color: var(--text-muted);
    font-size: 14px;
}

.pagination-info {
    text-align: center;
    margin-top: var(--spacing-sm);
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .pagination-btn {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* =====================================================
   PAGE NOT FOUND
   ===================================================== */
.page-not-found {
    text-align: center;
    padding: var(--spacing-3xl);
}

.page-not-found .material-icons {
    font-size: 100px;
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
}

.page-not-found h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
}

.page-not-found p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* =====================================================
   STICKY PRODUCT BAR (Barra fixa no rodapé)
   ===================================================== */
.sticky-product-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: var(--bg-primary);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: var(--z-fixed);
    transition: transform var(--transition-normal);
    border: 3px solid var(--color-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.sticky-product-bar.visible {
    transform: translateX(-50%) translateY(0);
}

.sticky-product-bar .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-xl);
    max-width: 100%;
}

.sticky-product-image {
    width: 70px;
    height: 70px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.sticky-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.sticky-product-info {
    flex: 1;
    min-width: 0;
}

.sticky-product-name {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

.sticky-product-meta {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.sticky-product-meta .in-stock {
    color: var(--color-success);
    font-weight: 500;
}

.sticky-product-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.sticky-product-pricing .price-old {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-decoration: line-through;
}

.sticky-product-pricing .price-current {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
}

.sticky-product-pricing .price-current span {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--text-secondary);
}

.sticky-product-pricing .price-pix {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.sticky-product-pricing .price-installments {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.sticky-product-action {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.sticky-product-action .btn {
    padding: 14px 40px;
    font-size: var(--font-size-base);
    white-space: nowrap;
    border-radius: var(--radius-lg);
}

.sticky-product-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sticky-product-close:hover {
    background: var(--gray-200);
}

.sticky-product-close .material-icons {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Responsivo */
@media (max-width: 992px) {
    .sticky-product-bar {
        bottom: 10px;
        width: calc(100% - 20px);
        border-radius: var(--radius-lg);
    }
    
    .sticky-product-bar .container {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .sticky-product-name {
        max-width: 200px;
        font-size: var(--font-size-sm);
    }
    
    .sticky-product-meta {
        display: none;
    }
    
    .sticky-product-pricing .price-current {
        font-size: var(--font-size-lg);
    }
    
    .sticky-product-action .btn {
        padding: 12px 24px;
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 768px) {
    .sticky-product-image {
        width: 50px;
        height: 50px;
    }
    
    .sticky-product-info {
        display: none;
    }
    
    .sticky-product-pricing .price-old,
    .sticky-product-pricing .price-pix,
    .sticky-product-pricing .price-installments {
        display: none;
    }
}

/* =====================================================
   PRODUCT PAGE - ÁREA DE COMPRA ALINHADA
   ===================================================== */

/* Container dos botões de compra */
.product-buy-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
}

.product-buy-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Pricing box - alinhamento interno */
.product-pricing {
    text-align: left;
}

.product-pricing .product-price-old {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
}

.product-pricing .product-price-current {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
}

.product-pricing .product-price-pix {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.product-pricing .product-price-pix .material-icons {
    font-size: 18px;
}

.product-pricing .product-installments {
    color: var(--text-secondary);
}

/* Actions buy - layout flexível */
.product-actions-buy {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: stretch;
}

.product-actions-buy .quantity-selector {
    align-self: stretch;
    justify-content: center;
}

/* Desktop: quantity ao lado dos botões */
@media (min-width: 769px) {
    .product-actions-buy {
        flex-direction: row;
        align-items: stretch;
    }
    
    .product-actions-buy .quantity-selector {
        flex-shrink: 0;
    }
    
    .product-buy-buttons {
        flex: 1;
        flex-direction: row;
    }
    
    .product-buy-buttons .btn {
        flex: 1;
    }
}

/* Mobile: tudo empilhado e centralizado */
@media (max-width: 768px) {
    .product-actions-buy {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-actions-buy .quantity-selector {
        width: 100%;
        justify-content: center;
    }
    
    .product-actions-buy .quantity-selector input {
        flex: 1;
        max-width: 100px;
    }
    
    .product-buy-buttons {
        width: 100%;
    }
    
    .product-buy-buttons .btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    /* Botão comprar já com destaque */
    .product-buy-buttons .btn-comprar-ja {
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    }
    
    /* Pricing mobile - mais compacto e alinhado */
    .product-pricing {
        padding: var(--spacing-md);
        border-radius: var(--radius-lg);
    }
    
    .product-pricing .product-price-current {
        font-size: 26px;
        margin-bottom: 4px;
    }
    
    .product-pricing .product-price-pix {
        font-size: 15px;
        padding: 8px 12px;
        border-radius: var(--radius-md);
        margin-top: 8px;
        margin-bottom: 0;
    }
    
    .product-pricing .product-installments {
        font-size: 13px;
        margin-top: 12px;
        padding-top: 12px;
    }
    
    /* Secondary actions - alinhado */
    .product-secondary-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
    
    .product-secondary-actions .btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    /* Shipping calc - compacto */
    .product-shipping-calc {
        padding: var(--spacing-md);
    }
    
    .product-shipping-calc h5 {
        font-size: 14px;
        margin-bottom: var(--spacing-sm);
    }
    
    .shipping-form {
        flex-direction: row;
    }
    
    .shipping-form input {
        flex: 1;
        min-width: 0;
    }
    
    .shipping-form .btn {
        padding: 12px 16px;
        white-space: nowrap;
    }
}

/* =====================================================
   🔒 CERTIFICADOS DE SEGURANÇA
   ===================================================== */

.footer-security-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-security-section .footer-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.security-badge:hover {
    transform: translateY(-3px);
}

.security-badge .badge-img {
    max-height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.security-badge:hover .badge-img {
    filter: brightness(1.1);
}

/* Fallback quando imagem não carrega */
.security-badge .badge-fallback {
    display: none;
    background: linear-gradient(135deg, var(--bg-color, #22c55e) 0%, var(--bg-color-dark, #16a34a) 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.security-badge .badge-fallback span:first-child {
    font-size: 16px;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.security-info .material-icons {
    font-size: 1.1rem;
    color: #4ade80;
}

/* Responsivo - Certificados */
@media (max-width: 768px) {
    .security-badges {
        gap: 1rem;
    }
    
    .security-badge .badge-img {
        max-height: 42px;
        max-width: 130px;
    }
    
    .security-info {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .footer-security-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .security-badges {
        gap: 0.75rem;
    }
    
    .security-badge .badge-img {
        max-height: 36px;
        max-width: 110px;
    }
    
    .security-info {
        font-size: 0.8rem;
    }
}

/* Promo-bar: telas muito pequenas */
@media (max-width: 480px) {
    .promo-bar {
        height: 24px;
    }
    
    .tarja-slide {
        gap: 3px;
        padding: 0 6px;
    }
    
    .tarja-slide .material-icons {
        font-size: 11px;
    }
    
    .tarja-slide span:not(.material-icons) {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }
    
    .tarja-slide strong,
    .tarja-slide b {
        font-size: 0.6rem;
    }
    
    .tarja-slide .tarja-cupom {
        font-size: 0.58rem;
        padding: 1px 5px;
    }
}

/* =====================================================
   BOTÃO VOLTAR AO TOPO
   ===================================================== */
.btn-voltar-topo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary, #22c55e);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.btn-voltar-topo .material-icons {
    font-size: 28px;
}

.btn-voltar-topo.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-voltar-topo:hover {
    background: var(--color-primary-hover, #16a34a);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-voltar-topo:active {
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px) {
    .btn-voltar-topo {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .btn-voltar-topo .material-icons {
        font-size: 24px;
    }
}
/* =====================================================
   🎨 SISTEMA DE TEMAS / TEMPLATES
   ===================================================== */

/* =====================================================
   TEMA: MINIMALISTA
   Clean, espaçoso, sem sombras fortes
   ===================================================== */
body.tema-minimalista {
    --shadow-card: none;
    --shadow-card-hover: 0 2px 8px rgba(0,0,0,0.06);
    --radius-md: 4px;
    --radius-lg: 8px;
}

body.tema-minimalista .header {
    box-shadow: none;
    border-bottom: 1px solid var(--gray-200);
}

body.tema-minimalista .header-main {
    background: var(--bg-primary);
}

body.tema-minimalista .header-logo img {
    filter: none;
}

body.tema-minimalista .product-card {
    border: 1px solid var(--gray-200);
    box-shadow: none;
    border-radius: 4px;
}

body.tema-minimalista .product-card:hover {
    border-color: var(--color-primary);
    box-shadow: none;
    transform: none;
}

body.tema-minimalista .product-card .product-image {
    border-radius: 0;
}

body.tema-minimalista .btn-primary {
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

body.tema-minimalista .section-title {
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

body.tema-minimalista .section-title::after {
    display: none;
}

body.tema-minimalista .footer {
    border-top: 1px solid var(--gray-200);
}

body.tema-minimalista .nav-categorias {
    background: transparent;
    border-bottom: 1px solid var(--gray-200);
}

body.tema-minimalista .nav-categorias a {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

body.tema-minimalista .promo-bar {
    --promo-bar-color1: var(--gray-200, #e5e7eb);
    --promo-bar-color2: var(--gray-300, #d1d5db);
    color: var(--text-primary);
}

body.tema-minimalista .promo-bar .material-icons {
    color: var(--color-primary);
}

body.tema-minimalista .tarja-slide strong,
body.tema-minimalista .tarja-slide b {
    color: var(--color-primary);
}

/* =====================================================
   TEMA: ELEGANTE
   Sofisticado, fontes serifadas, bordas finas
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

body.tema-elegante {
    --font-family-heading: 'Playfair Display', Georgia, serif;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;
}

body.tema-elegante .header-main {
    background: var(--bg-primary);
    border-bottom: 2px solid var(--color-primary);
}

body.tema-elegante .header-logo img {
    filter: none;
}

body.tema-elegante .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: 28px;
    letter-spacing: 0;
}

body.tema-elegante .section-title::after {
    height: 1px;
    width: 60px;
    background: var(--color-primary);
}

body.tema-elegante .product-card {
    border: 1px solid var(--gray-300);
    border-radius: 0;
}

body.tema-elegante .product-card:hover {
    border-color: var(--color-primary);
}

body.tema-elegante .product-card .product-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
}

body.tema-elegante .btn-primary {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 500;
}

body.tema-elegante .btn-secondary {
    border-radius: 0;
}

body.tema-elegante .nav-categorias {
    background: var(--color-secondary);
    border: none;
}

body.tema-elegante .nav-categorias a {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

body.tema-elegante .footer {
    border-top: 3px solid var(--color-primary);
}

body.tema-elegante .footer-title {
    font-family: 'Playfair Display', Georgia, serif;
    border-bottom: 1px solid var(--color-primary);
}

body.tema-elegante .promo-bar {
    --promo-bar-color1: var(--color-secondary);
    --promo-bar-color2: var(--color-secondary-dark, #1a1a2e);
    letter-spacing: 1px;
}

body.tema-elegante .banner-slide {
    border-radius: 0;
}

/* =====================================================
   TEMA: TECH
   Futurista, gradientes, visual tecnológico
   ===================================================== */
body.tema-tech {
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 20px rgba(0,0,0,0.1);
}

body.tema-tech .header {
    background: linear-gradient(135deg, var(--header-bg-color) 0%, color-mix(in srgb, var(--header-bg-color) 80%, black) 100%);
}

body.tema-tech .header-main {
    background: transparent;
}

body.tema-tech .product-card {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--gray-50) 100%);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
}

body.tema-tech .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--color-primary);
}

body.tema-tech .product-card .product-image {
    border-radius: 12px;
    margin: 12px;
}

body.tema-tech .btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 25px;
    font-weight: 600;
}

body.tema-tech .btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: scale(1.02);
}

body.tema-tech .section-title {
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.tema-tech .section-title::after {
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
    height: 3px;
    border-radius: 2px;
}

body.tema-tech .nav-categorias {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    border-radius: 0;
}

body.tema-tech .promo-bar {
    --promo-bar-color1: var(--color-secondary);
    --promo-bar-color2: var(--color-secondary-light, #2a3a5c);
}

body.tema-tech .footer {
    background: linear-gradient(180deg, var(--footer-bg-color) 0%, color-mix(in srgb, var(--footer-bg-color) 70%, black) 100%);
}

body.tema-tech .banner-slide {
    border-radius: 20px;
    overflow: hidden;
}

body.tema-tech .search-form {
    border-radius: 30px;
    overflow: hidden;
}

body.tema-tech .search-form input {
    border-radius: 30px 0 0 30px;
}

body.tema-tech .search-form button {
    border-radius: 0 30px 30px 0;
}

/* =====================================================
   TEMA: CLASSIC
   Tradicional, conservador, confiável
   ===================================================== */
body.tema-classic {
    --font-family: Georgia, 'Times New Roman', serif;
    --radius-md: 3px;
    --radius-lg: 6px;
    --shadow-card: 0 1px 3px rgba(0,0,0,0.12);
}

body.tema-classic .header {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body.tema-classic .header-main {
    background: var(--bg-primary);
    border-bottom: 3px solid var(--color-primary);
}

body.tema-classic .header-logo img {
    filter: none;
}

body.tema-classic .product-card {
    border: 1px solid var(--gray-300);
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

body.tema-classic .product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

body.tema-classic .btn-primary {
    border-radius: 3px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

body.tema-classic .section-title {
    font-family: Georgia, serif;
    font-weight: 700;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px;
    display: inline-block;
}

body.tema-classic .section-title::after {
    display: none;
}

body.tema-classic .nav-categorias {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
}

body.tema-classic .nav-categorias a {
    color: var(--text-primary);
    font-weight: 500;
}

body.tema-classic .nav-categorias a:hover {
    background: var(--color-primary);
    color: white;
}

body.tema-classic .footer {
    background: var(--gray-800);
}

body.tema-classic .promo-bar {
    --promo-bar-color1: var(--color-primary);
    --promo-bar-color2: var(--color-primary-dark, #1a5c1a);
    color: white;
}

body.tema-classic .promo-bar .material-icons {
    color: #FFD700;
}

/* =====================================================
   TEMA: NEON
   Vibrante, escuro, ideal para games/tech
   ===================================================== */
body.tema-neon {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --gray-100: #1a1a25;
    --gray-200: #25253a;
    --gray-300: #35355a;
}

body.tema-neon {
    background: var(--bg-primary);
    color: var(--text-primary);
}

body.tema-neon .header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.3);
}

body.tema-neon .header-main {
    background: transparent;
}

body.tema-neon .product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
}

body.tema-neon .product-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(var(--color-primary-rgb), 0.3);
}

body.tema-neon .product-card .product-name {
    color: var(--text-primary);
}

body.tema-neon .product-card .product-price {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.5);
}

body.tema-neon .btn-primary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 8px;
    text-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.5);
    box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.3);
}

body.tema-neon .btn-primary:hover {
    background: var(--color-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(var(--color-primary-rgb), 0.6);
}

body.tema-neon .section-title {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.5);
}

body.tema-neon .section-title::after {
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.8);
}

body.tema-neon .nav-categorias {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--gray-200);
}

body.tema-neon .nav-categorias a {
    color: var(--text-secondary);
}

body.tema-neon .nav-categorias a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.8);
}

body.tema-neon .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--color-primary);
}

body.tema-neon .promo-bar {
    --promo-bar-color1: var(--bg-secondary, #1a1a2e);
    --promo-bar-color2: var(--gray-200, #2a2a4e);
    border-bottom: 1px solid var(--color-primary);
}

body.tema-neon .search-form input {
    background: var(--bg-secondary);
    border: 1px solid var(--gray-300);
    color: var(--text-primary);
}

body.tema-neon .search-form input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.3);
}

body.tema-neon #main-content {
    background: var(--bg-primary);
}

body.tema-neon .card, 
body.tema-neon .ck-card {
    background: var(--bg-secondary);
    border-color: var(--gray-200);
}

/* =====================================================
   TEMA: SOFT
   Suave, arredondado, tons pastéis
   ===================================================== */
body.tema-soft {
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-card: 0 8px 30px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 16px 40px rgba(0,0,0,0.08);
}

body.tema-soft .header {
    border-radius: 0 0 30px 30px;
    margin: 0 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

body.tema-soft .header-main {
    background: var(--bg-primary);
    border-radius: 0 0 30px 30px;
}

body.tema-soft .header-logo img {
    filter: none;
}

body.tema-soft .product-card {
    border-radius: 24px;
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

body.tema-soft .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

body.tema-soft .product-card .product-image {
    border-radius: 20px;
    margin: 10px;
}

body.tema-soft .btn-primary {
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 600;
}

body.tema-soft .btn-secondary {
    border-radius: 50px;
}

body.tema-soft .section-title::after {
    border-radius: 4px;
    height: 4px;
}

body.tema-soft .nav-categorias {
    background: var(--bg-secondary);
    border-radius: 20px;
    margin: 10px;
    padding: 5px;
}

body.tema-soft .nav-categorias a {
    border-radius: 15px;
    margin: 0 2px;
}

body.tema-soft .nav-categorias a:hover {
    background: var(--color-primary);
    color: white;
}

body.tema-soft .footer {
    border-radius: 40px 40px 0 0;
    margin-top: 40px;
}

body.tema-soft .promo-bar {
    --promo-bar-color1: var(--bg-secondary, #f0f4f8);
    --promo-bar-color2: var(--gray-200, #e2e8f0);
    color: var(--text-primary);
}

body.tema-soft .promo-bar .material-icons {
    color: var(--color-primary);
}

body.tema-soft .tarja-slide strong,
body.tema-soft .tarja-slide b {
    color: var(--color-primary);
}

body.tema-soft .search-form {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

body.tema-soft .search-form input {
    border-radius: 50px 0 0 50px;
}

body.tema-soft .search-form button {
    border-radius: 0 50px 50px 0;
}

body.tema-soft .banner-slide {
    border-radius: 30px;
}

/* ============================================================
   BADGES DE ESTOQUE - Disponibilidade Imediata / Indisponível
   ============================================================ */

/* Badge base */
.product-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.product-stock-badge .material-icons {
    font-size: 14px;
}

/* Disponível - verde */
.product-stock-badge--disponivel {
    background: rgba(0, 200, 83, 0.12);
    color: #00a846;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

/* Indisponível - cinza/vermelho */
.product-stock-badge--indisponivel {
    background: rgba(200, 0, 0, 0.08);
    color: #c00;
    border: 1px solid rgba(200, 0, 0, 0.2);
}

/* Versão grande para página de produto */
.product-stock-badge--lg {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
}

.product-stock-badge--lg .material-icons {
    font-size: 18px;
}

/* Container de status de estoque na página de produto */
.product-stock-status {
    margin: 12px 0;
}

/* Card com produto sem estoque - overlay na imagem */
.product-card--sem-estoque .product-card-image img {
    filter: grayscale(60%);
    opacity: 0.8;
}

/* Overlay "Indisponível" sobre a imagem do card */
.product-overlay-indisponivel {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: inherit;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-overlay-indisponivel .material-icons {
    font-size: 32px;
    color: #ff5252;
}

/* Botão desabilitado "Indisponível" */
.btn-indisponivel {
    background: #e0e0e0 !important;
    color: #999 !important;
    border-color: #ccc !important;
    cursor: not-allowed !important;
    opacity: 0.8 !important;
}

.btn-indisponivel:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Aviso sem estoque na página do produto */
.product-sem-estoque-aviso {
    width: 100%;
}

.product-sem-estoque-aviso .btn-indisponivel {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px;
}
