/* ==========================================================================
   BRASA BURGER CO. — ESTILOS DO PROTÓTIPO DE DELIVERY (ETAPA 2)
   Construído com CSS Custom Properties compatíveis com WordPress theme.json
   ========================================================================== */

@font-face {
  font-family: "Anton SC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-sc-regular.woff2') format('woff2');
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}

:root {
  /* Tokens de Cores - Tema Escuro (Padrão) */
  --wp--preset--color--primary: #F26B21;
  --wp--preset--color--primary-hover: #FF7E36;
  --wp--preset--color--primary-text: #140A05; /* WCAG AAA 7.4:1 sobre #F26B21 */
  --wp--preset--color--bg-base: #0E0B09;
  --wp--preset--color--surface-1: #181310;
  --wp--preset--color--surface-2: #241C17;
  --wp--preset--color--surface-3: #30251F;
  --wp--preset--color--border: #3E3129;
  --wp--preset--color--border-active: #F26B21;
  --wp--preset--color--text-primary: #FFF8F0;
  --wp--preset--color--text-muted: #B8ABA0;
  --wp--preset--color--success: #38D479;
  --wp--preset--color--error: #FF5C55;
  --wp--preset--color--whatsapp: #25D366;

  /* Tipografia */
  --wp--preset--font-family--display: "Anton SC", Impact, "Arial Narrow", sans-serif;
  --wp--preset--font-family--body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Espaçamentos e Dimensões */
  --container-max-width: 1320px;
  --header-height: 74px;
  --offer-bar-height: 38px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.65);
  --shadow-orange: 0 8px 24px rgba(242, 107, 33, 0.28);

  /* Transições e Animações */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);

  color-scheme: dark;
}

/* Modo Claro ("Papel Kraft / Editorial Gastronômico") */
body.light {
  --wp--preset--color--bg-base: #F7F2EB;
  --wp--preset--color--surface-1: #FFFFFF;
  --wp--preset--color--surface-2: #EFE7DC;
  --wp--preset--color--surface-3: #DFD3C3;
  --wp--preset--color--border: #D8CABA;
  --wp--preset--color--border-active: #D8540B;
  --wp--preset--color--text-primary: #1A110B;
  --wp--preset--color--text-muted: #665548;
  --wp--preset--color--primary-text: #140A05;
  --shadow-sm: 0 4px 12px rgba(78, 52, 38, 0.08);
  --shadow-md: 0 10px 30px rgba(78, 52, 38, 0.12);
  --shadow-lg: 0 20px 60px rgba(78, 52, 38, 0.18);
  --shadow-orange: 0 8px 24px rgba(216, 84, 11, 0.25);

  color-scheme: light;
}

