/* ================================================================
   StarX Studio — Design System
   Header/Footer escuro + Conteúdo claro (estilo Iron Studios)
   ================================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:          #c9a84c;
  --gold-light:    #e2c56e;
  --gold-dark:     #a07830;

  /* Conteúdo principal — fundo claro */
  --bg:            #ffffff;
  --bg2:           #f5f5f5;
  --bg3:           #eeeeee;
  --bg4:           #e4e4e4;
  --border:        #e2e2e2;
  --border2:       #cccccc;
  --text:          #111111;
  --text2:         #555555;
  --text3:         #999999;

  /* Superfícies escuras (header, footer, hero, drawer) */
  --dark-bg:       #0a0a0a;
  --dark-bg2:      #111111;
  --dark-bg3:      #1a1a1a;
  --dark-bg4:      #222222;
  --dark-border:   #2a2a2a;
  --dark-border2:  #333333;
  --dark-text:     #f0f0f0;
  --dark-text2:    #aaaaaa;
  --dark-text3:    #666666;

  --red:           #e03030;
  --red-dark:      #b82020;
  --green:         #2ecc71;
  --blue:          #3498db;
  --yellow:        #f1c40f;
  --radius:        6px;
  --radius-lg:     12px;
  --shadow:        0 2px 16px rgba(0,0,0,.10);
  --shadow-md:     0 4px 24px rgba(0,0,0,.14);
  --shadow-gold:   0 0 20px rgba(201,168,76,.22);
  --transition:    .22s ease;
  --header-h:      72px;
  --container:     1320px;
  --font:          'Inter', 'Segoe UI', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
button { cursor: pointer; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Tipografia ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.section-title {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-header a {
  font-size: .8rem;
  color: var(--text3);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.section-header a:hover { color: var(--gold); border-color: var(--gold); }

/* ── Announcement Bar ──────────────────────────────────────── */
.announce-bar {
  position: relative;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  padding: 9px 44px;
  letter-spacing: .03em;
  line-height: 1.4;
  z-index: 200;
}
.announce-bar__text { display: inline; }
.announce-bar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: .85rem;
  opacity: .6;
  color: inherit;
  padding: 4px 6px;
  line-height: 1;
  transition: opacity .15s;
}
.announce-bar__close:hover { opacity: 1; }

/* ── Header ─────────────────────────────────────────── (dark) */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-bg);
  border-bottom: 1px solid var(--dark-border);
  backdrop-filter: blur(12px);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.logo span { color: var(--gold); }

/* Search bar */
.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.header-search input {
  width: 100%;
  background: var(--dark-bg3);
  border: 1px solid var(--dark-border2);
  color: var(--dark-text);
  padding: 9px 40px 9px 16px;
  border-radius: 40px;
  font-size: .875rem;
  transition: border-color var(--transition);
  outline: none;
}
.header-search input:focus { border-color: var(--gold); }
.header-search input::placeholder { color: var(--dark-text3); }
.header-search button {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--dark-text3);
  font-size: 1rem;
  padding: 0;
  transition: color var(--transition);
}
.header-search button:hover { color: var(--gold); }

