/**
 * style.css — BomVendedor.com.br — VERSÃO FINAL DE PRODUÇÃO
 * Zero tokens azuis. Paleta âmbar/laranja completa.
 * Cobre: tokens, home, categorias, categoria/slug, ofertas, busca,
 *        auth, minha-conta, contato, legais, 404.
 */

/* ============================================================
   TOKENS ÂMBAR — override total dos tokens azuis do servidor
   ============================================================ */
:root {
    --bv-bg:            #f5f2ee;
    --bv-bg-soft:       #faf8f5;
    --bv-bg-warm:       #fef9f4;
    --bv-card:          #ffffff;
    --bv-card-2:        #fffcf9;

    --bv-text:          #1a1614;
    --bv-text-soft:     #4a3f38;
    --bv-text-muted:    #7a6b63;
    --bv-text-light:    #a89890;
    --bv-white:         #ffffff;

    /* PRIMÁRIA — LARANJA (zero azul) */
    --bv-primary:       #f97316;
    --bv-primary-2:     #fb923c;
    --bv-primary-dark:  #ea580c;
    --bv-primary-soft:  #fff3e8;
    --bv-primary-soft2: #ffe8cc;

    --bv-success:       #059669;
    --bv-success-2:     #10b981;
    --bv-success-soft:  #d1fae5;

    --bv-warning:       #d97706;
    --bv-warning-soft:  #fef3c7;

    --bv-danger:        #dc2626;
    --bv-danger-soft:   #fee2e2;

    --bv-info:          #2563eb;
    --bv-info-soft:     #dbeafe;

    --bv-border:        #e8e0d8;
    --bv-border-strong: #d4c8be;

    --bv-radius-sm:   10px;
    --bv-radius-md:   14px;
    --bv-radius-lg:   18px;
    --bv-radius-xl:   22px;
    --bv-radius-2xl:  28px;
    --bv-radius-pill: 999px;

    --bv-shadow-xs: 0 2px 8px rgba(26,22,20,0.04);
    --bv-shadow-sm: 0 8px 24px rgba(26,22,20,0.07);
    --bv-shadow-md: 0 16px 40px rgba(26,22,20,0.10);
    --bv-shadow-lg: 0 24px 56px rgba(26,22,20,0.14);

    --bv-transition: all 0.18s ease;
    --bv-container:  min(1280px, calc(100% - 32px));
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0; background: var(--bv-bg); color: var(--bv-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
button, input, textarea, select { font: inherit; }
p   { margin-top: 0; }
h1,h2,h3,h4 { margin-top: 0; line-height: 1.2; letter-spacing: -0.02em; }
.container { width: var(--bv-container); margin: 0 auto; }

/* ============================================================
   BADGES / CHIPS
   ============================================================ */
.home-badge {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 3px 10px; border-radius: var(--bv-radius-pill);
    font-size: 0.72rem; font-weight: 800; white-space: nowrap; border: 1px solid transparent;
}
.home-badge--primary { background: var(--bv-primary-soft); color: var(--bv-primary-dark); border-color: var(--bv-primary-soft2); }
.home-badge--success { background: var(--bv-success-soft); color: var(--bv-success); border-color: #a7f3d0; }
.home-badge--soft    { background: var(--bv-bg-soft); color: var(--bv-text-muted); border-color: var(--bv-border); }
.home-badge--warning { background: var(--bv-warning-soft); color: var(--bv-warning); border-color: #fde68a; }
.home-badge--danger  { background: var(--bv-danger-soft); color: var(--bv-danger); border-color: #fecaca; }
.home-badges { display: flex; flex-wrap: wrap; gap: 5px; }
.home-badges--spaced { gap: 8px; }
.home-highlight-pill {
    display: inline-flex; align-items: center; padding: 4px 12px;
    border-radius: var(--bv-radius-pill); font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.04em; text-transform: uppercase;
    background: var(--bv-primary-soft); color: var(--bv-primary-dark); border: 1px solid var(--bv-primary-soft2);
}

/* ============================================================
   BOTÕES GLOBAIS
   ============================================================ */
.bv-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 46px; padding: 0 22px; border: 0;
    border-radius: var(--bv-radius-pill); font-size: 0.9rem; font-weight: 800;
    cursor: pointer; transition: var(--bv-transition); white-space: nowrap; text-decoration: none;
}
.bv-btn--primary {
    background: linear-gradient(135deg, var(--bv-primary) 0%, var(--bv-primary-dark) 100%);
    color: #fff; box-shadow: 0 4px 16px rgba(249,115,22,0.32);
}
.bv-btn--primary:hover { background: linear-gradient(135deg, var(--bv-primary-2) 0%, var(--bv-primary) 100%); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.42); }
.bv-btn--secondary { background: var(--bv-primary-soft); color: var(--bv-primary-dark); border: 1.5px solid var(--bv-primary-soft2); }
.bv-btn--secondary:hover { background: var(--bv-primary-soft2); transform: translateY(-1px); }
.bv-btn--offer {
    display: inline-flex; align-items: center; justify-content: center;
    width: 100%; min-height: 44px; padding: 0 16px; border-radius: var(--bv-radius-md);
    background: linear-gradient(135deg, var(--bv-primary) 0%, var(--bv-primary-dark) 100%);
    color: #fff; font-size: 0.875rem; font-weight: 900; border: 0; cursor: pointer;
    transition: var(--bv-transition); box-shadow: 0 4px 14px rgba(249,115,22,0.28);
    margin-top: auto; text-decoration: none;
}
.bv-btn--offer:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(249,115,22,0.4); }
.bv-btn--sm { min-height: 36px; padding: 0 14px; font-size: 0.8125rem; }

/* ============================================================
   HOME — seções e cabeçalhos
   ============================================================ */
.home-section, .home-ad-section, .home-share-section { margin-bottom: 36px; }
.home-section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 16px; margin-bottom: 18px; flex-wrap: wrap;
}
.home-section-title    { font-size: 1.35rem; font-weight: 900; color: var(--bv-text); margin: 0 0 4px; }
.home-section-subtitle { font-size: 0.875rem; color: var(--bv-text-muted); margin: 0; }
.home-section-link {
    font-size: 0.875rem; font-weight: 700; color: var(--bv-primary); white-space: nowrap;
    transition: color 0.18s; border-bottom: 1.5px solid transparent; padding-bottom: 2px;
}
.home-section-link:hover { color: var(--bv-primary-dark); border-bottom-color: var(--bv-primary-dark); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.home-hero-section { margin-bottom: 40px; }
.home-hero-card {
    display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: center;
    background: var(--bv-card); border-radius: var(--bv-radius-2xl);
    border: 1px solid var(--bv-border); padding: 40px 44px;
    box-shadow: var(--bv-shadow-md); position: relative; overflow: hidden;
}
.home-hero-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at top left, rgba(249,115,22,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.home-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px;
    border-radius: var(--bv-radius-pill); background: var(--bv-primary-soft);
    border: 1px solid var(--bv-primary-soft2); font-size: 0.8rem; font-weight: 700;
    color: var(--bv-primary-dark); margin-bottom: 14px;
}
.home-hero-title    { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 900; color: var(--bv-text); margin: 0 0 12px; }
.home-hero-text     { font-size: 1rem; color: var(--bv-text-soft); line-height: 1.7; margin: 0 0 22px; }
.home-hero-actions  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.home-hero-stats    { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.home-stat-box {
    display: flex; align-items: center; gap: 10px; padding: 11px 14px;
    border-radius: var(--bv-radius-md); background: var(--bv-bg-soft);
    border: 1px solid var(--bv-border); flex: 1 1 90px; min-width: 0;
}
.home-stat-box__icon { font-size: 1.2rem; flex: 0 0 auto; }
.home-stat-box__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.home-stat-box__body strong { font-size: 1.1rem; font-weight: 900; color: var(--bv-text); line-height: 1; }
.home-stat-box__body span   { font-size: 0.72rem; color: var(--bv-text-muted); font-weight: 500; }
.home-hero-trust-line       { display: flex; flex-wrap: wrap; gap: 14px; }
.home-hero-trust-item       { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--bv-text-muted); }

/* Showcase */
.home-showcase-card {
    background: var(--bv-bg-soft); border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius-xl); overflow: hidden; box-shadow: var(--bv-shadow-sm);
    transition: var(--bv-transition);
}
.home-showcase-card:hover { transform: translateY(-3px); box-shadow: var(--bv-shadow-md); }
.home-showcase-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--bv-bg); }
.home-showcase-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s; }
.home-showcase-card:hover .home-showcase-card__media img { transform: scale(1.03); }
.home-showcase-card__content { padding: 14px; }
.home-showcase-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.home-showcase-card__store img { height: 22px; width: auto; object-fit: contain; }
.home-showcase-card__title { font-size: 0.9375rem; font-weight: 700; color: var(--bv-text); margin: 0 0 8px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.home-showcase-card__prices { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.home-showcase-card__old-price { font-size: 0.8rem; color: var(--bv-text-light); text-decoration: line-through; }
.home-showcase-card__price { font-size: 1.25rem; font-weight: 900; color: var(--bv-primary-dark); }

/* ============================================================
   HOME — PRODUTOS EM DESTAQUE
   ============================================================ */
.home-products-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
.home-product-card {
    background: var(--bv-card); border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius-lg); overflow: hidden; display: flex; flex-direction: column;
    box-shadow: var(--bv-shadow-xs); transition: var(--bv-transition);
}
.home-product-card:hover { transform: translateY(-3px); box-shadow: var(--bv-shadow-md); border-color: var(--bv-border-strong); }
.home-product-card__image { aspect-ratio: 1; overflow: hidden; background: var(--bv-bg-soft); display: block; }
.home-product-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.28s; }
.home-product-card:hover .home-product-card__image img { transform: scale(1.05); }
.home-product-card__content { padding: 12px; display: flex; flex-direction: column; flex: 1; gap: 7px; }
.home-product-card__title { font-size: 0.85rem; font-weight: 700; color: var(--bv-text); margin: 0; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.home-product-card__title a { color: inherit; }
.home-product-card__title a:hover { color: var(--bv-primary-dark); }
.home-product-card__text  { font-size: 0.78rem; color: var(--bv-text-muted); margin: 0; }
.home-product-card__price { font-size: 1.05rem; font-weight: 900; color: var(--bv-primary-dark); margin-top: auto; }
.home-product-card__meta  { display: flex; gap: 6px; flex-wrap: wrap; }
.home-product-card__meta span { font-size: 0.72rem; color: var(--bv-text-light); }

/* ============================================================
   HOME — CATEGORIAS POPULARES (cards compactos horizontais)
   ============================================================ */
.home-categories-grid { display: grid; gap: 10px; grid-template-columns: repeat(4, 1fr); }
.home-category-card {
    display: flex; align-items: center; gap: 12px; padding: 12px 14px;
    border-radius: var(--bv-radius-md); background: var(--bv-card);
    border: 1px solid var(--bv-border); box-shadow: var(--bv-shadow-xs);
    transition: var(--bv-transition); text-decoration: none; color: inherit;
}
.home-category-card:hover { transform: translateY(-2px); box-shadow: var(--bv-shadow-sm); border-color: var(--bv-primary-soft2); background: var(--bv-bg-warm); }
.home-category-card__thumb {
    flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; overflow: hidden;
    background: var(--bv-primary-soft); border: 1px solid var(--bv-primary-soft2);
    display: flex; align-items: center; justify-content: center; font-size: 1.45rem;
}
.home-category-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.home-category-card__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.home-category-card__body strong { font-size: 0.875rem; font-weight: 800; color: var(--bv-text); line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-category-card__body small  { font-size: 0.72rem; color: var(--bv-text-muted); }
.home-category-card__body em     { font-size: 0.72rem; font-style: normal; color: var(--bv-text-light); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================================
   HOME — OFERTAS EM EVIDÊNCIA
   ============================================================ */
.home-offer-hero {
    display: grid; grid-template-columns: 240px 1fr; gap: 22px; align-items: center;
    background: var(--bv-card); border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius-xl); padding: 22px;
    box-shadow: var(--bv-shadow-sm); margin-bottom: 16px;
}
.home-offer-hero__image { border-radius: var(--bv-radius-lg); overflow: hidden; background: var(--bv-bg-soft); border: 1px solid var(--bv-border); aspect-ratio: 1; }
.home-offer-hero__image img { width: 100%; height: 100%; object-fit: contain; }
.home-offer-hero__content { display: flex; flex-direction: column; gap: 10px; }
.home-offer-hero__content h3 { font-size: 1.25rem; font-weight: 900; color: var(--bv-text); margin: 0; }
.home-offer-hero__price-block { display: flex; align-items: baseline; gap: 10px; }
.home-offer-hero__old-price { font-size: 0.9rem; color: var(--bv-text-light); text-decoration: line-through; }
.home-offer-hero__price { font-size: 1.75rem; font-weight: 900; color: var(--bv-primary-dark); }

.home-offers-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); }
.home-offer-card {
    background: var(--bv-card); border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius-lg); overflow: hidden; display: flex; flex-direction: column;
    box-shadow: var(--bv-shadow-xs); transition: var(--bv-transition);
}
.home-offer-card:hover { transform: translateY(-3px); box-shadow: var(--bv-shadow-md); }
.home-offer-card__top { display: flex; align-items: center; justify-content: space-between; padding: 10px 10px 0; }
.home-offer-card__store img { height: 18px; width: auto; object-fit: contain; }
.home-offer-card__image { display: block; aspect-ratio: 1; overflow: hidden; background: var(--bv-bg-soft); margin: 6px; border-radius: var(--bv-radius-sm); }
.home-offer-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.25s; }
.home-offer-card:hover .home-offer-card__image img { transform: scale(1.05); }
.home-offer-card__body { padding: 0 10px 10px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
.home-offer-card__title { font-size: 0.8rem; font-weight: 700; color: var(--bv-text); margin: 0; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.home-offer-card__prices { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.home-offer-card__old-price { font-size: 0.72rem; color: var(--bv-text-light); text-decoration: line-through; }
.home-offer-card__price { font-size: 1rem; font-weight: 900; color: var(--bv-primary-dark); }

/* Ad placeholders */
.home-ad-placeholder, .bv-categories-ad-slot__placeholder { display: flex; align-items: center; justify-content: center; min-height: 100px; padding: 20px; border-radius: var(--bv-radius-lg); border: 2px dashed var(--bv-border); background: var(--bv-bg-soft); color: var(--bv-text-muted); font-size: 0.85rem; font-weight: 600; text-align: center; }
.home-empty-state { padding: 36px 24px; text-align: center; background: var(--bv-card); border: 1px dashed var(--bv-border); border-radius: var(--bv-radius-lg); color: var(--bv-text-muted); font-size: 0.9rem; }

/* ============================================================
   CATEGORIAS.PHP — lista de categorias (cards verticais)
   ============================================================ */
.bv-categories-page { width: 100%; padding: 24px 0 56px; }
.bv-categories-page .container { width: var(--bv-container); margin: 0 auto; }

.bv-categories-hero-section {
    margin-bottom: 28px; padding: 28px 32px;
    background: linear-gradient(135deg, var(--bv-primary-soft) 0%, var(--bv-bg-warm) 100%);
    border: 1px solid var(--bv-primary-soft2); border-radius: var(--bv-radius-xl);
}
.bv-categories-hero-section h1 { font-size: 2rem; font-weight: 900; color: var(--bv-text); margin: 0 0 8px; }
.bv-categories-hero-section p  { font-size: 0.9375rem; color: var(--bv-text-soft); margin: 0; }

/* Highlight de destaque */
.bv-categories-highlight {
    display: grid; grid-template-columns: 200px 1fr; gap: 22px; align-items: center;
    padding: 22px; border-radius: var(--bv-radius-xl); margin-bottom: 24px;
    background: linear-gradient(135deg, var(--bv-primary-soft) 0%, var(--bv-card) 100%);
    border: 1px solid var(--bv-primary-soft2);
}
.bv-categories-highlight__media { border-radius: var(--bv-radius-lg); overflow: hidden; background: var(--bv-bg-soft); border: 1px solid var(--bv-border); }
.bv-categories-highlight__media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.bv-categories-highlight__content { display: flex; flex-direction: column; gap: 12px; }
.bv-categories-highlight__title { font-size: 1.3rem; font-weight: 900; color: var(--bv-text); margin: 0; }
.bv-categories-highlight__meta  { display: flex; flex-wrap: wrap; gap: 8px; }
.bv-categories-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 0 22px; border-radius: var(--bv-radius-pill);
    background: linear-gradient(135deg, var(--bv-primary) 0%, var(--bv-primary-dark) 100%);
    color: #fff; font-weight: 900; font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(249,115,22,0.3); transition: var(--bv-transition);
}
.bv-categories-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(249,115,22,0.42); }

/* Ad slot */
.bv-categories-ad-slot { margin: 18px 0; }

/* Grid head */
.bv-categories-grid-wrap { }
.bv-categories-grid-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 18px; flex-wrap: wrap; gap: 10px;
}
.bv-categories-grid-head h2 { font-size: 1.25rem; font-weight: 900; color: var(--bv-text); margin: 0 0 4px; }
.bv-categories-grid-head p  { font-size: 0.875rem; color: var(--bv-text-muted); margin: 0; }
.bv-categories-grid-head__count {
    font-size: 0.8rem; font-weight: 700; color: var(--bv-text-muted);
    background: var(--bv-bg-soft); padding: 5px 14px;
    border-radius: var(--bv-radius-pill); border: 1px solid var(--bv-border);
}

