/* ==========================================================================
   Nor Detail — Loja · Design System
   Tokens da marca extraídos do site original (https://lojanordetail.abacusai.app)
   ========================================================================== */

:root {
  /* Cores da marca */
  --navy: #0a1628;
  --navy-dark: #060e1a;
  --navy-light: #0f2240;
  --orange: #ff6b00;
  --orange-light: #ff8533;
  --orange-dark: #c44a00;
  --orange-soft: rgba(255, 107, 0, 0.12);
  --green: #22c55e;
  --green-dark: #16a34a;

  /* Neutros (fundo claro da loja) */
  --surface: #ffffff;
  --surface-alt: #f5f7fa;
  --surface-alt-2: #eef1f5;
  --text: #0f172a;
  --text-soft: #475569;
  --muted: #5a697d;
  --border: #e2e8f0;

  /* Tipografia */
  --font-display: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Escala de espaço (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* Raio / sombra / transição */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
  --shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 18px 44px rgba(10, 22, 40, 0.14);
  --transition: 200ms ease;
  --transition-slow: 320ms cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1200px;
}

/* ---------------------------- Reset básico ---------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-3);
  color: var(--navy);
  text-wrap: balance;
}

/* Link de "pular para o conteúdo" (acessibilidade) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  top: 0;
  box-shadow: var(--shadow-lg);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------------------------- Utilidades ---------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section {
  padding-block: var(--space-12);
}
@media (min-width: 768px) {
  .section { padding-block: var(--space-16); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: var(--space-2);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
}

.section-sub {
  color: var(--muted);
  max-width: 620px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------- Botões ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  font-size: 14px;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--orange-dark);
  color: #fff;
}
.btn--primary:hover { background: var(--orange); box-shadow: 0 10px 24px rgba(196, 74, 0, 0.35); }

.btn--dark {
  background: var(--navy);
  color: #fff;
}
.btn--dark:hover { background: var(--navy-light); box-shadow: var(--shadow); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--navy); }

/* contorno claro para fundos escuros (ex.: hero) */
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn--outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

.btn--block { width: 100%; }
.btn--lg { padding: var(--space-4) var(--space-6); font-size: 15px; }

/* ---------------------------- Header ---------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 24px rgba(6, 14, 26, 0.5);
}

.header-bar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand img {
  height: 46px;
  width: auto;
}

.header-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
@media (min-width: 900px) {
  .header-nav { display: flex; }
}
.header-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color var(--transition), background var(--transition);
}
.cart-btn:hover { border-color: var(--orange); background: rgba(255, 107, 0, 0.12); }

/* Busca na navbar do admin */
.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: border-color var(--transition), background var(--transition);
}
.header-search input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  width: 170px;
}
.header-search input::placeholder { color: rgba(255, 255, 255, 0.55); }
.header-search input::-webkit-search-cancel-button { -webkit-appearance: none; }
.header-search:focus-within { border-color: var(--orange); background: rgba(255, 255, 255, 0.14); }
@media (max-width: 640px) {
  .header-search input { width: 100px; }
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--orange-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  color: #fff;
  padding: var(--space-3);
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.08); }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.mobile-menu {
  display: none;
  background: var(--navy-dark);
  padding: var(--space-4) var(--space-5) var(--space-6);
  flex-direction: column;
  gap: var(--space-3);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: #fff;
  font-weight: 600;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------------------------- Hero ---------------------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding-block: var(--space-12);
}
.hero__content {
  max-width: 560px;
}
@media (max-width: 900px) {
  .hero__inner {
    min-height: 72vh;
    align-items: flex-end;
  }
  .hero__content {
    max-width: 100%;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--orange-soft);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: var(--orange);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}

.hero__title {
  color: #fff;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  margin-bottom: var(--space-4);
}
.hero__title span { color: var(--orange); }

.hero__sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 540px;
  margin-bottom: var(--space-6);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}