/* Nav links */
.header-nav {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}
.header-nav a {
  color: var(--dark-text2);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: var(--radius);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: #fff;
  background: rgba(255,255,255,.07);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.btn-icon {
  position: relative;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--dark-border2);
  color: var(--dark-text2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-icon:hover { border-color: #fff; color: #fff; }
.badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: #000;
  font-size: .62rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dark-text);
  font-size: 1.4rem;
  padding: 8px;
}

/* ── Hero Banner / Slider ──────────────────────────── (dark) */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg2);
  aspect-ratio: 3 / 1;
  max-height: 640px;
  width: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  background: #0d0d0d;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  padding: 0 24px;
  max-width: 720px;
  width: 100%;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 2px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 14px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.hero-content p {
  font-size: clamp(.9rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.slider-dots {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }
.slider-prev, .slider-next {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; z-index: 2;
  transition: all var(--transition);
}
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-prev:hover, .slider-next:hover {
  background: var(--gold); border-color: var(--gold); color: #000;
}

/* ── Botões ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #000;
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #000; }
.btn-dark {
  background: var(--dark-bg3);
  color: var(--dark-text);
  border-color: var(--dark-border2);
}
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-danger { background: var(--red); color: #fff; border-color: var(--red); }
.btn-danger:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-light {
  background: #fff;
  color: #111;
  border-color: var(--border2);
}
.btn-light:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-ghost { background: transparent; color: var(--text2); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--text2); color: var(--text); }
.btn-sm { padding: 7px 16px; font-size: .78rem; }
.btn-lg { padding: 14px 34px; font-size: .95rem; }
.btn-full { width: 100%; max-width: 100%; justify-content: center; box-sizing: border-box; white-space: normal; word-break: break-word; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

/* ── Seções ─────────────────────────────────────────────────── */
.section    { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 96px 0; }
.section-alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── Cards de Produto ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 18px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold), 0 8px 32px rgba(0,0,0,.10);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg2);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px; z-index: 1;
}
.badge-label {
  font-size: .6rem; font-weight: 800;
  padding: 2px 7px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: .06em;
  line-height: 1.6;
}
.badge-new      { background: var(--gold);  color: #000; }
.badge-sale     { background: var(--red);   color: #fff; font-size: .58rem; padding: 2px 6px; }
.badge-preorder { background: #7c3aed;      color: #fff; }
.badge-order    { background: #d97706;      color: #fff; }
.btn-add-card.btn-add-order { background: #d97706; color: #fff; }
.badge-out      { background: #bbb;         color: #fff; }

.product-card-actions {
  position: absolute;
  top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transition: opacity var(--transition); z-index: 1;
}
.product-card:hover .product-card-actions { opacity: 1; }
.btn-wish {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border2);
  color: var(--text3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.btn-wish:hover, .btn-wish.active { background: var(--red); border-color: var(--red); color: #fff; }

.product-card-body {
  padding: 14px 16px;
  flex: 1; display: flex; flex-direction: column; gap: 5px;
}
.product-category {
  font-size: .7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.product-card-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-name a { color: inherit; }
.product-card-name a:hover { color: var(--gold-dark); }

.product-price {
  display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap; margin-top: 4px;
}
.price-final {
  font-size: 1.1rem; font-weight: 800; color: var(--text);
}
.price-original {
  font-size: .8rem; color: var(--text3); text-decoration: line-through;
}
.price-discount {
  font-size: .7rem;
  background: var(--red); color: #fff;
  padding: 2px 6px; border-radius: 3px; font-weight: 700;
}

.btn-add-card {
  width: 100%; padding: 10px;
  background: var(--dark-bg);
  border: none;
  color: #fff;
  border-radius: var(--radius);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  transition: all var(--transition);
  margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-add-card:hover { background: var(--gold); color: #000; }
.btn-add-card.adding { background: var(--green); color: #fff; }

/* ── Categorias strip ───────────────────────────────────────── */
.categories-strip {
  display: flex; gap: 10px;
  overflow-x: auto; padding: 4px 0 12px;
  scrollbar-width: none;
}
.categories-strip::-webkit-scrollbar { display: none; }
.cat-pill {
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 9px 20px;
  border-radius: 40px;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.cat-pill:hover, .cat-pill.active {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: #fff;
  box-shadow: 0 2px 8px rgba(201,168,76,.15);
}

/* ── Filtros da Loja ───────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px; align-items: start;
}
.filter-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  box-shadow: var(--shadow);
}

/* Botão toggle — oculto no desktop */
.filter-toggle-btn {
  display: none;
  align-items: center; gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg2);
  color: var(--text2);
  font-size: .82rem; font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.filter-toggle-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--gold); color: #000;
  font-size: .68rem; font-weight: 800;
  border-radius: 20px;
}

/* Cabeçalho mobile do painel (oculto no desktop) */
.filter-mob-head  { display: none; }
.filter-drag-handle {
  width: 36px; height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto;
}
.filter-close-btn {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 50%; width: 30px; height: 30px;
  font-size: .85rem; cursor: pointer; color: var(--text2);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.filter-close-btn:hover { background: var(--border); }

/* Overlay */
.filter-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.48);
  z-index: 999;
  animation: fov-in .2s ease;
}
.filter-overlay.is-open { display: block; }
@keyframes fov-in { from { opacity: 0; } to { opacity: 1; } }
.filter-title {
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text3); margin-bottom: 10px;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--border);
}
.filter-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.filter-list li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 10px; color: var(--text2); font-size: .85rem;
  border-radius: var(--radius); transition: all var(--transition);
}
.filter-list li a:hover, .filter-list li a.active {
  background: rgba(201,168,76,.08); color: var(--gold-dark);
}
.filter-count { font-size: .72rem; color: var(--text3); }

.shop-bar {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 20px; gap: 12px;
}
.shop-results { font-size: .875rem; color: var(--text3); }
.sort-select {
  background: #fff;
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 8px 32px 8px 12px;
  border-radius: var(--radius);
  font-size: .85rem; outline: none; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
}
.sort-select:focus { border-color: var(--gold); outline: none; }

/* ── Produto Detalhe ────────────────────────────────────────── */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
  min-width: 0;
}
.product-detail > * { min-width: 0; overflow-x: hidden; }
.product-gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.gallery-main {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px; max-height: 680px;
}
.gallery-main img {
  display: block; width: 100%; height: auto;
  max-height: 680px;
  object-fit: contain; cursor: zoom-in; transition: transform .3s ease;
}
.gallery-main img:hover { transform: scale(1.03); }
.gallery-thumbs {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex-shrink: 0; width: 70px; height: 70px;
  background: var(--bg2); border: 2px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: border-color var(--transition);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--gold); }

.product-info { display: flex; flex-direction: column; gap: 18px; min-width: 0; overflow-x: hidden; }
.product-info .product-category { font-size: .78rem; }
.product-info h1 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--text); word-break: break-word; overflow-wrap: break-word; }
.product-rating {
  display: flex; align-items: center;
  gap: 10px; font-size: .875rem; color: var(--text3);
}
.product-price-block { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.product-price-block .price-final { font-size: 2rem; font-weight: 900; color: var(--text); }
.product-price-block .price-original { font-size: 1.1rem; }
.product-sku { font-size: .78rem; color: var(--text3); }
.product-stock { font-size: .875rem; }
.product-stock.in-stock  { color: var(--green); }
.product-stock.low-stock { color: var(--yellow); }
.product-stock.out-stock { color: var(--red); }

.qty-wrap {
  display: flex; align-items: center;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); width: fit-content;
}
.qty-btn {
  width: 38px; height: 42px; background: none; border: none;
  color: var(--text2); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition);
}
.qty-btn:hover { color: var(--gold-dark); }
.qty-input {
  width: 50px; text-align: center; background: none; border: none;
  color: var(--text); font-size: 1rem; font-weight: 700; outline: none; padding: 0;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.btn-add-main { flex: 1; padding: 14px; font-size: .95rem; letter-spacing: .06em; }
.product-actions { display: flex; gap: 12px; align-items: stretch; }

/* Product tabs */
.product-tabs { margin-top: 48px; }
.tabs-header {
  display: flex; border-bottom: 2px solid var(--border); gap: 0;
}
.tab-btn {
  padding: 12px 22px; background: none; border: none;
  color: var(--text3); font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--gold-dark); border-bottom-color: var(--gold); }
.tab-content { padding: 28px 0; display: none; }
.tab-content.active { display: block; }
.tab-content p { color: var(--text2); line-height: 1.8; margin-bottom: 16px; }

/* ── Carrinho ───────────────────────────────────────────────── */
.cart-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 32px; align-items: start;
}
.cart-item {
  display: grid; grid-template-columns: 96px 1fr auto;
  gap: 16px; align-items: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px; margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.cart-item-img {
  width: 96px; height: 96px; object-fit: cover;
  border-radius: var(--radius); background: var(--bg2);
}
.cart-item-info { display: flex; flex-direction: column; gap: 5px; }
.cart-item-name { font-weight: 600; color: var(--text); font-size: .92rem; }
.cart-item-price { color: var(--text); font-weight: 800; font-size: 1rem; }
.cart-item-sub { color: var(--text3); font-size: .82rem; }
.cart-item-actions {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 10px;
}
.cart-remove {
  background: none; border: none;
  color: var(--text3); font-size: .82rem;
  cursor: pointer; transition: color var(--transition);
}
.cart-remove:hover { color: var(--red); }

.cart-summary {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: calc(var(--header-h) + 20px);
  box-shadow: var(--shadow);
}
.cart-summary h3 { margin-bottom: 20px; font-size: 1.05rem; color: var(--text); }
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: .88rem; color: var(--text2);
  border-bottom: 1px solid var(--border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total {
  font-size: 1.05rem; font-weight: 800; color: var(--text); margin-top: 8px;
}
.summary-row.total .price { color: var(--text); font-size: 1.3rem; }

.coupon-wrap { display: flex; gap: 8px; margin: 16px 0; }
.coupon-wrap input {
  flex: 1; background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text); padding: 10px 12px;
  border-radius: var(--radius); font-size: .875rem; outline: none;
}
.coupon-wrap input:focus { border-color: var(--gold); }

/* ── Checkout ───────────────────────────────────────────────── */
.checkout-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 32px; align-items: start;
}
.checkout-section {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.checkout-section h3 {
  font-size: .95rem; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; color: var(--text);
}
.checkout-section h3 span {
  width: 26px; height: 26px;
  background: var(--text); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; flex-shrink: 0;
}

/* ── Formulários ────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: .75rem; font-weight: 700;
  color: var(--text2); text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 6px;
}
.form-control {
  width: 100%; background: #fff;
  border: 1px solid var(--border2); color: var(--text);
  padding: 11px 14px; border-radius: var(--radius);
  font-size: .9rem; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-control::placeholder { color: var(--text3); }
.form-control:disabled { opacity: .5; cursor: not-allowed; background: var(--bg2); }
.form-control.error { border-color: var(--red); }
.form-hint  { font-size: .76rem; color: var(--text3); margin-top: 4px; }
.form-error { font-size: .76rem; color: var(--red);   margin-top: 4px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* Payment methods */
.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.payment-method {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg2); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 18px;
  cursor: pointer; transition: all var(--transition);
}
.payment-method:hover, .payment-method.selected {
  border-color: var(--gold); background: rgba(201,168,76,.04);
}
.payment-method input[type="radio"] { accent-color: var(--gold-dark); }
.payment-method-info { flex: 1; }
.payment-method-name { font-weight: 700; font-size: .92rem; color: var(--text); }
.payment-method-desc { font-size: .78rem; color: var(--text3); }
.payment-logo { font-size: 1.4rem; }

/* ── Área do Cliente ─────────────────────────────────────────── */
.client-layout {
  display: grid; grid-template-columns: 230px 1fr;
  gap: 24px; align-items: start;
}
.client-sidebar {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  position: sticky; top: calc(var(--header-h) + 20px);
  box-shadow: var(--shadow);
}
.client-sidebar-avatar {
  width: 60px; height: 60px; background: var(--bg2);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem;
  margin: 0 auto 12px; border: 2px solid var(--border);
}
.client-sidebar-name {
  text-align: center; font-weight: 700;
  font-size: .92rem; margin-bottom: 20px; color: var(--text);
}
.client-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.client-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; color: var(--text2);
  border-radius: var(--radius); font-size: .85rem; font-weight: 500;
  transition: all var(--transition);
}
.client-nav a:hover, .client-nav a.active {
  color: var(--gold-dark); background: rgba(201,168,76,.08);
}
.client-nav a.active { font-weight: 700; }
.client-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.client-card h3 {
  font-size: .95rem; margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  color: var(--text);
}