/* Reset Global e Acessibilidade */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 64px);
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--wp--preset--color--bg-base);
  color: var(--wp--preset--color--text-primary);
  font-family: var(--wp--preset--font-family--body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

.wp-site-blocks {
  overflow: visible !important;
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

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

button, a, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

a {
  text-decoration: none;
}

/* Foco de Teclado Acessível (WCAG) */
:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 3px;
}

/* Utilitários Tipográficos */
h1, h2, h3, h4, .display-font {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* ==========================================================================
   BARRA DE OFERTA GLOBAL DE TOPO
   ========================================================================== */
.offer-bar {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
  min-height: var(--offer-bar-height);
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 50;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.offer-bar.is-hidden {
  display: none;
}

.offer-bar-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.offer-coupon-badge {
  background: rgba(20, 10, 5, 0.15);
  border: 1px dashed rgba(20, 10, 5, 0.4);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.offer-copy-btn {
  background-color: #140A05;
  color: #FFF8F0;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast);
}

.offer-copy-btn:hover {
  transform: scale(1.05);
}

.offer-close-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.offer-close-btn:hover {
  opacity: 1;
}

/* ==========================================================================
   CABEÇALHO PRINCIPAL (STICKY)
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 40;
  height: var(--header-height);
  background-color: rgba(14, 11, 9, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--wp--preset--color--border);
  transition: background-color var(--transition-normal);
}

body.light .site-header {
  background-color: rgba(247, 242, 235, 0.95);
}

.header-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.store-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background-color: var(--wp--preset--color--surface-2);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--success);
  box-shadow: 0 0 10px var(--wp--preset--color--success);
}

.store-status-pill.is-closed .status-dot {
  background-color: var(--wp--preset--color--error);
  box-shadow: 0 0 10px var(--wp--preset--color--error);
}

.status-eta {
  color: var(--wp--preset--color--text-muted);
  font-weight: 500;
  padding-left: 4px;
  border-left: 1px solid var(--wp--preset--color--border);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  color: var(--wp--preset--color--text-muted);
  font-size: 14px;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.header-nav a:hover, .header-nav a.active {
  color: var(--wp--preset--color--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-secondary {
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-md);
  background-color: var(--wp--preset--color--surface-1);
  color: var(--wp--preset--color--text-primary);
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-header-secondary:hover {
  border-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
}

.btn-header-cart {
  height: 42px;
  padding: 0 16px;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  box-shadow: var(--shadow-orange);
  transition: all var(--transition-fast);
}

.btn-header-cart:hover {
  background-color: var(--wp--preset--color--primary-hover);
  transform: translateY(-1px);
}

.cart-count-badge {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: var(--radius-full);
  background-color: #140A05;
  color: #FFF8F0;
  font-size: 11px;
  font-weight: 800;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: clamp(560px, 78vh, 720px);
  display: flex;
  align-items: center;
  background-color: #050504;
  background-image: 
    linear-gradient(90deg, #050504 5%, rgba(5, 5, 4, 0.96) 38%, rgba(5, 5, 4, 0.45) 65%, rgba(5, 5, 4, 0.1) 85%),
    linear-gradient(0deg, var(--wp--preset--color--bg-base) 0%, transparent 20%),
    url('../images/hero-brasa.jpg');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 20px;
}

body.light .hero-section {
  background-image: 
    linear-gradient(90deg, rgba(247, 242, 235, 0.98) 5%, rgba(247, 242, 235, 0.92) 42%, rgba(247, 242, 235, 0.45) 68%, rgba(247, 242, 235, 0.15) 88%),
    linear-gradient(0deg, var(--wp--preset--color--bg-base) 0%, transparent 20%),
    url('../images/hero-brasa.jpg');
}

.hero-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-copy {
  max-width: 620px;
}

.hero-eyebrow {
  color: var(--wp--preset--color--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3.5px;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(52px, 6.8vw, 102px);
  line-height: 0.92;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--wp--preset--color--primary);
  display: block;
}

.hero-description {
  color: var(--wp--preset--color--text-muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-cta-primary {
  height: 56px;
  padding: 0 32px;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 800;
  box-shadow: var(--shadow-orange);
  transition: all var(--transition-fast);
  gap: 10px;
}

.btn-cta-primary:hover {
  background-color: var(--wp--preset--color--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242, 107, 33, 0.4);
}

.hero-coupon-card {
  height: 56px;
  padding: 0 18px;
  background-color: rgba(36, 28, 23, 0.7);
  border: 1px dashed rgba(242, 107, 33, 0.6);
  border-radius: var(--radius-md);
  color: var(--wp--preset--color--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

body.light .hero-coupon-card {
  background-color: rgba(255, 255, 255, 0.85);
  border-color: rgba(216, 84, 11, 0.5);
}

.hero-coupon-card b {
  color: var(--wp--preset--color--primary);
  font-size: 16px;
  letter-spacing: 1px;
}

.hero-proof-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  color: var(--wp--preset--color--text-muted);
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.proof-star {
  color: #FFB800;
}

/* ==========================================================================
   FAIXA DE INFORMAÇÕES & CREDENCIAIS
   ========================================================================== */
.info-strip {
  background-color: var(--wp--preset--color--surface-1);
  border-top: 1px solid var(--wp--preset--color--border);
  border-bottom: 1px solid var(--wp--preset--color--border);
  padding: 24px 20px;
}

.info-strip-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  border-right: 1px solid var(--wp--preset--color--border);
}

.info-item:last-child {
  border-right: none;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(242, 107, 33, 0.12);
  color: var(--wp--preset--color--primary);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-size: 15px;
  color: var(--wp--preset--color--text-primary);
  line-height: 1.2;
  margin-bottom: 3px;
}

.info-text span {
  font-size: 12px;
  color: var(--wp--preset--color--text-muted);
}

/* ==========================================================================
   BARRA DE NAVEGAÇÃO DE CATEGORIAS + BUSCA (STICKY)
   ========================================================================== */
.categories-sticky-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(14, 11, 9, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--wp--preset--color--border);
  padding: 12px 20px;
}

body.admin-bar .categories-sticky-wrapper {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .categories-sticky-wrapper {
    top: 46px;
  }
}

body.light .categories-sticky-wrapper {
  background-color: rgba(247, 242, 235, 0.96);
}

.categories-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.categories-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-pill {
  height: 40px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  background-color: var(--wp--preset--color--surface-1);
  border: 1px solid var(--wp--preset--color--border);
  color: var(--wp--preset--color--text-muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  gap: 8px;
  transition: all var(--transition-fast);
}

.category-pill:hover {
  border-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--text-primary);
}

.category-pill.active {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
  border-color: var(--wp--preset--color--primary);
}

.product-search-box {
  position: relative;
  min-width: 260px;
}

.product-search-box input {
  width: 100%;
  height: 40px;
  padding: 0 38px 0 16px;
  background-color: var(--wp--preset--color--surface-1);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-full);
  color: var(--wp--preset--color--text-primary);
  font-size: 13px;
  transition: border-color var(--transition-fast);
}

.product-search-box input:focus {
  border-color: var(--wp--preset--color--primary);
}

.product-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--wp--preset--color--text-muted);
  pointer-events: none;
}