.hero__media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(10, 22, 40, 0.55) 40%, rgba(10, 22, 40, 0) 75%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero__media-fade {
    background: linear-gradient(to top, var(--navy) 0%, rgba(10, 22, 40, 0.45) 45%, rgba(10, 22, 40, 0.1) 70%);
  }
}
.hero__flag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--orange-dark);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
}
.hero__glow--a { width: 360px; height: 360px; background: var(--orange); top: -80px; right: -60px; }
.hero__glow--b { width: 360px; height: 360px; background: #3b82f6; bottom: -120px; left: -80px; opacity: 0.3; }

/* ---------------------------- Vitrine de produtos ---------------------------- */
.products-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.filter-chip {
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 13.5px;
  transition: all var(--transition);
}
.filter-chip:hover { border-color: var(--orange-dark); color: var(--orange); }
.filter-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-5); }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface-alt-2);
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.product-card:hover .product-card__media img { transform: scale(1.07); }

.product-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--orange-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  flex: 1;
}

.product-card__name {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin: 0;
}

.product-card__sub {
  font-size: 12.5px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: auto;
}
.price { font-size: 18px; font-weight: 900; color: var(--orange-dark); }
.price--pending { font-size: 15px; color: var(--muted); font-weight: 800; letter-spacing: 0.01em; }
.price--old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.installments { font-size: 12px; color: var(--text-soft); }

/* Bloco de preço com destaque "de / por" */
.price-display { display: flex; flex-direction: column; gap: 1px; }
.price-de { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.price-de s {
  color: #dc2626;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(220, 38, 38, 0.7);
}
.price-por { display: flex; align-items: baseline; gap: var(--space-2); flex-wrap: wrap; }
.price-por__label { font-size: 13px; font-weight: 800; color: var(--text-soft); text-transform: lowercase; }
.price-por strong { font-size: 21px; color: var(--orange-dark); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; }
.price-display--promo .price-por strong {
  color: #d23f00;
  text-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

/* ---------------------------- Destaque (Kit) ---------------------------- */
.feature-kit {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.feature-kit__inner {
  display: grid;
}
@media (min-width: 900px) {
  .feature-kit__inner { grid-template-columns: 0.9fr 1.1fr; }
}
.feature-kit__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--navy-dark);
}
.feature-kit__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-kit__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}
.feature-kit__title { color: #fff; font-size: clamp(1.4rem, 3.5vw, 2.1rem); font-weight: 900; margin: 0; }
.feature-kit__desc { color: rgba(255, 255, 255, 0.72); margin: 0; }
.feature-kit__price { display: flex; align-items: baseline; gap: var(--space-3); }
.feature-kit__price .price { font-size: 34px; }

/* ---------------------------- Diferenciais ---------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}
.feature {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
}
.feature__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--orange-soft);
  color: var(--orange-dark);
  margin-bottom: var(--space-3);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature__title { font-size: 15px; font-weight: 800; margin-bottom: var(--space-1); }
.feature__desc { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------------------------- Depoimentos ---------------------------- */
.testimonial-carousel { position: relative; }
.testimonial-track {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--space-4);
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  min-height: 180px;
}
@media (min-width: 768px) {
  .testimonial { flex-basis: calc((100% - 2 * var(--space-5)) / 3); }
}
.testimonial__stars { color: #b3800a; letter-spacing: 2px; margin-bottom: var(--space-2); }
.testimonial__text { font-size: 14px; color: var(--text-soft); margin-bottom: var(--space-4); flex: 1; }
.testimonial__author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-light); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
}
.testimonial__name { font-size: 13px; font-weight: 800; margin: 0; }
.testimonial__role { font-size: 12px; color: var(--muted); margin: 0; }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-4);
}
.testimonial-arrow {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.testimonial-arrow:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.testimonial-dots { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; max-width: 320px; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: var(--border); cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.testimonial-dot.is-active { background: var(--orange); transform: scale(1.35); }

/* ---------------------------- FAQ ---------------------------- */
.faq {
  max-width: 760px;
  margin-inline: auto;
}
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--space-3);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  text-align: left;
  padding: var(--space-4) var(--space-5);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
}
.faq__a {
  display: none;
  padding: 0 var(--space-5) var(--space-4);
  color: var(--text-soft);
  font-size: 14px;
}
.faq__item.is-open .faq__a { display: block; }
.faq__icon { flex-shrink: 0; color: var(--orange-dark); transition: transform var(--transition); }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }

/* ---------------------------- Footer ---------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.72);
  padding-block: var(--space-12);
}
.footer-grid {
  display: grid;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer .brand img { height: 44px; }
.footer-about { font-size: 13.5px; margin-top: var(--space-3); max-width: 320px; }
.footer-title { color: #fff; font-size: 14px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: var(--space-3); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col a { font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  font-size: 12.5px;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------------------------- Carrinho (drawer) ---------------------------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 26, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
  z-index: 90;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 92vw);
  background: var(--surface);
  z-index: 100;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border);
}
.cart-drawer__head h3 { margin: 0; font-size: 18px; }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) var(--space-5);
}
.cart-empty { text-align: center; color: var(--muted); padding-block: var(--space-10); }

.cart-item {
  display: flex;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--border);
}
.cart-item__img {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--surface-alt-2);
  flex-shrink: 0;
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: 13.5px; font-weight: 800; margin: 0 0 2px; }
.cart-item__price { font-size: 13px; color: var(--orange-dark); font-weight: 800; }
.cart-item__qty-row {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  margin-top: var(--space-2);
}
.cart-item__qty {
  display: inline-flex; align-items: center; gap: var(--space-2);
  border: 1px solid var(--border); border-radius: 999px;
}
.cart-item__qty button {
  padding: 5px 12px; color: var(--navy); font-weight: 800; font-size: 16px;
  transition: background var(--transition);
}
.cart-item__qty button:hover { background: var(--orange-soft); }
.cart-item__qty span { min-width: 18px; text-align: center; font-weight: 800; font-size: 12.5px; }
.cart-item__line-total { font-weight: 900; color: var(--navy); font-size: 14px; white-space: nowrap; }
.cart-item__remove { color: var(--muted); font-size: 12px; align-self: flex-start; }
.cart-item__remove:hover { color: #dc2626; }

.cart-drawer__foot {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.cart-total-row { display: flex; justify-content: space-between; font-weight: 800; }
.cart-total-row .amount { color: var(--orange-dark); font-size: 20px; }

/* ---------------------------- Toast ---------------------------- */
.toast {
  position: fixed;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--navy);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 120;
  transition: transform var(--transition-slow);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }

/* ---------------------------- Página de produto ---------------------------- */
.product-detail {
  display: grid;
  gap: var(--space-8);
}
@media (min-width: 900px) {
  .product-detail { grid-template-columns: 1fr 1fr; gap: var(--space-12); }
}
.product-detail__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-alt-2);
  aspect-ratio: 1 / 1;
}
.product-detail__media img { width: 100%; height: 100%; object-fit: cover; }

.product-detail__title { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: var(--space-2); }
.product-detail__sub { color: var(--muted); margin-bottom: var(--space-4); }

.price-block { display: flex; align-items: baseline; gap: var(--space-3); margin-bottom: var(--space-3); }
.price-block .price { font-size: 30px; }
.price-block .price-display { gap: 3px; }
.price-block .price-de { font-size: 15px; }
.price-block .price-por strong { font-size: 32px; }

.qty-label { font-weight: 800; font-size: 14px; display: block; margin-bottom: var(--space-2); }
.qty-selector {
  display: inline-flex; align-items: center; gap: var(--space-2);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
}
.qty-selector button { width: 40px; height: 40px; font-size: 20px; font-weight: 800; color: var(--navy); }
.qty-selector span { min-width: 32px; text-align: center; font-weight: 800; }

.buy-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
@media (min-width: 480px) {
  .buy-actions { flex-direction: row; }
}