/* ── Tabelas ─────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.table th, .table td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border);
}
.table th {
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--text3); background: var(--bg2);
}
.table td { color: var(--text2); }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--bg2); }

/* Status badges */
.status-badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 20px; font-size: .7rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.status-success { background: rgba(46,204,113,.12);  color: #1a9a50; }
.status-danger  { background: rgba(224,48,48,.1);    color: var(--red); }
.status-warning { background: rgba(241,196,15,.15);  color: #b08000; }
.status-info    { background: rgba(52,152,219,.12);  color: #2070b0; }
.status-pending { background: var(--bg3);            color: var(--text3); }

/* ── Alertas ─────────────────────────────────────────────────── */
.alert {
  padding: 13px 18px; border-radius: var(--radius);
  font-size: .875rem; border-left: 3px solid;
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.alert-success { background: rgba(46,204,113,.08);  border-color: var(--green);  color: #1a7a40; }
.alert-error   { background: rgba(224,48,48,.07);   border-color: var(--red);    color: var(--red); }
.alert-warning { background: rgba(241,196,15,.1);   border-color: var(--yellow); color: #8a6000; }
.alert-info    { background: rgba(52,152,219,.08);  border-color: var(--blue);   color: #1a5a90; }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--text3);
  margin-bottom: 28px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb-sep { color: var(--border2); }
.breadcrumb span { color: var(--text2); }

/* ── Paginação ───────────────────────────────────────────────── */
.pagination {
  display: flex; align-items: center;
  justify-content: center; gap: 6px; margin-top: 40px;
}
.page-btn {
  width: 36px; height: 36px; background: #fff;
  border: 1px solid var(--border2); color: var(--text2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  transition: all var(--transition); text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--text); border-color: var(--text); color: #fff;
}

/* ── Banner do meio ──────────────────────────────────────────── */
.promo-banner {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
}
.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.promo-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), transparent);
  display: flex; align-items: center; padding: 0 40px;
}
.promo-banner-content h3 { font-size: 1.5rem; margin-bottom: 8px; color: #fff; }
.promo-banner-content p { color: rgba(255,255,255,.8); margin-bottom: 16px; }

/* ── Newsletter ──────────────────────────────────────────────── */
.newsletter-block {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  text-align: center;
}
.newsletter-block h2 { margin-bottom: 10px; color: #fff; }
.newsletter-block p { color: var(--dark-text2); margin-bottom: 28px; }
.newsletter-form {
  display: flex; gap: 12px;
  max-width: 440px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; background: var(--dark-bg3);
  border: 1px solid var(--dark-border2); color: var(--dark-text);
  padding: 12px 16px; border-radius: var(--radius);
  font-size: .875rem; outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }

/* ── Footer ──────────────────────────────────────── (dark) */
#site-footer {
  background: var(--dark-bg2);
  border-top: 3px solid var(--dark-border);
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px; padding: 52px 0 40px;
}
.footer-logo {
  font-size: 1.3rem; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff; margin-bottom: 12px; display: block;
}
.footer-about { color: var(--dark-text3); font-size: .85rem; line-height: 1.8; max-width: 250px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px; background: var(--dark-bg3);
  border: 1px solid var(--dark-border2); color: var(--dark-text2);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: .95rem;
  transition: all var(--transition); text-decoration: none;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.footer-col-title {
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--dark-text3); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: var(--dark-text3); font-size: .85rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .78rem; color: var(--dark-text3); gap: 16px; flex-wrap: wrap;
}
.footer-payments { display: flex; gap: 6px; align-items: center; }
.payment-icon {
  background: var(--dark-bg3); border: 1px solid var(--dark-border2);
  padding: 4px 9px; border-radius: 4px; font-size: .72rem;
  color: var(--dark-text3); font-weight: 700;
}

/* ── Spinner / Loading ───────────────────────────────────────── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(0,0,0,.12);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Toast ───────────────────────────────────────────────────── */
#toast-container {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9999; display: flex; flex-direction: column;
  gap: 10px; pointer-events: none;
}
.toast {
  background: #fff; border: 1px solid var(--border);
  border-left: 4px solid var(--gold); color: var(--text);
  padding: 14px 20px; border-radius: var(--radius);
  font-size: .875rem; min-width: 260px; max-width: 340px;
  pointer-events: auto; animation: slideUp .3s ease;
  box-shadow: var(--shadow-md);
}
.toast.success { border-left-color: var(--green); }
.toast.error   { border-left-color: var(--red); }
@keyframes slideUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── Cart Drawer ─────────────────────────────────── (dark) */
#cart-drawer {
  position: fixed; top: 0; right: 0;
  height: 100%; width: 380px; max-width: 100vw;
  background: #fff;
  border-left: 1px solid var(--border); z-index: 200;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
#cart-drawer.open { transform: translateX(0); }
#cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4); z-index: 199;
  display: none; backdrop-filter: blur(2px);
}
#cart-overlay.open { display: block; }
.drawer-header {
  padding: 18px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--dark-bg); color: var(--dark-text);
}
.drawer-header strong { color: #fff; }
.drawer-close {
  background: none; border: none;
  color: var(--dark-text2); font-size: 1.3rem; cursor: pointer;
  transition: color var(--transition);
}
.drawer-close:hover { color: #fff; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px; background: var(--bg2); }
.drawer-footer { padding: 16px 24px; border-top: 1px solid var(--border); background: #fff; }

/* ── Mobile menu ──────────────────────────────────── (dark) */
#mobile-menu {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--dark-bg2); border-bottom: 1px solid var(--dark-border);
  z-index: 99; padding: 10px 0; flex-direction: column;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  display: block; padding: 11px 24px;
  color: var(--dark-text2); font-size: .92rem;
  transition: color var(--transition), background var(--transition);
}
#mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.05); }

/* ── Diferenciais (section escura override) ──────────────────── */
.section-dark {
  background: var(--dark-bg2);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.section-dark h4 { color: var(--gold); }
.section-dark p  { color: var(--dark-text3); }

/* ── Stars ───────────────────────────────────────────────────── */
.stars { display: inline-flex; gap: 2px; }
.star  { color: var(--border2); font-size: 1rem; }
.star.filled { color: var(--yellow); }

/* ── Responsivo ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .shop-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .product-gallery { position: static; }

  /* Botão toggle visível */
  .filter-toggle-btn { display: inline-flex; }

  /* Sidebar → bottom sheet fixo */
  .filter-sidebar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    top: auto;
    z-index: 1000;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    padding: 12px 20px 32px;
    max-height: 86vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform .32s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 -6px 40px rgba(0,0,0,.18);
  }
  .filter-sidebar.is-open { transform: translateY(0); }

  /* Cabeçalho mobile visível, desktop oculto */
  .filter-mob-head  { display: block; margin-bottom: 14px; }
  .filter-desk-title { display: none; }
}
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-search { max-width: 240px; flex: 1; }
  .header-inner { gap: 12px; }
  .menu-toggle { display: flex; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .client-layout { grid-template-columns: 1fr; }
  .client-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .product-tabs .tabs-header { gap: 4px; }
  .product-tabs .tab-btn { font-size: .8rem; padding: 8px 12px; }
  .product-actions { flex-wrap: wrap; }
  .product-actions .btn { flex: 1; min-width: 140px; }
  .breadcrumb { font-size: .78rem; flex-wrap: wrap; }
  .hero-slider { aspect-ratio: unset; height: 34vw; max-height: 420px; }
  .hero-content h1 { font-size: clamp(1.2rem, 5vw, 2rem); }
  .hero-content { padding: 0 24px; max-width: 100%; }
  .client-layout { grid-template-columns: 1fr; }
  .client-sidebar { position: static; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 600px) {
  :root { --header-h: 106px; }
  #site-header { height: auto; }
  .hero-slider { aspect-ratio: unset; height: 56vw; max-height: 380px; }
  .hero-slide img { object-fit: contain; object-position: center center; }
  .hero-content { padding: 0 16px; text-align: center; }
  .hero-content h1 { font-size: clamp(1rem, 6vw, 1.6rem); margin-bottom: 8px; }
  .hero-content p { font-size: .82rem; margin-bottom: 16px; }
  .hero-badge { font-size: .65rem; padding: 3px 10px; margin-bottom: 10px; }
  .btn-lg { padding: 10px 20px; font-size: .8rem; }
  .slider-prev, .slider-next { width: 32px; height: 32px; font-size: .95rem; }
  .container { padding: 0 16px; }
  .section { padding: 32px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-block { padding: 28px 16px; }
  .newsletter-form { flex-direction: column; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item-actions { flex-direction: row; grid-column: 1 / -1; justify-content: space-between; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(142px, 1fr)); gap: 10px; }
  .product-card-body { padding: 10px 10px; }
  .product-card-name { font-size: .82rem; }
  .product-card-name a { font-size: inherit; }
  .product-category { font-size: .65rem; }
  .btn-add-card { font-size: .75rem; padding: 7px 10px; }
  .form-row { grid-template-columns: 1fr; }
  #cart-drawer { width: 100vw; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .header-search { order: 10; flex: 0 0 100%; width: 100%; max-width: 100%; padding: 0 0 10px; }
  .header-inner { gap: 8px; padding: 8px 12px 0; flex-wrap: wrap; align-items: center; }
  .header-actions { margin-left: auto; }
  .logo { font-size: 1.15rem; letter-spacing: .06em; }
  .btn-icon { width: 36px; height: 36px; font-size: .95rem; }
  .header-actions { gap: 4px; }
  .hide-on-mobile { display: none !important; }
  .promo-banner-overlay { padding: 0 20px; }
  #mobile-menu { max-width: 100vw; overflow-x: hidden; }
  .product-price-block { flex-wrap: wrap; }
  .qty-wrap { width: 100%; justify-content: flex-start; }
  .btn-full { font-size: .9rem; }
  .client-nav { display: flex; flex-wrap: wrap; gap: 4px; }
  .client-nav li { flex: 1; min-width: 140px; }
  .client-nav a { text-align: center; padding: 10px 8px; border-radius: var(--radius); background: var(--bg2); border: 1px solid var(--border); font-size: .8rem; }
  .client-sidebar-avatar, .client-sidebar-name { display: none; }
  .section-title { font-size: 1.3rem; }
  table { font-size: .82rem; }
  table th, table td { padding: 8px 10px; }

  /* ── Produto detalhe mobile ── */
  .product-detail { gap: 16px; }
  .product-info h1 { font-size: 1.25rem; line-height: 1.3; }
  .product-info { gap: 14px; }

  /* Galeria: thumbnails em grid 4 colunas */
  .gallery-thumbs { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 6px; overflow-x: visible; }
  .gallery-thumb { width: auto; height: auto; aspect-ratio: 1; }

  /* Tabs: scroll horizontal sem quebrar */
  .product-tabs { margin-top: 28px; }
  .tabs-header { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .tabs-header::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; flex-shrink: 0; padding: 10px 16px; font-size: .75rem; }

  /* Bloco de parcelas */
  .product-tabs .tab-content { padding: 18px 0; }

  /* Breadcrumb: oculta itens do meio em telas muito pequenas */
  .breadcrumb { font-size: .72rem; gap: 4px; }
  .breadcrumb span:not(:last-child) { max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

@media (max-width: 480px) {
  .hero-slider { height: 56vw; max-height: 300px; }
  .hero-content h1 { font-size: clamp(.95rem, 5.5vw, 1.3rem); }
  .hero-content p { display: none; }
  .hero-badge { display: none; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(138px, 1fr)); gap: 8px; }
  .price-final { font-size: .95rem; }
  .section-title { font-size: 1.1rem; }
}

@media (max-width: 360px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
}

/* ── Utilitários ─────────────────────────────────────────────── */
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text2); }
.text-dim     { color: var(--text3); }
.text-red     { color: var(--red); }
.text-green   { color: var(--green); }
.text-white   { color: #fff; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.flex-1 { flex: 1; }
.fw-bold { font-weight: 700; }
.hidden { display: none !important; }