/* ==========================================================================
   SEÇÕES DO CARDÁPIO & GRADES DE PRODUTOS
   ========================================================================== */
.menu-section {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 48px 20px;
}

.section-header {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-eyebrow {
  color: var(--wp--preset--color--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.section-title {
  font-size: clamp(32px, 3.8vw, 52px);
  color: var(--wp--preset--color--text-primary);
}

.section-tagline {
  color: var(--wp--preset--color--text-muted);
  font-size: 15px;
  max-width: 680px;
}

/* Grade de Produtos Responsiva */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

/* Card de Produto */
.product-card {
  background-color: var(--wp--preset--color--surface-1);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 107, 33, 0.45);
  box-shadow: var(--shadow-md);
}

.card-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--wp--preset--color--surface-2);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .card-media img {
  transform: scale(1.04);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-category-label {
  color: var(--wp--preset--color--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.card-title {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--wp--preset--color--text-primary);
}

.card-description {
  color: var(--wp--preset--color--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--wp--preset--color--border);
}

.card-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--wp--preset--color--text-primary);
  font-feature-settings: "tnum" 1;
}

.card-add-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
  font-size: 22px;
  font-weight: bold;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.card-add-btn:hover {
  transform: scale(1.1);
  background-color: var(--wp--preset--color--primary-hover);
}

/* ==========================================================================
   BANNER DE OFERTA ("QUARTA DA BRASA")
   ========================================================================== */
.promo-banner-section {
  max-width: var(--container-max-width);
  margin: 20px auto 60px;
  padding: 0 20px;
}

.promo-banner-card {
  background: radial-gradient(circle at 85% 50%, #3D160B 0%, #1A0D08 65%);
  border: 1px solid rgba(242, 107, 33, 0.4);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

body.light .promo-banner-card {
  background: radial-gradient(circle at 85% 50%, #FFDEC9 0%, #F5ECE0 65%);
  border-color: rgba(216, 84, 11, 0.35);
}

.promo-copy h2 {
  font-size: clamp(38px, 4.5vw, 68px);
  margin-bottom: 14px;
}

.promo-copy h2 em {
  color: var(--wp--preset--color--primary);
  font-style: normal;
}

.promo-copy p {
  color: var(--wp--preset--color--text-muted);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 24px;
}

.promo-badge-box {
  padding: 24px 38px;
  border: 2px dashed var(--wp--preset--color--primary);
  border-radius: var(--radius-md);
  text-align: center;
  background-color: rgba(20, 10, 5, 0.4);
  transform: rotate(2deg);
}

.promo-badge-box span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--wp--preset--color--text-muted);
}

.promo-badge-box strong {
  display: block;
  font-family: var(--wp--preset--font-family--display);
  font-size: 44px;
  color: var(--wp--preset--color--primary);
}

/* ==========================================================================
   SEÇÃO "COMO FUNCIONA" (PASSOS DO PEDIDO COM ALTO CONTRASTE)
   ========================================================================== */
.steps-section {
  background-color: var(--wp--preset--color--surface-1);
  border-top: 1px solid var(--wp--preset--color--border);
  border-bottom: 1px solid var(--wp--preset--color--border);
  padding: 80px 20px;
}

.steps-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.step-card {
  position: relative;
  background-color: var(--wp--preset--color--surface-2);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  overflow: hidden;
}

.step-number-bg {
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--wp--preset--font-family--display);
  font-size: 90px;
  color: var(--wp--preset--color--primary);
  opacity: 0.16; /* Corrigido de 0.045 para 0.16 legível */
  line-height: 1;
  pointer-events: none;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(242, 107, 33, 0.15);
  color: var(--wp--preset--color--primary);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--wp--preset--color--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================================================
   PERGUNTAS FREQUENTES (FAQ ACCORDION)
   ========================================================================== */
.faq-section {
  max-width: 920px;
  margin: 0 auto;
  padding: 90px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--wp--preset--color--surface-1);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item[open] {
  border-color: rgba(242, 107, 33, 0.5);
}

.faq-summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon-cross {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--surface-2);
  color: var(--wp--preset--color--primary);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-icon-cross {
  transform: rotate(45deg);
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--wp--preset--color--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ==========================================================================
   RODAPÉ OFICIAL (FIEL À REFERÊNCIA BRASABURGUER.TECH)
   ========================================================================== */
.site-footer {
  background-color: #0b0705;
  color: var(--wp--preset--color--text-muted);
  font-size: 13px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Faixa superior de informações (4 colunas com ícones) */
.footer-info-strip {
  background-color: #100b08;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 20px;
}

.footer-info-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-info-item-last {
  border-right: none;
}

.footer-info-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(230, 81, 0, 0.12);
  border: 1px solid rgba(230, 81, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--primary);
  flex-shrink: 0;
}

.footer-info-text {
  display: flex;
  flex-direction: column;
}

.footer-info-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-info-sub {
  color: #887d75;
  font-size: 12px;
  margin-top: 3px;
}

/* Barra inferior do rodapé (Logo + Endereço + Contato) */
.footer-bottom-bar {
  background-color: #080504;
  padding: 34px 20px;
}

.footer-bottom-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.footer-brand-tagline {
  color: #887d75;
  font-size: 13px;
  max-width: 320px;
  line-height: 1.45;
  margin: 0;
}

.footer-address-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #887d75;
  line-height: 1.4;
}

.footer-company-name {
  color: #e6ded7;
  font-size: 13px;
  font-weight: 700;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 12px;
  color: #887d75;
  line-height: 1.4;
  text-align: right;
}

.footer-contact-label {
  color: #887d75;
  font-size: 11px;
}

.footer-phone-link {
  color: #e6ded7;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-phone-link:hover {
  color: var(--wp--preset--color--primary);
}

.footer-copyright {
  color: #6b615a;
  font-size: 11px;
  margin-top: 2px;
}

/* Modo Claro (Light Theme) */
body.light .site-footer {
  background-color: #f7f2eb;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.light .footer-info-strip {
  background-color: #eee7dc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light .footer-info-item {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

body.light .footer-info-title {
  color: #26160b;
}

body.light .footer-info-sub {
  color: #6d5b4f;
}

body.light .footer-bottom-bar {
  background-color: #e4dcd0;
}

body.light .footer-brand-tagline,
body.light .footer-address-block,
body.light .footer-contact-block {
  color: #6d5b4f;
}

body.light .footer-company-name,
body.light .footer-phone-link {
  color: #26160b;
}

/* Responsividade do rodapé */
@media (max-width: 992px) {
  .footer-info-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  .footer-info-item {
    border-right: none;
    padding: 0 10px;
  }
  .footer-bottom-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-contact-block {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .footer-info-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-brand-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ==========================================================================
   BOTÕES FLUTUANTES (WHATSAPP, TEMA, SACOLA MÓVEL)
   ========================================================================== */
.floating-actions-group {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn-float {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.btn-float:hover {
  transform: scale(1.08);
}

.btn-float-whatsapp {
  background-color: var(--wp--preset--color--whatsapp);
  color: #FFFFFF;
  font-size: 28px;
}

.btn-float-theme {
  background-color: var(--wp--preset--color--surface-2);
  color: var(--wp--preset--color--text-primary);
  border: 1px solid var(--wp--preset--color--border);
  font-size: 20px;
}

.btn-float-cart {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
  font-size: 22px;
  position: relative;
  display: none; /* Exibido em mobile */
}

.btn-float-cart .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: var(--radius-full);
  background-color: #140A05;
  color: #FFF8F0;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* ==========================================================================
   MODAL DE PRODUTO (2 COLUNAS DESKTOP / BOTTOM SHEET MOBILE)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background-color: rgba(5, 4, 3, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.product-customizer-modal {
  width: min(1040px, 94vw);
  max-height: min(860px, 92vh);
  background-color: var(--wp--preset--color--surface-1);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 46% 54%;
  overflow: hidden;
  position: relative;
}

.modal-photo-column {
  position: relative;
  background-color: #000;
}

.modal-photo-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--surface-2);
  border: 1px solid var(--wp--preset--color--border);
  color: var(--wp--preset--color--text-primary);
  font-size: 20px;
  transition: transform var(--transition-fast);
}

.modal-close-btn:hover {
  transform: rotate(90deg);
}

.modal-details-column {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: min(860px, 92vh);
}

.modal-scroll-body {
  padding: 36px 36px calc(100px + 20px); /* Garante que nada fique encoberto */
  overflow-y: auto;
  flex-grow: 1;
}

.modal-category-tag {
  color: var(--wp--preset--color--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.modal-item-title {
  font-size: clamp(32px, 3.5vw, 44px);
  margin: 6px 0 12px;
}

.modal-item-desc {
  color: var(--wp--preset--color--text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--wp--preset--color--border);
}

/* Blocos de Opções e Grupos */
.option-group-block {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--wp--preset--color--border);
}

.group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.group-header h4 {
  font-size: 17px;
  color: var(--wp--preset--color--text-primary);
}

.group-badge-rule {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background-color: var(--wp--preset--color--surface-2);
  color: var(--wp--preset--color--text-muted);
}

.group-badge-rule.required {
  background-color: rgba(242, 107, 33, 0.15);
  color: var(--wp--preset--color--primary);
}

.option-row-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 6px;
  cursor: pointer;
  background-color: var(--wp--preset--color--surface-2);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.option-row-label:hover {
  border-color: var(--wp--preset--color--border);
}

.option-row-label.is-selected {
  border-color: var(--wp--preset--color--primary);
  background-color: rgba(242, 107, 33, 0.08);
}

.option-left-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.option-price-diff {
  font-size: 13px;
  font-weight: 700;
  color: var(--wp--preset--color--primary);
}

.notes-input-box {
  width: 100%;
  min-height: 80px;
  padding: 12px 14px;
  background-color: var(--wp--preset--color--surface-2);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-md);
  color: var(--wp--preset--color--text-primary);
  font-size: 13px;
  resize: vertical;
}

/* Barra Fixa de Adicionar no Rodapé do Modal */
.modal-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 46%; /* Inicia na coluna da direita no desktop */
  right: 0;
  z-index: 20;
  padding: 18px 36px;
  background-color: var(--wp--preset--color--surface-1);
  border-top: 1px solid var(--wp--preset--color--border);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.25);
}

.quantity-stepper {
  display: flex;
  align-items: center;
  height: 52px;
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-md);
  background-color: var(--wp--preset--color--surface-2);
}

.stepper-btn {
  width: 44px;
  height: 100%;
  font-size: 20px;
  font-weight: bold;
  color: var(--wp--preset--color--text-primary);
}

.stepper-value {
  min-width: 32px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
}

.btn-modal-add {
  flex-grow: 1;
  height: 52px;
  padding: 0 24px;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-orange);
  transition: all var(--transition-fast);
}

.btn-modal-add:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  filter: grayscale(0.6);
}

/* ==========================================================================
   GAVETA LATERAL DA SACOLA (DRAWER)
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background-color: rgba(5, 4, 3, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.cart-drawer-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  width: min(480px, 100%);
  background-color: var(--wp--preset--color--surface-1);
  border-left: 1px solid var(--wp--preset--color--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.cart-drawer.is-active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 22px 24px;
  border-bottom: 1px solid var(--wp--preset--color--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h2 {
  font-size: 28px;
}

.cart-drawer-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

/* Item da Sacola */
.cart-item-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--wp--preset--color--border);
  align-items: center;
}