.info-tabs { margin-top: var(--space-8); }
.info-tabs__nav { display: flex; gap: var(--space-2); border-bottom: 1px solid var(--border); margin-bottom: var(--space-5); }
.info-tab {
  padding: var(--space-3) var(--space-4);
  font-weight: 800;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.info-tab.is-active { color: var(--navy); border-bottom-color: var(--orange); }
.info-panel { display: none; }
.info-panel.is-active { display: block; }
.info-panel ul { padding-left: var(--space-4); margin: 0; }
.info-panel li { margin-bottom: var(--space-2); color: var(--text-soft); }

/* ---------------------------- Checkout ---------------------------- */
.checkout-wrap {
  display: grid;
  gap: var(--space-8);
  padding-block: var(--space-8);
}
@media (min-width: 960px) {
  .checkout-wrap { grid-template-columns: 1.5fr 1fr; align-items: start; }
}

.checkout-steps { display: flex; gap: var(--space-2); margin-bottom: var(--space-6); flex-wrap: wrap; }
.step-pill {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 8px 14px; border-radius: 999px;
  background: var(--surface-alt-2); color: var(--muted);
  font-size: 13px; font-weight: 800;
}
.step-pill.is-active { background: var(--orange-soft); color: var(--orange-dark); }
.step-pill .num {
  display: grid; place-items: center; width: 20px; height: 20px;
  border-radius: 50%; background: var(--orange-dark); color: #fff; font-size: 11px;
}
.step-pill.is-active .num { background: var(--orange-dark); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-5);
}
.card--title { font-size: 17px; font-weight: 900; margin-bottom: var(--space-4); }

.form-grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--text-soft);
}
.field input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--transition);
}
.field input:focus { outline: none; border-color: var(--orange); }
.field .hint { font-size: 12px; color: var(--muted); margin-top: var(--space-1); }

/* Frete */
.shipping-row { display: flex; gap: var(--space-3); }
.shipping-row .field { flex: 1; }
.shipping-quotes { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.quote {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4); cursor: pointer; transition: border-color var(--transition);
}
.quote:hover { border-color: var(--orange); }
.quote.is-selected { border-color: var(--orange); background: var(--orange-soft); }
.quote > span:not(.quote__price) { display: flex; flex-direction: column; flex: 1; }
.quote__name { font-weight: 800; font-size: 14px; }
.quote__meta { font-size: 12px; color: var(--muted); }
.quote__price { font-weight: 900; color: var(--orange-dark); white-space: nowrap; }
.quote__radio { width: 18px; height: 18px; accent-color: var(--orange); }

.shipping-note {
  font-size: 12px; color: var(--muted);
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  margin-top: var(--space-3);
}

/* Pagamento */
.payment-methods { display: flex; flex-direction: column; gap: var(--space-3); }
.pay-method {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: var(--space-4); cursor: pointer; transition: border-color var(--transition);
}
.pay-method.is-selected { border-color: var(--orange); background: var(--orange-soft); }
.pay-method__head { display: flex; align-items: center; gap: var(--space-3); }
.pay-method__head input { width: 18px; height: 18px; accent-color: var(--orange); }
.pay-method__label { font-weight: 800; }
.pay-method__badge {
  margin-left: auto;
  font-size: 11px; font-weight: 800; color: #15803d;
  background: rgba(34, 197, 94, 0.12);
  padding: 2px 8px; border-radius: 999px;
}
.pay-method__desc { font-size: 13px; color: var(--muted); margin: var(--space-2) 0 0 28px; }

.pay-detail { margin: var(--space-4) 0 0 28px; display: none; }
.pay-detail.is-visible { display: block; }

.pix-box {
  display: grid; gap: var(--space-4);
  background: var(--surface-alt); border-radius: var(--radius-sm); padding: var(--space-4);
  text-align: center;
}
.pix-qr {
  width: 160px; height: 160px; margin-inline: auto;
  border-radius: var(--radius-sm); background: #fff;
  padding: var(--space-2); border: 1px solid var(--border);
}
.pix-code {
  font-size: 11px; word-break: break-all; color: var(--text-soft);
  background: #fff; border: 1px dashed var(--border);
  padding: var(--space-3); border-radius: var(--radius-sm);
}
.pix-steps { font-size: 13px; color: var(--text-soft); text-align: left; }

/* Resumo */
.summary {
  position: sticky;
  top: 84px;
}
.summary__items { margin-bottom: var(--space-4); }
.summary-item {
  display: flex; gap: var(--space-3); align-items: center;
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--border);
}
.summary-item__img { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; background: var(--surface-alt-2); flex-shrink: 0; }
.summary-item__info { flex: 1; min-width: 0; }
.summary-item__name { font-size: 13px; font-weight: 700; display: block; margin-bottom: 4px; }
.summary-item__qty {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); border-radius: 999px;
}
.summary-item__qty button { padding: 2px 9px; font-weight: 800; font-size: 15px; color: var(--navy); }
.summary-item__qty button:hover { background: var(--orange-soft); }
.summary-item__qty span { min-width: 16px; text-align: center; font-weight: 800; font-size: 12.5px; }
.summary-item__price { font-size: 13px; font-weight: 800; white-space: nowrap; }

