/* ===== VARIABLES ===== */
:root {
  --purple:        #8B3A6F;
  --purple-dark:   #5B21B6;
  --purple-main:   #9F7AEA;
  --purple-light:  #EDE9FE;
  --pink:          #D53F8C;
  --text-dark:     #1A202C;
  --text-medium:   #4A5568;
  --text-light:    #718096;
  --border:        #E2E8F0;
  --surface:       #FFFFFF;
  --bg:            #F5F0FF;
  --success:       #10B981;
  --error:         #EF4444;
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 25px rgba(0,0,0,.09), 0 4px 10px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 40px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.06);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: all .22s var(--ease);
  --gradient-btn: linear-gradient(135deg, #AE76E5 0%, #532194 100%);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  min-height: 100vh;
}

/* Subtle background orbs */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::before {
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(159,122,234,.09) 0%, transparent 70%);
}
body::after {
  bottom: -100px; left: -100px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(213,63,140,.07) 0%, transparent 70%);
}

/* ===== HEADER ===== */
.site-header {
  background: var(--gradient-btn);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(139,58,111,.28);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Botões do header — back e search compartilham a mesma base visual */
.header-back,
.header-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 99px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  min-width: 110px;
  letter-spacing: .01em;
}
.header-back:hover,
.header-search-btn:hover {
  background: rgba(255,255,255,.26);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

/* Mobile: esconde o texto, mantém só o ícone */
@media (max-width: 480px) {
  .header-back span,
  .header-search-btn span { display: none; }
  .header-back,
  .header-search-btn { min-width: 0; padding: 8px 12px; }
}

.header-logo img { height: 40px; width: auto; display: block; }

/* ===== PAGE MAIN ===== */
.page-main {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  padding: 52px 20px 88px;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  margin-bottom: 28px;
}
.hero-mascot {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 20px rgba(139,58,111,.22));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}
.hero-title {
  font-size: clamp(30px, 6vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  background: linear-gradient(135deg, #8B3A6F 0%, #5B21B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto;
}
.hero-subtitle strong { color: var(--purple); font-weight: 700; }

/* ===== SEARCH CARD ===== */
.search-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 36px;
  border: 1px solid rgba(139,58,111,.07);
  margin-bottom: 40px;
}

.search-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 12px;
}

.search-input-wrap {
  position: relative;
  margin-bottom: 12px;
}
.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple-main);
  width: 18px;
  height: 18px;
  pointer-events: none;
  flex-shrink: 0;
}
.search-input {
  width: 100%;
  padding: 15px 18px 15px 48px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: 16px;
  font-family: inherit;
  color: var(--text-dark);
  background: #F8F8FC;
  outline: none;
  transition: var(--t);
}
.search-input::placeholder { color: #A0AEC0; }
.search-input:focus {
  border-color: var(--purple-main);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(159,122,234,.11);
}

/* Error */
.search-error {
  display: none;
  align-items: center;
  gap: 8px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  color: var(--error);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  margin-bottom: 12px;
}
.search-error.visible { display: flex; }

/* Submit button */
.search-btn {
  width: 100%;
  padding: 15px 32px;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--t);
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.search-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .2s;
}
.search-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,58,111,.38); }
.search-btn:hover::after { opacity: 1; }
.search-btn:active { transform: translateY(0); }
.search-btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* Loading bar */
.loading-bar {
  display: none;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 14px;
}
.loading-bar.visible { display: block; }
.loading-bar-fill {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, #b87fe8, #D53F8C, transparent);
  border-radius: 99px;
  animation: slide 1.4s ease-in-out infinite;
}
@keyframes slide {
  0%   { transform: translateX(-150%); }
  100% { transform: translateX(400%); }
}

/* Help tooltip */
.help-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-light);
}
.help-tooltip { position: relative; cursor: pointer; }
.help-icon {
  width: 18px; height: 18px;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  user-select: none;
}
.help-tooltip:hover .help-icon { background: var(--purple); color: #fff; }
.help-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  width: 290px;
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.65;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  text-align: left;
}
.help-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--surface);
}
.help-tooltip:hover .help-popup { display: block; }