/* GRID — 4 colunas, cards verticais com imagem grande */
.bv-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px; align-items: stretch;
}
.bv-categories-grid-full { grid-column: 1 / -1; }

/* Card de categoria — vertical com imagem/ícone no topo */
.bv-categories-card {
    display: flex; flex-direction: column; height: 100%;
    border-radius: var(--bv-radius-xl); background: var(--bv-card);
    border: 1px solid var(--bv-border); box-shadow: var(--bv-shadow-xs);
    overflow: hidden; text-decoration: none; color: inherit;
    transition: var(--bv-transition);
}
.bv-categories-card:hover { transform: translateY(-4px); box-shadow: var(--bv-shadow-md); border-color: var(--bv-primary-soft2); }

/* Área da imagem/ícone */
.bv-categories-card__media {
    display: flex; align-items: center; justify-content: center;
    height: 156px; padding: 18px; overflow: hidden;
    background: linear-gradient(180deg, var(--bv-primary-soft) 0%, var(--bv-bg-warm) 100%);
    border-bottom: 1px solid var(--bv-border);
    transition: background 0.18s;
}
.bv-categories-card:hover .bv-categories-card__media {
    background: linear-gradient(180deg, var(--bv-primary-soft2) 0%, var(--bv-primary-soft) 100%);
}
.bv-categories-card__image { width: 100%; height: 120px; object-fit: contain; }
.bv-categories-card__emoji {
    display: flex; align-items: center; justify-content: center;
    width: 88px; height: 88px; border-radius: 22px;
    background: rgba(249,115,22,0.12); font-size: 2.4rem;
}