.summary-lines { display: flex; flex-direction: column; gap: var(--space-2); font-size: 14px; }
.summary-lines .line { display: flex; justify-content: space-between; }
.summary-lines .line--total { font-weight: 900; font-size: 18px; border-top: 1px solid var(--border); padding-top: var(--space-3); margin-top: var(--space-2); }
.summary-lines .line--total .amount { color: var(--orange-dark); }

.secure-note {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: 12px; color: var(--muted); margin-top: var(--space-3);
}

/* ---------------------------- Confirmação ---------------------------- */
.order-success {
  text-align: center;
  max-width: 560px;
  margin: var(--space-16) auto;
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.order-success__icon {
  width: 64px; height: 64px; margin: 0 auto var(--space-4);
  border-radius: 50%; background: rgba(34, 197, 94, 0.14);
  color: var(--green-dark); display: grid; place-items: center;
}
.order-success__icon svg { width: 32px; height: 32px; }

/* ---------------------------- Desconto / Promoção Relâmpago ---------------------------- */
.badge-discount {
  display: inline-flex;
  align-items: center;
  background: var(--orange-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: var(--space-1);
  animation: badge-pulse 2s ease-in-out infinite;
}

.flash-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin: 2px 0;
}

.flash-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 4px;
  background: linear-gradient(90deg, #c44a00, #c10030);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(255, 45, 85, 0.4);
  animation: flash-pulse 1.6s ease-in-out infinite;
}

.flash-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: #dc2626;
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: var(--space-1);
  animation: countdown-pulse 1.5s ease-in-out infinite;
}

.product-card--flash {
  position: relative;
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 107, 0, 0.5), 0 12px 30px rgba(255, 107, 0, 0.22);
  overflow: hidden;
}

/* brilho que atravessa o card em promoção relâmpago */
.product-card--flash::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: card-shine 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

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

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

@keyframes countdown-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}

@keyframes card-shine {
  0% { left: -80%; }
  55%, 100% { left: 120%; }
}

/* ---------------------------- Painel Admin ---------------------------- */
.admin-wrap { max-width: 1080px; }

/* Navbar de seções (Produtos | Pedidos) */
.admin-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--border);
}
.admin-tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  padding: 12px 20px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}
.admin-tab:hover { color: var(--navy); }
.admin-tab.is-active { color: var(--orange-dark); border-bottom-color: var(--orange); }

.admin-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-x: auto;
}

.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td {
  text-align: left; padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border); vertical-align: middle;
}
.admin-table th { background: var(--surface-alt); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.admin-table tr:last-child td { border-bottom: none; }

.admin-thumb {
  width: 44px; height: 44px; object-fit: cover; border-radius: var(--radius-sm);
  background: var(--surface-alt-2); flex-shrink: 0;
}

.admin-link { color: var(--orange-dark); font-weight: 700; font-size: 13px; margin-right: var(--space-3); }
.admin-link:hover { text-decoration: underline; }
.admin-link--danger { color: #dc2626; }

.admin-disc { color: var(--green-dark); font-weight: 800; font-size: 12px; }
.admin-flash {
  display: inline-block; background: var(--orange-soft); color: var(--orange-dark);
  font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 999px;
}

.admin-img-row { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.admin-img-row .hint { margin: 0; }

.admin-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: var(--space-5);
}
.admin-modal__backdrop {
  position: absolute; inset: 0; background: rgba(6, 14, 26, 0.6);
}
.admin-modal__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg);
}

/* ---------------------------- Artigos (blog) ---------------------------- */
.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .article-grid { grid-template-columns: repeat(3, 1fr); }
}
.article-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}
.article-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}
.article-card__cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-dark);
}
.article-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
.article-card__excerpt {
  font-size: 13.5px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}
.article-card__more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange-dark);
}

/* Capa da matéria nos cards do blog (artigos.html e home) */
.article-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--border);
}
.article-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  flex: 1;
}
.article-card--media {
  padding: 0;
  gap: 0;
  overflow: hidden;
}