/* Order search link */
.order-search-link {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
}
.order-search-link a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
  transition: var(--t);
}
.order-search-link a:hover { color: var(--pink); }

/* ===== ORDER CARDS (busca-pedido page) ===== */
.order-name-greeting {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.6;
}
.order-name-greeting strong { color: var(--purple); font-weight: 700; }

.order-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 14px;
  transition: var(--t);
}
.order-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.order-card-header {
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F3FF 100%);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.order-card-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.order-card-number {
  font-size: 17px;
  font-weight: 800;
  color: var(--purple-dark);
}
.order-card-date {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 3px;
  font-weight: 500;
}
.order-card-body {
  padding: 16px 20px;
}
.order-tracking-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--purple-light);
  border-radius: var(--r-md);
  padding: 11px 14px;
  margin-bottom: 10px;
}
.order-tracking-item:last-child { margin-bottom: 0; }
.order-tracking-code {
  font-size: 14px;
  font-weight: 700;
  color: var(--purple-dark);
  font-family: 'Courier New', monospace;
  word-break: break-all;
}
.order-track-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 99px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.order-track-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139,58,111,.32);
  opacity: .92;
}
.order-preparing {
  display: block;
  width: 100%;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.65;
}
.order-preparing p {
  display: block;
  margin: 0 0 8px;
}
.order-preparing-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  color: var(--text-dark, #374151);
  margin-bottom: 10px;
}
.order-preparing-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 14px;
}
.order-sac-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--gradient-btn); color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--t);
}
.order-sac-btn:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(16,185,129,.28);
}

/* ===== RESULTS ===== */
#results:not(:empty) {
  animation: fadeUp .35s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Results heading */
.results-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* No results */
.result-empty {
  background: var(--surface);
  border: 1px solid #A7F3D0;
  border-left: 4px solid var(--success);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  margin-bottom: 12px;
}
.result-empty-title {
  font-size: 16px;
  font-weight: 800;
  color: #065F46;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.result-empty p {
  font-size: 14px;
  color: #047857;
  line-height: 1.72;
  margin-bottom: 6px;
}
.result-empty .note {
  font-size: 12px;
  color: #059669;
  font-style: italic;
  border-top: 1px solid #A7F3D0;
  padding-top: 12px;
  margin-top: 8px;
}
.result-empty-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--success);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 99px;
  text-decoration: none;
  transition: var(--t);
}
.result-empty-cta:hover { background: #059669; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(16,185,129,.28); }

/* Shipment card */
.shipment-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 16px;
  transition: var(--t);
}
.shipment-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.shipment-header {
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F3FF 100%);
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.shipment-code-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: 5px;
}
.shipment-code-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--purple-dark);
  font-family: 'Courier New', monospace;
  background: var(--purple-light);
  padding: 4px 12px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--t);
  user-select: all;
  display: inline-block;
}
.shipment-code-value:hover { background: #DDD6FE; }

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 7px;
  border-radius: var(--r-sm);
  transition: var(--t);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.copy-btn:hover { color: var(--purple); background: var(--purple-light); }
.copy-btn.copied { color: var(--success); }

.shipment-body { padding: 20px 22px; }

/* Timeline events */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.event-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 18px;
}
.event-item:last-child { padding-bottom: 0; }
.event-item:not(:last-child) .event-line {
  position: absolute;
  left: 6px;
  top: 18px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(139,58,111,.2), rgba(139,58,111,.05));
}
.event-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  z-index: 1;
  background: #CBD5E0;
  border: 2px solid #E2E8F0;
}
.event-item:first-child .event-dot {
  background: var(--pink);
  border-color: rgba(213,63,140,.3);
  box-shadow: 0 0 0 4px rgba(213,63,140,.12);
}
.event-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 3px;
}
.event-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  line-height: 1.5;
}
.event-item:first-child .event-desc { font-weight: 700; color: var(--text-dark); }
.event-local {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.no-events {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

.shipment-footer {
  padding: 13px 22px;
  border-top: 1px solid var(--border);
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.shipment-detail-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--t);
  opacity: .8;
}
.shipment-detail-link:hover { opacity: 1; color: var(--purple); }

/* Status badge */
.status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: .02em;
}

