/* ============================================================
   NOSSOS CONGELADOS — compat.css
   Reimplementação limpa de todas as classes do sistema.
   Sem conflitos, sem !important, responsividade real.
   Funciona junto com Tailwind CDN.
   ============================================================ */

/* ── GLOBAL ── */
:root {
  --bg: #0a1428;
  --bg2: #0d1b3e;
  --bg3: #111d3a;
  --bg4: #162040;
  --card: rgba(13,24,58,0.80);
  --orange: #FF8B35;
  --orange-d: #FF7043;
  --ice: #4DDDE1;
  --ice2: #38BDF8;
  --text: #FFFFFF;
  --text-muted: #8B99C8;
  --text-faint: #5a6a8a;
  --border: rgba(100,140,220,0.14);
  --radius: 12px;
  --radius-lg: 16px;
  --header-h: 100px;
  --grad-fire: linear-gradient(135deg, #FF8B35, #FF7043);
  --grad-ice: linear-gradient(135deg, #4DDDE1, #38BDF8);
  --input-bg: rgba(10,18,45,0.92);
  --input-bg-solid: #0d1830;
  --input-border: rgba(255,255,255,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
  --surface-glass: rgba(10,20,50,0.85);
}

html, body { overflow-x: hidden; width: 100%; max-width: 100%; }
body { font-family: 'Nunito', sans-serif; color: #fff; line-height: 1.6; min-height: 100vh; }
a { text-decoration: none; color: inherit; }

/* ── CONTAINER ── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; box-sizing: border-box; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

/* ── SECTION ── */
.section { padding: 2rem 0; }
@media (max-width: 480px) { .section { padding: 1.5rem 0; } }
.section-header { margin-bottom: 1.5rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: .04em; line-height: 1; color: #fff; }
.section-title span { color: #FF8B35; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-top: .5rem; line-height: 1.6; }

/* ── BUTTONS — hovers suaves ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .72rem 1.5rem; border-radius: 12px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .9rem; cursor: pointer; border: none; transition: all .3s ease; text-decoration: none; white-space: nowrap; min-height: 44px; }
.btn-orange { background: linear-gradient(135deg, #FF8B35, #FF7043); color: #fff; box-shadow: 0 4px 18px rgba(255,139,53,.3); }
.btn-orange:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,139,53,.35); }
.btn-outline { background: transparent; color: #FF8B35; border: 1.5px solid rgba(255,139,53,.35); }
.btn-outline:hover { background: rgba(255,139,53,.06); border-color: #FF8B35; }
.btn-dark { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.12); }
.btn-dark:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.btn-danger { background: #ef4444; color: #fff; }
.btn-danger:hover { background: #dc2626; }
.btn-success { background: #22c55e; color: #fff; }
.btn-success:hover { background: #16a34a; }
.btn-sm { padding: .45rem .95rem; font-size: .8rem; min-height: 38px; }
.btn-xs { padding: .3rem .7rem; font-size: .75rem; min-height: 34px; }

/* ── GLASS CARD ── */
.glass-card { background: rgba(13,24,58,0.80); border: 1px solid rgba(100,140,220,0.14); border-radius: 16px; padding: 1.5rem; backdrop-filter: blur(10px); transition: border-color .35s ease; }
@media (hover: hover) and (pointer: fine) { .glass-card:hover { border-color: rgba(255,139,53,.15); } }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; gap: .3rem; padding: .25rem .75rem; border-radius: 999px; font-size: .72rem; font-weight: 800; }
.badge-orange { background: rgba(255,139,53,.12); color: #FF8B35; border: 1px solid rgba(255,139,53,.25); }
.badge-green { background: rgba(34,197,94,.12); color: #22c55e; border: 1px solid rgba(34,197,94,.25); }
.badge-red { background: rgba(239,68,68,.12); color: #ef4444; border: 1px solid rgba(239,68,68,.25); }
.badge-yellow { background: rgba(234,179,8,.12); color: #eab308; border: 1px solid rgba(234,179,8,.25); }
.badge-blue { background: rgba(77,221,225,.1); color: #4DDDE1; border: 1px solid rgba(77,221,225,.2); }
.badge-gray { background: rgba(255,255,255,.07); color: var(--text-muted); }

/* ── FLASH ── */
.flash { padding: .85rem 1.1rem; border-radius: 12px; margin-bottom: 1.25rem; font-weight: 700; font-size: .88rem; }
.flash-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25); color: #4ade80; }
.flash-error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25); color: #f87171; }

/* ── FORMS ── */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .72rem; font-weight: 900; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .4rem; }
.form-label i { margin-right: .3rem; color: #FF8B35; }
.form-input, .form-textarea, .form-select { width: 100%; padding: .75rem 1rem; border-radius: 12px; background: rgba(10,18,45,0.85); border: 1.5px solid rgba(100,140,220,0.14); color: #fff; font-family: 'Nunito', sans-serif; font-size: .92rem; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; box-sizing: border-box; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: #FF8B35; box-shadow: 0 0 0 3px rgba(255,139,53,.15); }
.form-input::placeholder, .form-textarea::placeholder { color: #5a6a8a; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: min(75dvh, 38rem); display: flex; align-items: center; position: relative; overflow: hidden; background: #0a1428; width: 100%; }
@media (max-width: 767px) { .hero { min-height: min(78dvh, 38rem); } }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #0d1b3e, #1a2a4a 40%, #0a1428); opacity: .55; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,21,37,1), rgba(13,27,62,.96) 38%, rgba(10,20,50,.55) 65%, rgba(10,21,37,.15)); }
.hero-content { position: relative; z-index: 2; max-width: min(36rem, 100%); padding: clamp(1.75rem, 4vw, 2.75rem) 0; }
.hero-promo-badge { display: inline-flex; align-items: center; gap: .6rem; background: rgba(255,139,53,.15); border: 1.5px solid rgba(255,139,53,.5); border-radius: 999px; padding: .6rem 1.4rem; font-size: .9rem; font-weight: 800; color: #fff; margin-bottom: 1.1rem; backdrop-filter: blur(8px); }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4.2vw + 1rem, 4rem); letter-spacing: .03em; line-height: .92; color: #fff; overflow-wrap: anywhere; margin-bottom: 1rem; text-shadow: 0 4px 28px rgba(0,0,0,.55); animation: heroTitleIn 1s cubic-bezier(.22,1,.36,1) both .3s; }
.hero-title .highlight, .hero-title span[style*="color"] { color: #FF8B35; display: inline-block; text-shadow: 0 0 40px rgba(255,139,53,.6); }
.hero-subtitle { font-size: clamp(1rem, 1.1vw + .65rem, 1.2rem); color: rgba(255,255,255,.88); margin-bottom: 1.75rem; max-width: 34rem; line-height: 1.65; font-weight: 600; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
@media (max-width: 480px) { .hero-actions { flex-direction: column; } .hero-actions .btn { width: 100%; justify-content: center; } }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .4rem; color: var(--text-muted); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; z-index: 2; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--text-muted), transparent); animation: scrollLine 1.8s ease-in-out infinite; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: rgba(10,20,50,.55); border-top: 1px solid rgba(100,140,220,.14); border-bottom: 1px solid rgba(100,140,220,.14); padding: 1rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; overflow: hidden; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 4vw, 2.5rem); color: #FF8B35; letter-spacing: .04em; line-height: 1; }
.stat-label { font-size: .75rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: .75rem; }
@media (max-width: 480px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card { padding: 1.1rem .75rem; text-align: center; cursor: pointer; }
.cat-card.active { border-color: #FF8B35; background: rgba(255,139,53,.1); }
.cat-name { font-family: 'Oswald', sans-serif; font-weight: 600; color: #fff; font-size: .82rem; }

/* ============================================================
   PRODUCT GRID & CARDS
   Tamanhos padronizados por breakpoint, hovers suaves
   ============================================================ */

/* Grid — breakpoints consistentes */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.25rem; }

/* ── TABLET (641–1024px) → 3 colunas ── */
@media (max-width: 1024px) and (min-width: 641px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* ── MOBILE (≤640px) → 2 colunas, padronizado ── */
@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
}

/* ── MUITO PEQUENO (≤320px) → 1 coluna ── */
@media (max-width: 320px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* Card base */
.product-card {
  background: rgba(10,20,50,0.85);
  border: 1px solid rgba(100,140,220,0.14);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Hover SUAVE — sem pulo brusco */
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

/* Hover desktop — sutil, sem "saltar" */
@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,139,53,.25);
    box-shadow: 0 8px 24px rgba(255,139,53,.08);
  }
}

/* Touch — sem hover */
@media (hover: none) {
  .product-card:hover { transform: none; box-shadow: none; }
}

/* ── Imagem — altura padronizada por breakpoint ── */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0,0,0,.12);
  /* Desktop */
  height: 180px;
}
@media (max-width: 1024px) and (min-width: 641px) {
  .product-img-wrap { height: 160px; }
}
@media (max-width: 640px) {
  .product-img-wrap { height: 130px; }
}
@media (max-width: 320px) {
  .product-img-wrap { height: 160px; }
}

.product-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
/* Hover imagem — zoom suave */
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-img { transform: scale(1.03); }
}

.product-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #0d1b3e, #162040); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,.15); }

/* Badge destaque — chamativo com glow */
.product-destaque-badge {
  position: absolute;
  top: .65rem;
  left: .65rem;
  background: linear-gradient(135deg, #FF8B35, #FF7043);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  padding: .35rem .85rem;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,139,53,.5), 0 0 0 2px rgba(255,139,53,.25);
  z-index: 2;
  animation: destaquePulse 2.5s ease-in-out infinite;
}
@keyframes destaquePulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(255,139,53,.5), 0 0 0 2px rgba(255,139,53,.25); }
  50% { box-shadow: 0 4px 24px rgba(255,139,53,.7), 0 0 0 5px rgba(255,139,53,.12); }
}

/* ── Body — tamanhos padronizados ── */
.product-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
@media (max-width: 640px) {
  .product-body { padding: .65rem; gap: .2rem; }
}

/* Categoria */
.product-cat { font-size: .68rem; font-weight: 900; color: #FF8B35; text-transform: uppercase; letter-spacing: .12em; }
@media (max-width: 640px) { .product-cat { font-size: .58rem; } }

/* Nome — altura fixa no mobile para uniformizar cards */
.product-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  word-break: break-word;
}
@media (max-width: 640px) {
  .product-name {
    font-size: .82rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2em;
  }
}

/* Descrição */
.product-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
@media (max-width: 640px) { .product-desc { font-size: .72rem; -webkit-line-clamp: 2; min-height: 2.2em; } }

/* Sugestões — oculta no mobile */
.product-sugestoes { font-size: .75rem; color: #4DDDE1; background: rgba(77,221,225,.06); border: 1px solid rgba(77,221,225,.15); border-radius: 8px; padding: .38rem .65rem; }
@media (max-width: 640px) { .product-sugestoes { display: none; } }

/* Preço */
.product-price { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; color: #FF8B35; line-height: 1; }
@media (max-width: 640px) { .product-price { font-size: 1.05rem; margin-top: .15rem; } }

/* Ações */
.product-actions { display: flex; flex-direction: column; gap: .4rem; margin-top: auto; }
.product-actions-row { display: flex; gap: .4rem; align-items: center; }
@media (max-width: 640px) {
  .product-actions-row .qty-control { display: none; }
  .product-actions { gap: .3rem; }
}

/* Qty */
.qty-control { display: flex; align-items: center; gap: .2rem; background: rgba(255,255,255,.04); border: 1.5px solid rgba(100,140,220,.14); border-radius: 10px; padding: .2rem; flex-shrink: 0; }
.qty-btn { width: 30px; height: 30px; border-radius: 8px; border: none; background: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all .25s ease; }
.qty-btn:hover { background: rgba(255,255,255,.06); color: #fff; }
.qty-input { width: 34px; text-align: center; background: none; border: none; color: #fff; font-weight: 800; font-size: .9rem; font-family: 'Nunito', sans-serif; }
.btn-add-cart { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; background: linear-gradient(135deg, #FF8B35, #FF7043); color: #fff; border: none; border-radius: 10px; padding: .58rem .8rem; font-family: 'Nunito', sans-serif; font-size: .84rem; font-weight: 800; cursor: pointer; transition: all .3s ease; box-shadow: 0 3px 10px rgba(255,139,53,.2); }
.btn-add-cart:hover { filter: brightness(1.06); box-shadow: 0 4px 14px rgba(255,139,53,.3); }
@media (max-width: 640px) { .btn-add-cart { width: 100%; font-size: .76rem; padding: .5rem .4rem; } }

/* Saiba Mais / Compartilhar — hovers suaves */
.btn-saiba-mais { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; min-height: 36px; border-radius: 10px; border: 1.5px solid rgba(255,139,53,.25); background: rgba(255,139,53,.05); color: #FF8B35; font-size: .78rem; font-weight: 800; cursor: pointer; transition: all .3s ease; font-family: 'Nunito', sans-serif; }
.btn-saiba-mais:hover { background: rgba(255,139,53,.1); border-color: rgba(255,139,53,.45); }
.btn-compartilhar { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; border: 1.5px solid rgba(100,140,220,.14); background: rgba(255,255,255,.03); color: rgba(255,255,255,.35); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s ease; }
.btn-compartilhar:hover { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.2); }

/* ============================================================
   FILTERS
   ============================================================ */
.filters-wrapper { min-width: 0; }
.filters { display: flex; gap: .5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; overscroll-behavior-x: contain; padding-bottom: .2rem; flex-wrap: nowrap; }
.filters::-webkit-scrollbar { display: none; }
.filter-btn { padding: .5rem 1.1rem; border-radius: 999px; border: 1.5px solid rgba(100,140,220,.14); background: transparent; color: var(--text-muted); font-weight: 700; font-size: .85rem; cursor: pointer; transition: all .3s ease; font-family: 'Nunito', sans-serif; white-space: nowrap; flex-shrink: 0; }
.filter-btn:hover { border-color: rgba(255,139,53,.2); color: #fff; }
.filter-btn.active { border-color: #FF8B35; color: #FF8B35; background: rgba(255,139,53,.08); }
.scroll-hint { display: flex; align-items: center; gap: .3rem; font-size: .68rem; color: #5a6a8a; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-top: .3rem; animation: scrollHintPulse 2s ease-in-out 1.5s both; }
.scroll-hint i { color: #4DDDE1; }

/* Search */
.search-bar { display: flex; gap: .6rem; align-items: center; }
.search-input { flex: 1; background: rgba(10,18,45,.85); border: 1.5px solid rgba(100,140,220,.14); border-radius: 12px; color: #fff; font-family: 'Nunito', sans-serif; font-size: .9rem; padding: .72rem 1rem; transition: border-color .2s; }
.search-input:focus { outline: none; border-color: #FF8B35; box-shadow: 0 0 0 3px rgba(255,139,53,.12); }
.search-input::placeholder { color: #5a6a8a; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: rgba(10,20,50,.45); }
.about-section-title { padding-top: .15rem; }
#sobre-nos { scroll-margin-top: calc(100px + 20px); }
.about-grid { display: flex; flex-direction: column; gap: 1.75rem; width: 100%; }
@media (min-width: 992px) { .about-grid { display: grid; grid-template-columns: 1fr minmax(16rem, 40rem); align-items: center; gap: 2rem; } }
.about-col-text { min-width: 0; }
.about-media-col { min-width: 0; }
.about-swiper-wrap { width: 100%; max-width: 100%; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.05); box-shadow: 0 16px 48px rgba(0,0,0,.45); }
.about-img-wrap { position: relative; display: block; width: 100%; min-height: clamp(14rem, 58vw, 22rem); overflow: hidden; background: rgba(6,10,22,.5); }
@media (min-width: 992px) { .about-img-wrap { min-height: 22rem; height: 22rem; } }
.about-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-text-content { color: var(--text-muted); line-height: 1.85; font-size: 1.02rem; }
.about-text-content p { margin-bottom: 1rem; }
.about-text-content strong { color: #fff; }
.about-text-content img:not([src*="logo-nc"]):not([src*="/assets/brand/"]) { max-width: 100%; height: auto; border-radius: 12px; margin: .75rem 0; }
.about-text-content img[src*="logo-nc"], .about-text-content img[src*="/assets/brand/"] { display: none; }

/* ============================================================
   CART
   ============================================================ */
.cart-empty-wrap { text-align: center; padding: clamp(2.5rem, 10vw, 5rem) 0; }
.cart-empty-ico { font-size: clamp(2.5rem, 12vw, 4rem); margin-bottom: 1.25rem; opacity: .4; }
.cart-empty-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.35rem, 5vw, 2rem); color: #fff; margin-bottom: .75rem; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: .75rem 1rem; font-size: .72rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; border-bottom: 1px solid rgba(100,140,220,.14); }
.cart-table td { padding: .9rem 1rem; border-bottom: 1px solid rgba(255,255,255,.04); vertical-align: middle; }
.cart-item-img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }
.cart-item-name { font-weight: 800; color: #fff; font-size: .9rem; }
.cart-item-cat { font-size: .75rem; color: var(--text-muted); }
.cart-total-box { background: rgba(10,18,45,.85); border: 1px solid rgba(100,140,220,.14); border-radius: 16px; padding: 1.75rem; }
@media (max-width: 768px) { .cart-total-box { padding: 1.25rem; } }

/* Cart mobile cards */
.cart-cards { display: flex; flex-direction: column; gap: .75rem; }
.cart-card-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 1rem; transition: border-color .2s; }
.cart-card-item:hover { border-color: rgba(255,139,53,.3); }
.cart-card-top { display: flex; align-items: flex-start; gap: .85rem; margin-bottom: .85rem; }
.cart-card-img { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; flex-shrink: 0; cursor: pointer; border: 1px solid rgba(255,255,255,.08); }
.cart-card-img--empty { background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #FF8B35; }
.cart-card-info { flex: 1; min-width: 0; }
.cart-card-name { font-weight: 800; font-size: .95rem; color: #f1f5f9; line-height: 1.3; word-break: break-word; }
.cart-card-cat { font-size: .78rem; color: #94a3b8; margin: .2rem 0 .35rem; }
.cart-card-price { font-size: 1rem; font-weight: 800; color: #FF8B35; }
.cart-card-remove { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.25); color: #f87171; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: all .2s; }
.cart-card-remove:hover { background: rgba(239,68,68,.25); color: #fff; }
.cart-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.06); }
.cart-card-subtotal { font-size: .85rem; color: #94a3b8; text-align: right; }
.cart-card-subtotal strong { display: block; font-size: 1.05rem; color: #f1f5f9; font-weight: 800; }

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-content { max-width: 800px; margin: 0 auto; overflow-wrap: break-word; padding: 2rem 0; }
.legal-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 6vw, 3rem); color: #fff; margin-bottom: 1rem; }
.legal-content h2 { font-size: 1.2rem; color: #FF8B35; margin: 2rem 0 .75rem; }
.legal-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.legal-content ul { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1rem; }

/* ============================================================
   WHATSAPP & COOKIE — already in footer with Tailwind
   ============================================================ */
.whatsapp-float { position: fixed; bottom: max(1.25rem, env(safe-area-inset-bottom, 0px)); right: 1.25rem; z-index: 997; background: #25D366; color: #fff; border-radius: 999px; display: inline-flex; align-items: center; gap: .5rem; padding: .65rem 1.1rem; font-weight: 800; font-size: .85rem; text-decoration: none; box-shadow: 0 6px 20px rgba(37,211,102,.35); transition: all .3s ease; max-width: calc(100vw - 2.5rem); }
@media (hover: hover) { .whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.45); } }

/* Bootstrap 5 row/col support (used in cart/footer) */
.row { display: flex; flex-wrap: wrap; margin: 0 -.75rem; }
.row > * { padding: 0 .75rem; box-sizing: border-box; }
.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-8 { width: 66.667%; }
@media (min-width: 576px) { .col-sm-6 { width: 50%; } }
@media (min-width: 768px) { .col-md-3 { width: 25%; } }
@media (min-width: 992px) { .col-lg-4 { width: 33.333%; } .col-lg-8 { width: 66.667%; } }
.g-2 { gap: .5rem; }
.g-3 { gap: 1rem; }
.g-4 { gap: 1.5rem; }
.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }
@media (min-width: 992px) { .d-lg-none { display: none; } .d-none.d-lg-block { display: block; } .d-none.d-lg-flex { display: flex; } }
.flex-wrap { flex-wrap: wrap; }
.align-items-start { align-items: flex-start; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: 1rem; }
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.me-1 { margin-right: .25rem; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; }

/* ============================================================
   PAGE HEADER (shared by public pages)
   ============================================================ */
.page-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 6vw, 3rem); color: #fff; letter-spacing: .04em; }
.page-header { padding: 3rem 0 1.5rem; }
@media (max-width: 640px) { .page-header { padding: 2rem 0 1rem; } }

/* ============================================================
   CART FORM
   ============================================================ */
.cart-form-row-phone-email { align-items: stretch; margin-bottom: 1.1rem; }
.cart-form-row-phone-email > [class*="col-"] { display: flex; }
.cart-form-row-phone-email .form-group { display: flex; flex-direction: column; flex: 1; width: 100%; margin-bottom: 0; }
.cart-form-row-phone-email .form-group .form-input { margin-top: auto; }

/* Cart resumo */
.resumo-item { display: flex; justify-content: space-between; font-size: .85rem; color: var(--text-muted); margin-bottom: .4rem; }
.resumo-nome { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.resumo-qty { font-weight: 800; }
.resumo-sub { flex-shrink: 0; font-weight: 600; margin-left: .5rem; }

/* ============================================================
   SAIBA MAIS — Image overlay
   ============================================================ */
.sm-img-wrap { position: relative; cursor: pointer; margin-bottom: .9rem; border-radius: 14px; overflow: hidden; }
.sm-img-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; transition: background .22s; }
.sm-img-wrap:hover .sm-img-overlay, .sm-img-wrap:active .sm-img-overlay { background: rgba(0,0,0,.42); }
.sm-img-overlay > * { opacity: 0; transition: opacity .22s; }
.sm-img-wrap:hover .sm-img-overlay > *, .sm-img-wrap:active .sm-img-overlay > * { opacity: 1; }