.cart-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-info h4 {
  font-size: 15px;
  font-family: var(--wp--preset--font-family--body);
  font-weight: 700;
  text-transform: none;
}

.cart-item-addons-list {
  font-size: 12px;
  color: var(--wp--preset--color--text-muted);
  margin-top: 3px;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 800;
}

.btn-remove-item {
  color: var(--wp--preset--color--error);
  font-size: 12px;
  opacity: 0.8;
  padding: 2px 4px;
}

.btn-remove-item:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Estado de Sacola Vazia */
.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty-icon {
  font-size: 54px;
  margin-bottom: 16px;
  display: block;
}

.cart-empty-state h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.cart-empty-state p {
  color: var(--wp--preset--color--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Rodapé Financeiro da Sacola */
.cart-drawer-footer {
  padding: 20px 24px;
  background-color: var(--wp--preset--color--surface-2);
  border-top: 1px solid var(--wp--preset--color--border);
}

.coupon-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.coupon-input-group input {
  flex-grow: 1;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background-color: var(--wp--preset--color--surface-1);
  border: 1px solid var(--wp--preset--color--border);
  font-size: 13px;
  text-transform: uppercase;
}

.btn-apply-coupon {
  height: 42px;
  padding: 0 16px;
  background-color: var(--wp--preset--color--surface-3);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
}

.applied-coupon-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background-color: rgba(56, 212, 121, 0.12);
  border: 1px solid rgba(56, 212, 121, 0.4);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--wp--preset--color--success);
  margin-bottom: 14px;
}