/* Corpo */
.bv-categories-card__body { display: flex; flex-direction: column; flex: 1; gap: 8px; padding: 16px; }
.bv-categories-card__title { font-size: 0.9375rem; font-weight: 800; color: var(--bv-text); margin: 0; line-height: 1.3; }
.bv-categories-card__text  { font-size: 0.8rem; color: var(--bv-text-muted); line-height: 1.55; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bv-categories-card__meta  {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    margin-top: auto; padding-top: 12px; border-top: 1px solid var(--bv-border);
}
.bv-categories-card__count {
    font-size: 0.72rem; font-weight: 800; color: var(--bv-primary-dark);
    background: var(--bv-primary-soft); padding: 3px 10px;
    border-radius: var(--bv-radius-pill); border: 1px solid var(--bv-primary-soft2);
}
.bv-categories-card__cta { font-size: 0.78rem; font-weight: 800; color: var(--bv-primary-dark); }

/* Chips */
.bv-categories-chip { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: var(--bv-radius-pill); font-size: 0.78rem; font-weight: 700; border: 1px solid transparent; }
.bv-categories-chip--green { background: var(--bv-success-soft); color: var(--bv-success); border-color: #a7f3d0; }
.bv-categories-chip--blue  { background: var(--bv-primary-soft); color: var(--bv-primary-dark); border-color: var(--bv-primary-soft2); }
.bv-categories-empty       { padding: 36px; text-align: center; color: var(--bv-text-muted); }

/* ============================================================
   CATEGORIA.PHP — produtos de uma categoria (bv-category-card)
   ============================================================ */
.bv-category-page { width: 100%; padding: 24px 0 56px; }
.bv-category-page .container { width: var(--bv-container); margin: 0 auto; }

.bv-category-header {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    padding: 26px 30px; margin-bottom: 24px;
    background: linear-gradient(135deg, var(--bv-primary-soft) 0%, var(--bv-card) 100%);
    border: 1px solid var(--bv-primary-soft2); border-radius: var(--bv-radius-xl);
}
.bv-category-header__thumb {
    width: 72px; height: 72px; border-radius: var(--bv-radius-lg); overflow: hidden;
    flex: 0 0 auto; background: var(--bv-bg-soft); border: 2px solid var(--bv-primary-soft2);
    display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.bv-category-header__thumb img { width: 100%; height: 100%; object-fit: cover; }
.bv-category-header__info { flex: 1 1 0; min-width: 0; }
.bv-category-header__title { font-size: 1.75rem; font-weight: 900; color: var(--bv-text); margin: 0 0 6px; }
.bv-category-header__desc  { font-size: 0.9rem; color: var(--bv-text-soft); margin: 0; }

.bv-category-grid      { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
.bv-category-grid-full { grid-column: 1 / -1; }

/* Card de produto na categoria */
.bv-category-card {
    display: flex; flex-direction: column; height: 100%;
    border-radius: var(--bv-radius-xl); background: var(--bv-card);
    border: 1px solid var(--bv-border); box-shadow: var(--bv-shadow-xs);
    overflow: hidden; transition: var(--bv-transition);
}
.bv-category-card:hover { transform: translateY(-3px); box-shadow: var(--bv-shadow-md); border-color: var(--bv-border-strong); }

.bv-category-card__image {
    position: relative; display: flex; align-items: center; justify-content: center;
    height: 210px; padding: 14px;
    background: var(--bv-bg-soft); border-bottom: 1px solid var(--bv-border);
    overflow: hidden; text-decoration: none;
}
.bv-category-card__image img { width: 100%; height: 180px; object-fit: contain; transition: transform 0.28s; }
.bv-category-card:hover .bv-category-card__image img { transform: scale(1.06); }

.bv-category-card__discount {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    display: inline-flex; align-items: center; min-height: 26px; padding: 0 8px;
    border-radius: var(--bv-radius-pill); background: var(--bv-danger); color: #fff;
    font-size: 0.72rem; font-weight: 900;
}
.bv-category-card__body { display: flex; flex-direction: column; flex: 1; gap: 8px; padding: 14px; }
.bv-category-card__top  { display: flex; flex-wrap: wrap; gap: 5px; }

.bv-category-card__title {
    font-size: 0.9rem; font-weight: 800; color: var(--bv-text); margin: 0;
    line-height: 1.4; min-height: 2.8em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bv-category-card__title a { color: inherit; }
.bv-category-card__title a:hover { color: var(--bv-primary-dark); }
.bv-category-card__modelo    { font-size: 0.78rem; color: var(--bv-text-muted); min-height: 18px; }
.bv-category-card__price     { font-size: 1.5rem; font-weight: 900; color: var(--bv-primary-dark); letter-spacing: -0.02em; }
.bv-category-card__old-price { font-size: 0.8rem; color: var(--bv-text-light); text-decoration: line-through; }
.bv-category-card__muted     { font-size: 0.8rem; color: var(--bv-text-muted); }

/* BOTÃO DO CARD — laranja, nunca azul */
.bv-category-card__btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 100%; min-height: 44px; margin-top: auto; padding: 0 16px;
    border-radius: var(--bv-radius-md);
    background: linear-gradient(135deg, var(--bv-primary) 0%, var(--bv-primary-dark) 100%);
    color: #fff; font-size: 0.875rem; font-weight: 900;
    box-shadow: 0 4px 14px rgba(249,115,22,0.25); transition: var(--bv-transition);
    text-decoration: none;
}
.bv-category-card__btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(249,115,22,0.40); }

/* Chips da categoria */
.bv-category-chip         { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: var(--bv-radius-pill); font-size: 0.72rem; font-weight: 800; border: 1px solid transparent; }
.bv-category-chip--primary { background: var(--bv-primary-soft); color: var(--bv-primary-dark); border-color: var(--bv-primary-soft2); }
.bv-category-chip--success { background: var(--bv-success-soft); color: var(--bv-success); border-color: #a7f3d0; }
.bv-category-chip--neutral { background: var(--bv-bg-soft); color: var(--bv-text-muted); border-color: var(--bv-border); }
.bv-category-chip--soft    { background: var(--bv-bg-soft); color: var(--bv-text-light); border-color: var(--bv-border); }

/* Paginação da categoria */
.bv-category-pagination { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.bv-category-pagination__btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 40px; padding: 0 16px; border-radius: var(--bv-radius-pill);
    border: 1.5px solid var(--bv-border); background: var(--bv-card);
    font-size: 0.875rem; font-weight: 700; color: var(--bv-text-soft); transition: var(--bv-transition);
}
.bv-category-pagination__btn:hover { border-color: var(--bv-primary-soft2); color: var(--bv-primary-dark); background: var(--bv-primary-soft); }
.bv-category-pagination__btn.is-active { background: var(--bv-primary-soft); border-color: var(--bv-primary); color: var(--bv-primary-dark); font-weight: 900; }
.bv-category-pagination__btn.is-disabled { opacity: 0.4; pointer-events: none; }

/* ============================================================
   OFERTAS.PHP — bv-ofertas-*
   ============================================================ */
.bv-ofertas-page  { width: 100%; padding: 24px 0 56px; }
.bv-ofertas-shell { width: var(--bv-container); margin: 0 auto; }

.bv-ofertas-hero {
    padding: 26px 30px; margin-bottom: 18px;
    background: linear-gradient(135deg, var(--bv-primary-soft) 0%, var(--bv-bg-warm) 100%);
    border: 1px solid var(--bv-primary-soft2); border-radius: var(--bv-radius-xl);
}
.bv-ofertas-hero__badge {
    display: inline-flex; align-items: center; padding: 4px 12px;
    border-radius: var(--bv-radius-pill); background: var(--bv-primary-soft2);
    border: 1px solid var(--bv-border-strong); color: var(--bv-primary-dark);
    font-size: 0.78rem; font-weight: 800; margin-bottom: 10px;
}
.bv-ofertas-hero h1 { font-size: 1.75rem; font-weight: 900; color: var(--bv-text); margin: 0 0 8px; }
.bv-ofertas-hero > p { font-size: 0.9rem; color: var(--bv-text-soft); margin: 0 0 12px; }
.bv-ofertas-hero__meta { display: flex; flex-wrap: wrap; gap: 8px; }

/* Filtros */
.bv-ofertas-filtros {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
    padding: 12px 16px; background: var(--bv-card); border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius-md); box-shadow: var(--bv-shadow-xs);
}
.bv-ofertas-filtros__label { font-size: 0.8125rem; font-weight: 700; color: var(--bv-text-muted); white-space: nowrap; }
.bv-ofertas-chip--filter {
    display: inline-flex; align-items: center; padding: 5px 14px;
    border-radius: var(--bv-radius-pill); border: 1.5px solid var(--bv-border);
    background: var(--bv-card); font-size: 0.8125rem; font-weight: 600;
    color: var(--bv-text-soft); cursor: pointer; transition: var(--bv-transition); text-decoration: none;
}
.bv-ofertas-chip--filter:hover { border-color: var(--bv-primary); color: var(--bv-primary-dark); background: var(--bv-primary-soft); }
.bv-ofertas-chip--filter.is-active { background: var(--bv-primary-soft); border-color: var(--bv-primary); color: var(--bv-primary-dark); font-weight: 800; }

/* Highlight */
.bv-ofertas-highlight {
    display: grid; grid-template-columns: 220px 1fr; gap: 22px; align-items: center;
    padding: 22px; background: var(--bv-card); border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius-xl); margin-bottom: 18px; box-shadow: var(--bv-shadow-sm);
}
.bv-ofertas-highlight__media { border-radius: var(--bv-radius-lg); overflow: hidden; background: var(--bv-bg-soft); border: 1px solid var(--bv-border); }
.bv-ofertas-highlight__media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.bv-ofertas-highlight__content { display: flex; flex-direction: column; gap: 10px; }
.bv-ofertas-highlight__badge { font-size: 0.78rem; font-weight: 800; color: var(--bv-primary-dark); }
.bv-ofertas-highlight__content h2 { font-size: 1.3rem; font-weight: 900; color: var(--bv-text); margin: 0; }
.bv-ofertas-highlight__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.bv-ofertas-highlight__price { font-size: 2rem; font-weight: 900; color: var(--bv-primary-dark); }
.bv-ofertas-highlight__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Section */
.bv-ofertas-section { }
.bv-ofertas-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 10px; }
.bv-ofertas-section__head h2 { font-size: 1.15rem; font-weight: 900; color: var(--bv-text); margin: 0 0 4px; }
.bv-ofertas-section__head p  { font-size: 0.875rem; color: var(--bv-text-muted); margin: 0; }
.bv-ofertas-section__count   { font-size: 0.8rem; font-weight: 700; color: var(--bv-text-muted); background: var(--bv-bg-soft); padding: 5px 14px; border-radius: var(--bv-radius-pill); border: 1px solid var(--bv-border); }

/* Grid de cards */
.bv-ofertas-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
.bv-ofertas-card {
    display: flex; flex-direction: column; height: 100%;
    background: var(--bv-card); border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius-xl); overflow: hidden;
    box-shadow: var(--bv-shadow-xs); transition: var(--bv-transition);
}
.bv-ofertas-card:hover { transform: translateY(-3px); box-shadow: var(--bv-shadow-md); border-color: var(--bv-border-strong); }
.bv-ofertas-card.is-top-offer { border-color: var(--bv-primary-soft2); }
.bv-ofertas-card__image {
    display: flex; align-items: center; justify-content: center;
    position: relative; height: 190px; padding: 14px;
    background: var(--bv-bg-soft); border-bottom: 1px solid var(--bv-border); text-decoration: none;
}
.bv-ofertas-card__image img { width: 100%; height: 160px; object-fit: contain; transition: transform 0.25s; }
.bv-ofertas-card:hover .bv-ofertas-card__image img { transform: scale(1.06); }
.bv-ofertas-card__badge {
    position: absolute; top: 10px; left: 10px;
    display: inline-flex; align-items: center; padding: 3px 10px;
    border-radius: var(--bv-radius-pill); background: var(--bv-primary); color: #fff;
    font-size: 0.7rem; font-weight: 900;
}
.bv-ofertas-card__body { display: flex; flex-direction: column; flex: 1; gap: 8px; padding: 14px; }
.bv-ofertas-card__meta  { display: flex; flex-wrap: wrap; gap: 6px; }
.bv-ofertas-card__title { font-size: 0.875rem; font-weight: 700; color: var(--bv-text); margin: 0; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bv-ofertas-card__title a { color: inherit; }
.bv-ofertas-card__modelo  { font-size: 0.78rem; color: var(--bv-text-muted); }
.bv-ofertas-card__old     { font-size: 0.8rem; color: var(--bv-text-light); text-decoration: line-through; }
.bv-ofertas-card__price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.bv-ofertas-card__price   { font-size: 1.35rem; font-weight: 900; color: var(--bv-primary-dark); letter-spacing: -0.02em; }

/* Botão principal de ofertas */
.bv-ofertas-btn--primary {
    display: inline-flex; align-items: center; justify-content: center;
    width: 100%; min-height: 44px; margin-top: auto; padding: 0 16px;
    border-radius: var(--bv-radius-md);
    background: linear-gradient(135deg, var(--bv-primary) 0%, var(--bv-primary-dark) 100%);
    color: #fff; font-weight: 900; font-size: 0.875rem; transition: var(--bv-transition);
    box-shadow: 0 4px 14px rgba(249,115,22,0.25); text-decoration: none;
}
.bv-ofertas-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(249,115,22,0.40); }