/* -------------------- Imagens dentro das matérias -------------------- */
.article-hero {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--border);
  margin: 0 0 10px;
}
.article-hero-credit {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 var(--space-5);
}
.article-figure {
  margin: var(--space-6) 0;
}
.article-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--border);
}
.article-figure figcaption {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 10px;
}
.article-figure__credit {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  opacity: 0.85;
  margin-top: 2px;
}
.article-figure__credit a,
.article-hero-credit a {
  color: var(--muted);
  text-decoration: underline;
}

/* ---------------------------- Efeitos visuais / micro-interações ---------------------------- */
/* Reveal ao rolar (fade-in + subir) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card de produto: destaque laranja no hover */
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 18px 44px rgba(10, 22, 40, 0.14), 0 0 0 1px var(--orange);
}

/* Botões: leve elevação + brilho no hover */
.btn--primary:hover,
.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.35);
}
.btn--primary:active,
.btn--dark:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Chip de categoria: toque de atenção no hover */
.filter-chip:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

/* Pulso no carrinho ao adicionar item */
@keyframes cart-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.cart-btn.is-bumping { animation: cart-bump 0.4s ease; }

/* Botão voltar ao topo */
.back-to-top {
  position: fixed;
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 70;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-slow), transform var(--transition-slow), visibility var(--transition-slow);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--orange-dark); }

/* Banner de cookies (LGPD) */
.cookie-banner {
  position: fixed;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 90;
  max-width: 640px;
  margin-inline: auto;
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.cookie-banner p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  min-width: 220px;
}
.cookie-banner a { color: var(--orange); font-weight: 700; }
.cookie-banner__actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }


/* ============================================================================
   Acessibilidade / usabilidade — correções da auditoria de design (15/09)
   Alvos de toque: mínimo de 44px na altura (WCAG 2.5.5) e nunca abaixo de
   24×24px (WCAG 2.5.8, nível AA). Aparência visual preservada nas "bolinhas".
   ============================================================================ */
.btn,
.product-card__btn { min-height: 44px; }

.cart-btn { min-height: 44px; }
.cart-btn svg { width: 20px; height: 20px; }

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.qty-selector button { width: 44px; height: 44px; }

.cart-item__qty button { min-width: 44px; min-height: 44px; }

.testimonial-arrow { width: 44px; height: 44px; }

/* Bolinha do carrossel: alvo de 24×44px com o ponto visual de 8px no centro */
.testimonial-dot {
  position: relative;
  width: 24px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.testimonial-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transform: translate(-50%, -50%);
  transition: background var(--transition), transform var(--transition);
}
.testimonial-dot.is-active { background: none; transform: none; }
.testimonial-dot.is-active::before { background: var(--orange); transform: translate(-50%, -50%) scale(1.35); }

/* Botão de fechar do carrinho (antes 22×19px) */
.cart-drawer__head button[data-cart-close] {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.cart-drawer__head button[data-cart-close]:hover { border-color: var(--orange); background: var(--orange-soft); }

/* Hero: no celular o vídeo (5,8 MB) não é baixado — fica só a foto de capa */
@media (max-width: 767px) {
  .hero__media {
    background: url("../img/hero-car.jpg") center / cover no-repeat;
  }
}

/* ---------------------------- Responsividade / acessibilidade ---------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================================
   Conta do cliente (conta.html + header + checkout)
   ============================================================================ */
.account-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.account-btn:hover { border-color: var(--orange); background: rgba(255, 107, 0, 0.12); color: #fff; }
.account-btn svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .account-btn span { display: none; }      /* no celular fica só o ícone */
  .account-btn { padding: 0 10px; }
}

.account-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-5);
  overflow-x: auto;
}
.account-tab {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 16px;
  min-height: 44px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}
.account-tab:hover { color: var(--navy); }
.account-tab.is-active { color: var(--navy); border-bottom-color: var(--orange); }

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.order-row:last-child { border-bottom: none; }
.order-row__meta { font-size: 12.5px; color: var(--muted); margin-top: 2px; line-height: 1.5; }

.checkout-who {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 16px;
}
.checkout-who strong { color: var(--navy); }
.checkout-who a { color: var(--orange-dark); font-weight: 700; }