.cart-totals-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 18px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  color: var(--wp--preset--color--text-muted);
}

.total-row.grand-total {
  font-size: 20px;
  font-weight: 800;
  color: var(--wp--preset--color--text-primary);
  padding-top: 8px;
  border-top: 1px solid var(--wp--preset--color--border);
}

.btn-checkout-proceed {
  width: 100%;
  height: 52px;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 800;
  box-shadow: var(--shadow-orange);
  transition: all var(--transition-fast);
}

.btn-checkout-proceed:hover {
  background-color: var(--wp--preset--color--primary-hover);
}

/* ==========================================================================
   MODAL DE CHECKOUT EM 4 ETAPAS
   ========================================================================== */
.checkout-modal {
  width: min(800px, 94vw);
  max-height: min(860px, 94vh);
  background-color: var(--wp--preset--color--surface-1);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.checkout-modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--wp--preset--color--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Stepper de Progresso das 4 Etapas */
.checkout-stepper-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 16px 30px;
  background-color: var(--wp--preset--color--surface-2);
  border-bottom: 1px solid var(--wp--preset--color--border);
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--wp--preset--color--text-muted);
}

.step-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--surface-3);
  display: grid;
  place-items: center;
  font-size: 11px;
}

.step-indicator.active {
  color: var(--wp--preset--color--primary);
}