/* Chips de ofertas */
.bv-ofertas-chip          { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: var(--bv-radius-pill); font-size: 0.75rem; font-weight: 700; border: 1px solid transparent; }
.bv-ofertas-chip--green   { background: var(--bv-success-soft); color: var(--bv-success); border-color: #a7f3d0; }
.bv-ofertas-chip--blue    { background: var(--bv-primary-soft); color: var(--bv-primary-dark); border-color: var(--bv-primary-soft2); }
.bv-ofertas-chip--neutral { background: var(--bv-bg-soft); color: var(--bv-text-muted); border-color: var(--bv-border); }
.bv-ofertas-empty         { padding: 36px; text-align: center; color: var(--bv-text-muted); }
.bv-ofertas-ad-slot       { margin: 18px 0; }

/* ============================================================
   PÁGINAS LEGAIS
   ============================================================ */
.bv-legal-page { width: 100%; padding: 28px 0 56px; }
.bv-legal-page .container { width: var(--bv-container); margin: 0 auto; }
.bv-legal-hero {
    padding: 28px 32px; margin-bottom: 24px;
    background: linear-gradient(135deg, var(--bv-primary-soft) 0%, var(--bv-bg-warm) 100%);
    border: 1px solid var(--bv-primary-soft2); border-radius: var(--bv-radius-xl);
}
.bv-legal-hero__badge {
    display: inline-flex; align-items: center; padding: 4px 12px;
    border-radius: var(--bv-radius-pill); background: var(--bv-primary-soft2);
    border: 1px solid var(--bv-border-strong); color: var(--bv-primary-dark);
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px;
}
.bv-legal-hero__title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; color: var(--bv-text); margin: 0 0 8px; }
.bv-legal-hero__text  { font-size: 0.95rem; color: var(--bv-text-soft); line-height: 1.75; margin: 0; }
.bv-legal-layout      { display: grid; grid-template-columns: 270px 1fr; gap: 20px; align-items: start; }
.bv-legal-summary__card, .bv-legal-card, .bv-legal-cta {
    background: var(--bv-card); border: 1px solid var(--bv-border);
    border-radius: var(--bv-radius-xl); box-shadow: var(--bv-shadow-xs); padding: 22px;
}
.bv-legal-summary__card { position: sticky; top: 90px; }
.bv-legal-card { margin-bottom: 14px; }
.bv-legal-summary__card h2 { font-size: 1rem; font-weight: 800; color: var(--bv-text); margin: 0 0 12px; }
.bv-legal-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--bv-text); margin: 0 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--bv-border); }
.bv-legal-cta h3  { font-size: 1.05rem; font-weight: 800; color: var(--bv-text); margin: 0 0 10px; }
.bv-legal-summary__card ul, .bv-legal-list { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.bv-legal-summary__card li, .bv-legal-list li, .bv-legal-card p, .bv-legal-cta p { font-size: 0.9rem; color: var(--bv-text-soft); line-height: 1.75; }
.bv-legal-card p { margin: 0 0 10px; }
.bv-legal-card p:last-child { margin: 0; }
.bv-legal-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.bv-legal-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 0 20px; border-radius: var(--bv-radius-pill);
    font-size: 0.875rem; font-weight: 800; transition: var(--bv-transition); text-decoration: none;
}
.bv-legal-btn--primary { background: linear-gradient(135deg, var(--bv-primary) 0%, var(--bv-primary-dark) 100%); color: #fff; box-shadow: 0 4px 14px rgba(249,115,22,0.28); }
.bv-legal-btn--ghost   { background: var(--bv-card); border: 1.5px solid var(--bv-border); color: var(--bv-primary-dark); }
.bv-legal-btn--primary:hover, .bv-legal-btn--ghost:hover { transform: translateY(-1px); }

/* ============================================================
   BUSCA
   ============================================================ */
.bv-busca-page .container { width: var(--bv-container); margin: 0 auto; padding-top: 24px; padding-bottom: 56px; }
.bv-busca-form {
    display: flex; gap: 8px; align-items: center; background: var(--bv-card);
    border: 1px solid var(--bv-border); border-radius: var(--bv-radius-xl);
    padding: 6px 8px; box-shadow: var(--bv-shadow-sm); margin-bottom: 14px;
}
.bv-busca-form input { flex: 1; border: 0; outline: none; background: transparent; height: 44px; padding: 0 12px; font-size: 1rem; color: var(--bv-text); }
.bv-busca-form button { height: 44px; padding: 0 24px; background: linear-gradient(135deg, var(--bv-primary) 0%, var(--bv-primary-dark) 100%); color: #fff; font-weight: 800; font-size: 0.9rem; border: 0; border-radius: var(--bv-radius-pill); cursor: pointer; transition: var(--bv-transition); box-shadow: 0 4px 14px rgba(249,115,22,0.28); }
.bv-busca-form button:hover { transform: translateY(-1px); }
.bv-busca-meta { font-size: 0.875rem; color: var(--bv-text-muted); margin-bottom: 20px; }
.bv-busca-meta strong { color: var(--bv-text); }
.bv-busca-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); }
.bv-busca-empty { text-align: center; padding: 60px 24px; background: var(--bv-card); border: 1px dashed var(--bv-border); border-radius: var(--bv-radius-xl); }
.bv-busca-empty__icon  { font-size: 3rem; margin-bottom: 16px; }
.bv-busca-empty__title { font-size: 1.25rem; font-weight: 700; color: var(--bv-text); margin: 0 0 8px; }
.bv-busca-empty__text  { font-size: 0.9rem; color: var(--bv-text-muted); margin: 0; }