/* Meta bar (previsão + mensagem) */
.shipment-meta-bar {
  padding: 10px 22px;
  border-bottom: 1px solid var(--border);
  background: #FAFBFF;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shipment-meta {
  font-size: 13px;
  color: var(--text-medium);
}
.shipment-meta strong { color: var(--text-dark); }
.shipment-meta.msg {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

/* Empty — e-mail não encontrado (variante info/purple) */
.result-empty--info {
  border-color: #DDD6FE;
  border-left-color: var(--purple);
}
.result-empty--info .result-empty-title { color: var(--purple-dark); }
.result-empty--info p { color: var(--text-medium); }
.result-empty--info .note { border-top-color: #DDD6FE; color: var(--text-light); }
.result-empty--info .result-empty-cta { background: var(--purple); }
.result-empty--info .result-empty-cta:hover { background: var(--purple-dark); box-shadow: 0 6px 16px rgba(91,33,182,.28); }

/* Connection error */
.result-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  color: var(--error);
}
.result-error strong { display: block; margin-bottom: 6px; font-size: 15px; }
.result-error p { font-size: 14px; }

/* ===== COMMUNITY SECTION ===== */
.community {
  margin-top: 0;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.community-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.community-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.community-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.community-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 18px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 99px;
  text-decoration: none;
  transition: var(--t);
}
.btn-whatsapp:hover { background: #20BD5A; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 99px;
  text-decoration: none;
  transition: var(--t);
}
.btn-instagram:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(221,42,123,.3); }
.community-handle {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-light);
}
.site-footer a { color: var(--purple); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ===== BUSCA DE PRODUTOS (barra-fixa-smart-search) ===== */
#barra-fixa-smart-search {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: none;
  flex-direction: column;
  background: #fff;
  font-family: 'Inter', sans-serif;
  animation: p96BuscaIn .3s ease;
}
#barra-fixa-smart-search.open { display: flex !important; }
@keyframes p96BuscaIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.barra-fixa-search-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0,0,0,.03);
}
.barra-fixa-search-back { font-size: 24px; color: #333; cursor: pointer; }
.barra-fixa-search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 15px;
  background: #f5f5f5;
  border-radius: 25px;
}
.barra-fixa-search-input-wrapper i { color: #999; font-size: 16px; }
#barra-fixa-search-input {
  width: 100%;
  padding: 12px 10px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}
#barra-fixa-search-clear { display: none; cursor: pointer; }
.barra-fixa-search-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #fafafa;
}
.barra-fixa-search-section-title {
  margin-bottom: 15px;
  color: #999;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.barra-fixa-search-grid { display: flex; flex-direction: column; gap: 10px; }
.barra-fixa-search-card {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.02);
  cursor: pointer;
  transition: background .2s;
}
.barra-fixa-search-card:active { background: #f9f9f9; }
.barra-fixa-search-card img {
  width: 65px;
  height: 65px;
  min-width: 65px;
  margin-right: 15px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee;
}
.barra-fixa-search-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
}
.barra-fixa-search-card-title {
  margin-bottom: 4px;
  overflow: hidden;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.barra-fixa-search-card-price { color: #AE76E5; font-size: 14px; font-weight: 900; }
.barra-fixa-search-card-arrow { margin-left: auto; color: #ddd; font-size: 18px; }
.p96-busca-colors { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 5px; }
.p96-busca-color-chip {
  padding: 2px 8px;
  background: #f3f0f9;
  color: #371267;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: capitalize;
}
.p96-busca-color-more {
  padding: 2px 7px;
  background: #eee;
  color: #999;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .page-main { padding: 36px 16px 64px; }
  .search-card { padding: 24px 20px; border-radius: var(--r-lg); }
  .hero-mascot { width: 68px; height: 68px; }
  .community { grid-template-columns: 1fr; }
  .header-spacer { display: none; }
}