.step-indicator.active .step-circle {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
}

.step-indicator.done {
  color: var(--wp--preset--color--success);
}

.step-indicator.done .step-circle {
  background-color: var(--wp--preset--color--success);
  color: #140A05;
}

.checkout-modal-body {
  padding: 30px;
  overflow-y: auto;
  flex-grow: 1;
}

/* Cards Visuais de Escolha (Entrega/Retirada e Pagamento) */
.selection-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.visual-choice-card {
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  background-color: var(--wp--preset--color--surface-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-fast);
}

.visual-choice-card:hover {
  border-color: var(--wp--preset--color--primary);
}

.visual-choice-card.is-active {
  border-color: var(--wp--preset--color--primary);
  background-color: rgba(242, 107, 33, 0.1);
  box-shadow: 0 0 0 1px var(--wp--preset--color--primary);
}

.choice-icon {
  font-size: 26px;
}

.choice-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.choice-text span {
  font-size: 12px;
  color: var(--wp--preset--color--text-muted);
}

/* Formulários de Dados */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--wp--preset--color--text-muted);
}

.form-field-group input, 
.form-field-group select {
  height: 48px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background-color: var(--wp--preset--color--surface-2);
  border: 1px solid var(--wp--preset--color--border);
  color: var(--wp--preset--color--text-primary);
  font-size: 14px;
}