/* ============================================================
   AUTH
   ============================================================ */
.auth-page { min-height: 60vh; display: flex; align-items: center; padding: 40px 0; }
.auth-shell { width: var(--bv-container); margin: 0 auto; }
.auth-shell--single { max-width: 480px; margin: 0 auto; }
.auth-card { background: var(--bv-card); border: 1px solid var(--bv-border); border-radius: var(--bv-radius-2xl); padding: 40px; box-shadow: var(--bv-shadow-md); }
.auth-card__eyebrow { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--bv-radius-pill); background: var(--bv-primary-soft); border: 1px solid var(--bv-primary-soft2); font-size: 0.72rem; font-weight: 800; color: var(--bv-primary-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.auth-card__title    { font-size: 1.75rem; font-weight: 900; color: var(--bv-text); margin: 0 0 8px; }
.auth-card__subtitle { font-size: 0.9rem; color: var(--bv-text-soft); margin: 0; line-height: 1.6; }
.auth-card__footer   { margin-top: 18px; font-size: 0.875rem; color: var(--bv-text-muted); text-align: center; }
.auth-card__footer a { color: var(--bv-primary-dark); font-weight: 700; }
.auth-card__footer--no-border { border-top: 0; }
.auth-alert { padding: 12px 16px; border-radius: var(--bv-radius-md); font-size: 0.875rem; font-weight: 600; margin-bottom: 18px; border: 1px solid transparent; }
.auth-alert--success { background: var(--bv-success-soft); color: var(--bv-success); border-color: #a7f3d0; }
.auth-alert--error   { background: var(--bv-danger-soft);  color: var(--bv-danger);  border-color: #fecaca; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label { font-size: 0.875rem; font-weight: 700; color: var(--bv-text-soft); }
.auth-field input, .auth-field select, .auth-field textarea {
    height: 48px; padding: 0 16px; border: 1.5px solid var(--bv-border);
    border-radius: var(--bv-radius-md); background: var(--bv-bg-soft);
    color: var(--bv-text); font-size: 0.9375rem; outline: none; transition: all 0.18s; width: 100%;
}
.auth-field input:focus { border-color: var(--bv-primary); background: var(--bv-card); box-shadow: 0 0 0 3px var(--bv-primary-soft); }
.auth-field textarea { height: auto; min-height: 100px; padding: 12px 16px; resize: vertical; }
.auth-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.auth-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.875rem; color: var(--bv-text-soft); line-height: 1.55; }
.auth-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--bv-primary); flex: 0 0 auto; }
.auth-button { display: flex; align-items: center; justify-content: center; width: 100%; height: 52px; padding: 0 24px; border-radius: var(--bv-radius-pill); border: 0; font-size: 1rem; font-weight: 800; cursor: pointer; transition: var(--bv-transition); }
.auth-button--primary { background: linear-gradient(135deg, var(--bv-primary) 0%, var(--bv-primary-dark) 100%); color: #fff; box-shadow: 0 4px 16px rgba(249,115,22,0.32); }
.auth-button--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.42); }
.auth-button--success { background: linear-gradient(135deg, var(--bv-success-2) 0%, var(--bv-success) 100%); color: #fff; }
.auth-link { font-size: 0.875rem; color: var(--bv-primary-dark); font-weight: 700; }
.auth-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   MINHA CONTA
   ============================================================ */
.account-dashboard-page { width: 100%; padding: 28px 0 56px; }
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: flex-start; }
.account-card { background: var(--bv-card); border: 1px solid var(--bv-border); border-radius: var(--bv-radius-xl); padding: 22px; box-shadow: var(--bv-shadow-xs); margin-bottom: 14px; }
.account-card--profile { background: linear-gradient(135deg, var(--bv-primary-soft) 0%, var(--bv-card) 100%); border-color: var(--bv-primary-soft2); }
.account-nav { display: flex; flex-direction: column; gap: 4px; }
.account-nav__link { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--bv-radius-md); font-size: 0.875rem; font-weight: 600; color: var(--bv-text-soft); border: 1px solid transparent; transition: var(--bv-transition); }
.account-nav__link:hover { background: var(--bv-primary-soft); border-color: var(--bv-primary-soft2); color: var(--bv-primary-dark); }
.account-nav__link.is-active { background: var(--bv-primary-soft); border-color: var(--bv-primary-soft2); color: var(--bv-primary-dark); font-weight: 700; }
.account-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.account-kpi-card { background: var(--bv-card); border: 1px solid var(--bv-border); border-radius: var(--bv-radius-lg); padding: 16px; box-shadow: var(--bv-shadow-xs); text-align: center; }
.account-kpi-card__value { font-size: 1.75rem; font-weight: 900; color: var(--bv-primary-dark); line-height: 1; }
.account-kpi-card__label { font-size: 0.75rem; color: var(--bv-text-muted); font-weight: 600; margin-bottom: 4px; }
.account-chip          { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: var(--bv-radius-pill); font-size: 0.72rem; font-weight: 800; border: 1px solid transparent; }
.account-chip--success { background: var(--bv-success-soft); color: var(--bv-success); border-color: #a7f3d0; }
.account-chip--soft    { background: var(--bv-bg-soft); color: var(--bv-text-muted); border-color: var(--bv-border); }
.account-chip--warning { background: var(--bv-warning-soft); color: var(--bv-warning); border-color: #fde68a; }
.account-chip--new     { background: var(--bv-success-soft); color: var(--bv-success); border-color: #a7f3d0; }
.account-empty-state   { text-align: center; padding: 36px 24px; border: 1px dashed var(--bv-border); border-radius: var(--bv-radius-xl); color: var(--bv-text-muted); }

/* ============================================================
   CONTATO
   ============================================================ */
.bv-contact-page    { width: 100%; padding: 28px 0 56px; }
.bv-contact-layout  { display: grid; grid-template-columns: 1fr 1.5fr; gap: 28px; align-items: flex-start; }
.bv-contact-info__card, .bv-contact-form-card { background: var(--bv-card); border: 1px solid var(--bv-border); border-radius: var(--bv-radius-xl); padding: 26px; box-shadow: var(--bv-shadow-sm); }
.bv-contact-info__item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--bv-border); }
.bv-contact-info__item:last-of-type { border-bottom: 0; }
.bv-contact-info__icon { width: 36px; height: 36px; border-radius: var(--bv-radius-md); background: var(--bv-primary-soft); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex: 0 0 auto; }
.bv-contact-alert { padding: 12px 16px; border-radius: var(--bv-radius-md); font-size: 0.875rem; font-weight: 600; margin-bottom: 16px; border: 1px solid transparent; }
.bv-contact-alert--success { background: var(--bv-success-soft); color: var(--bv-success); border-color: #a7f3d0; }
.bv-contact-alert--error   { background: var(--bv-danger-soft);  color: var(--bv-danger);  border-color: #fecaca; }

/* ============================================================
   PAGINAÇÃO GLOBAL
   ============================================================ */
.bv-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.bv-pagination a, .bv-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border-radius: var(--bv-radius-pill); border: 1.5px solid var(--bv-border); font-size: 0.875rem; font-weight: 700; color: var(--bv-text-soft); background: var(--bv-card); transition: var(--bv-transition); }
.bv-pagination a:hover { border-color: var(--bv-primary-soft2); color: var(--bv-primary-dark); background: var(--bv-primary-soft); }
.bv-pagination .active { background: var(--bv-primary-soft); border-color: var(--bv-primary); color: var(--bv-primary-dark); }
.bv-pagination .disabled { opacity: 0.4; pointer-events: none; }

/* ============================================================
   404
   ============================================================ */
.bv-404-page  { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 64px 24px; }
.bv-404-code  { font-size: 6rem; font-weight: 900; color: var(--bv-primary); opacity: 0.18; line-height: 1; margin: 0 0 16px; }
.bv-404-title { font-size: 1.75rem; font-weight: 900; color: var(--bv-text); margin: 0 0 10px; }
.bv-404-text  { font-size: 1rem; color: var(--bv-text-soft); margin: 0 0 28px; }

/* ============================================================
   RESPONSIVO COMPLETO
   ============================================================ */
@media (max-width: 1024px) {
    .home-hero-card        { grid-template-columns: 1fr; }
    .home-hero-showcase    { display: none; }
    .home-products-grid, .bv-ofertas-grid, .bv-busca-grid { grid-template-columns: repeat(3, 1fr); }
    .home-categories-grid  { grid-template-columns: repeat(3, 1fr); }
    .bv-categories-grid    { grid-template-columns: repeat(3, 1fr); }
    .bv-category-grid      { grid-template-columns: repeat(3, 1fr); }
    .bv-legal-layout        { grid-template-columns: 220px 1fr; }
    .account-layout         { grid-template-columns: 220px 1fr; }
    .bv-contact-layout      { grid-template-columns: 1fr; }
    .bv-ofertas-highlight   { grid-template-columns: 180px 1fr; }
}
@media (max-width: 768px) {
    .home-products-grid, .bv-ofertas-grid, .bv-busca-grid, .home-offers-grid { grid-template-columns: repeat(2, 1fr); }
    .home-categories-grid, .bv-categories-grid, .bv-category-grid { grid-template-columns: repeat(2, 1fr); }
    .home-hero-card         { padding: 24px 20px; }
    .home-offer-hero        { grid-template-columns: 1fr; }
    .bv-ofertas-highlight   { grid-template-columns: 1fr; }
    .bv-legal-layout        { grid-template-columns: 1fr; }
    .account-layout         { grid-template-columns: 1fr; }
    .account-kpis           { grid-template-columns: repeat(2, 1fr); }
    .auth-card              { padding: 28px 20px; }
    .auth-form__grid        { grid-template-columns: 1fr; }
    .bv-categories-highlight { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .home-products-grid, .bv-ofertas-grid, .bv-busca-grid, .home-offers-grid,
    .home-categories-grid, .bv-categories-grid, .bv-category-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .home-hero-card   { padding: 18px 14px; }
    .home-hero-title  { font-size: 1.5rem; }
    .home-offers-grid { grid-template-columns: 1fr; }
}