.form-field-group input:focus,
.form-field-group select:focus {
  border-color: var(--wp--preset--color--primary);
}

.checkout-modal-footer {
  padding: 20px 30px;
  border-top: 1px solid var(--wp--preset--color--border);
  background-color: var(--wp--preset--color--surface-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-checkout-back {
  height: 46px;
  padding: 0 20px;
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
}

.btn-checkout-next {
  height: 46px;
  padding: 0 28px;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
}

/* ==========================================================================
   TELA DE SUCESSO & CONFIRMAÇÃO DO PEDIDO
   ========================================================================== */
.order-success-card {
  text-align: center;
  padding: 40px 20px;
}

.success-badge-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(56, 212, 121, 0.15);
  color: var(--wp--preset--color--success);
  display: grid;
  place-items: center;
  font-size: 34px;
  margin: 0 auto 20px;
}

.order-number-display {
  font-family: var(--wp--preset--font-family--display);
  font-size: 48px;
  color: var(--wp--preset--color--primary);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.btn-whatsapp-order {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  background-color: var(--wp--preset--color--whatsapp);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 15px;
  margin: 24px 0 16px;
}

/* Linha do Tempo de Rastreamento (Timeline) */
.timeline-track-wrapper {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.timeline-step-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background-color: var(--wp--preset--color--surface-2);
  border: 1px solid var(--wp--preset--color--border);
  opacity: 0.5;
}

.timeline-step-row.is-active {
  opacity: 1;
  border-color: var(--wp--preset--color--primary);
  background-color: rgba(242, 107, 33, 0.08);
}

.timeline-step-row.is-done {
  opacity: 1;
  border-color: rgba(56, 212, 121, 0.4);
}

.timeline-step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--surface-3);
  display: grid;
  place-items: center;
  font-weight: bold;
}

.timeline-step-row.is-done .timeline-step-icon {
  background-color: var(--wp--preset--color--success);
  color: #140A05;
}

.timeline-step-row.is-active .timeline-step-icon {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-text);
}

/* ==========================================================================
   BARRA DISCRETA DE DEMONSTRAÇÃO (DEMO TOOLBAR)
   ========================================================================== */
.demo-toolbar {
  position: fixed;
  bottom: 12px;
  left: 12px;
  z-index: 100;
  background-color: rgba(20, 15, 12, 0.95);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.demo-toolbar select, .demo-toolbar button {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background-color: var(--wp--preset--color--surface-2);
  border: 1px solid var(--wp--preset--color--border);
  color: var(--wp--preset--color--text-primary);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-bubble {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  z-index: 120;
  background-color: var(--wp--preset--color--text-primary);
  color: var(--wp--preset--color--bg-base);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.toast-bubble.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVIDADE (360px, 768px, 1280px, 1920px)
   ========================================================================== */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .info-strip-container { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .product-customizer-modal { grid-template-columns: 1fr; }
  .modal-photo-column { height: 260px; }
  .modal-bottom-bar { left: 0; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .hero-section {
    padding: 160px 16px 40px;
    align-items: flex-end;
    background-position: 70% center;
  }

  .hero-title {
    font-size: 52px;
  }

  .header-actions .btn-header-secondary { display: none; }
  .btn-float-cart { display: grid; } /* Exibe o botão de sacola flutuante no mobile */

  .info-strip-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-item {
    border-right: none;
    border-bottom: 1px solid var(--wp--preset--color--border);
    padding-bottom: 12px;
  }

  .categories-container {
    flex-direction: column;
    align-items: stretch;
  }

  .product-search-box {
    min-width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner-card {
    flex-direction: column;
    padding: 36px 24px;
    text-align: center;
    gap: 24px;
  }

  .selection-cards-grid,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Modal de Produto vira Bottom Sheet */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .product-customizer-modal {
    width: 100%;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .modal-photo-column {
    height: 200px;
  }

  .modal-scroll-body {
    padding: 20px 20px 100px;
  }

  .modal-bottom-bar {
    padding: 14px 20px;
  }
}

/* Respeito à preferência de redução de movimento */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
