input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* ── Cart drawer ── */
@keyframes fade-in {
  from { background-color: rgba(0,0,0,0); }
  to   { background-color: rgba(0,0,0,0.8); }
}
@keyframes fade-out {
  from { background-color: rgba(0,0,0,0.8); }
  to   { background-color: rgba(0,0,0,0); }
}
@keyframes slide-in {
  from { transform: translateX(500px); }
  to   { transform: translateX(0px); }
}
@keyframes slide-out {
  from { transform: translateX(0px); }
  to   { transform: translateX(500px); }
}

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

#cart-drawer[data-state="open"]       { animation: fade-in  0.4s forwards; }
#cart-drawer[data-state="closed"]     { animation: fade-out 0.4s forwards; }
#cart-drawer[data-state="open"]  > div { animation: slide-in 0.4s forwards; }
#cart-drawer[data-state="closed"] > div { animation: slide-out 0.4s forwards; }

/* ── Dialog ── */
.dialog[data-state="open"]       { animation: fade-in    0.4s forwards; }
.dialog[data-state="closed"]     { animation: fade-out   0.4s forwards; }
.dialog[data-state="open"]  > div { animation: dialog-in  0.2s forwards; }
.dialog[data-state="closed"] > div { animation: dialog-out 0.2s forwards; }

@keyframes dialog-in {
  from { opacity: 0; scale: 80%; }
  to   { opacity: 1; scale: 100%; }
}
@keyframes dialog-out {
  from { opacity: 1; scale: 100%; }
  to   { opacity: 0; scale: 80%; }
}

/* ── Reveal animations ── */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── iFrame content ── */
.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

/* ── Grid background ── */
.grid-background {
  background-image:
    linear-gradient(to right,  hsla(270,60%,80%,.028) 1px, transparent 1px),
    linear-gradient(to bottom, hsla(270,60%,80%,.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 85% at 40% 25%, #000 0%, transparent 110%);
}

/* ── Custom background image mask ── */
.custom-bg-mask {
  mask-image: linear-gradient(hsl(var(--background)), rgba(0,0,0,0.3), rgba(0,0,0,0));
}

/* ── Loading bar ── */
@keyframes loading {
  0%  { left: -50%; }
  to  { left: 100%; }
}

/* ── Top donators shine ── */
.top-donators-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
  transition: left 0.5s ease-in;
}
.top-donators-pill:hover::after {
  left: 120%;
  transition: left 0.6s ease-out;
}

/* ── Detail dash ── */
.detail-dash {
  background-image: linear-gradient(to right, rgba(255,255,255,0.08) 50%, transparent 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

/* ── Custom scrollbar ── */
.custom-scrollbar::-webkit-scrollbar       { width: 3px; height: 3px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}

/* ── Category sidebar dropdowns ── */
.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  transform-origin: top;
}
.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideDown {
  from { opacity: 0; transform: scaleY(0); }
  to   { opacity: 1; transform: scaleY(1); }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideInMobile {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideInSub {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════════════
   PRODUCT PAGE
══════════════════════════════════════════════════ */

/* ── Back button ── */
.package-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgb(var(--muted-foreground));
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.package-back-btn:hover {
  color: rgb(var(--foreground));
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
}

/* ── Stock badge ── */
.stock-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.28);
  color: rgb(134,239,172);
}

/* ── Stock badge — out of stock variant ── */
.stock-badge.out-of-stock {
  background: rgba(239,68,68,0.12);
  border-color: rgba(239,68,68,0.28);
  color: rgb(252,165,165);
}

/* ── Auto delivery badge ── */
.auto-delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: hsl(var(--primary) / 0.15);
  border: 1px solid hsl(var(--primary) / 0.35);
  color: hsl(var(--primary));
}

/* ── Sales count badge ── */
.auto-delivery-badge.sales-badge {
  background: rgba(234,179,8,0.12);
  border-color: rgba(234,179,8,0.28);
  color: rgb(253,224,71);
}

/* ── Gradient buy button ── */
.btn-buy-gradient {
  background: linear-gradient(105deg, hsl(var(--primary)), hsl(var(--primary) / 0.65));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  box-shadow: 0 4px 22px hsl(var(--primary) / 0.38);
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn-buy-gradient:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 30px hsl(var(--primary) / 0.55);
}
.btn-buy-gradient:active:not(:disabled) {
  transform: translateY(0);
}
.btn-buy-gradient:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ── Trust mini cards ── */
.trust-mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.875rem 0.4rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgb(var(--card));
  transition: border-color 0.2s;
}
.trust-mini-card:hover {
  border-color: hsl(var(--primary) / 0.3);
}

/* ── Package card ── */
.package-card {
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}

/* Top accent line — always visible, expands on hover */
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.7), transparent);
  z-index: 5;
  pointer-events: none;
  transition: left 0.35s ease, right 0.35s ease, opacity 0.35s ease;
}
.package-card:hover::before {
  left: 0%;
  right: 0%;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: hsl(var(--primary) / 0.55) !important;
  box-shadow:
    0 0 28px -4px hsl(var(--primary) / 0.45),
    0 20px 60px -12px hsl(var(--primary) / 0.25),
    0 4px 20px rgba(0,0,0,0.6);
}

/* ── Card delivery + pix badges ── */
.card-delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.65rem;
  border-radius: 9999px;
  background: rgba(10, 6, 22, 0.75);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: rgb(196, 181, 253);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.card-pix-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.65rem;
  border-radius: 9999px;
  background: rgba(10, 6, 22, 0.75);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: rgb(52, 211, 153);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* ── Trust bar (legacy — used in package page sidebar) ── */
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, border-color 0.2s;
}
.trust-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: hsl(var(--primary) / 0.25);
}
.trust-icon {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.2);
}

/* ══════════════════════════════════════════════════
   TRUST STRIP (homepage)
══════════════════════════════════════════════════ */

/* Desktop: one unified bar */
.trust-strip {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgb(var(--card));
  overflow: hidden;
}

/* Mobile: 4 separate cards, column layout, centered */
@media (max-width: 767px) {
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    border: none;
    background: transparent;
    gap: 0.5rem;
    overflow: visible;
  }
  .trust-strip-sep {
    display: none !important;
  }
  .trust-strip-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
    padding: 1.25rem 0.75rem 1rem !important;
    border-radius: 0.875rem !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    background: rgb(var(--card));
  }
  .trust-strip-icon {
    width: 2.5rem !important;
    height: 2.5rem !important;
    min-width: 2.5rem !important;
    border-radius: 50% !important;
  }
  .trust-strip-title {
    font-size: 0.8rem;
  }
  .trust-strip-sub {
    font-size: 0.65rem;
  }
}

.trust-strip-item {
  --tc: 167 139 250;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.1rem 1.4rem;
  transition: background 0.2s;
  cursor: default;
}
.trust-strip-item:hover {
  background: rgb(var(--tc) / 0.05);
}

/* Vertical separator between items */
.trust-strip-sep {
  height: 2.5rem;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.07), transparent);
}

/* Icon square */
.trust-strip-icon {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--tc) / 0.12);
  border: 1px solid rgb(var(--tc) / 0.22);
  color: rgb(var(--tc));
  flex-shrink: 0;
  transition: box-shadow 0.25s;
}
.trust-strip-item:hover .trust-strip-icon {
  box-shadow: 0 0 14px rgb(var(--tc) / 0.40);
}

.trust-strip-title {
  font-family: 'Space Grotesk', 'Geist', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgb(var(--foreground));
  line-height: 1.2;
}
.trust-strip-sub {
  font-size: 0.68rem;
  color: rgb(var(--muted-foreground));
  margin-top: 0.15rem;
  line-height: 1.3;
}

/* ── Hero badge pulse ── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.pulse-dot {
  animation: pulse-dot 2s cubic-bezier(0.4,0,0.6,1) infinite;
}

/* ── Hero gradient ring ── */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid hsl(var(--primary) / 0.12);
  pointer-events: none;
}

/* ── Section divider ── */
.section-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, hsl(var(--primary) / 0.3), transparent);
}

/* ── Glow card border on hover ── */
.card-hover-glow {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.card-hover-glow:hover {
  border-color: hsl(var(--primary) / 0.45) !important;
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.15), 0 12px 40px -8px hsl(var(--primary) / 0.15);
}

/* ══════════════════════════════════════════════════
   PURPLE BACKGROUND ORBS + DECORATIVE ELEMENTS
══════════════════════════════════════════════════ */

.bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0px); /* blur applied per-orb */
}

/* Orb 1 — violet, top-left */
.bg-orb-1 {
  width: 700px;
  height: 700px;
  top: -220px;
  left: -180px;
  background: radial-gradient(circle at center,
    rgba(109,40,217,0.28) 0%,
    rgba(76,29,149,0.12) 40%,
    transparent 70%
  );
  filter: blur(80px);
  animation: orb-drift-1 14s ease-in-out infinite;
}

/* Orb 2 — purple, top-right */
.bg-orb-2 {
  width: 600px;
  height: 600px;
  top: -120px;
  right: -160px;
  background: radial-gradient(circle at center,
    rgba(139,92,246,0.22) 0%,
    rgba(109,40,217,0.08) 45%,
    transparent 70%
  );
  filter: blur(90px);
  animation: orb-drift-2 11s ease-in-out infinite;
}

/* Orb 3 — fuchsia, bottom-center */
.bg-orb-3 {
  width: 800px;
  height: 450px;
  bottom: -100px;
  left: 20%;
  background: radial-gradient(circle at center,
    rgba(168,85,247,0.14) 0%,
    rgba(109,40,217,0.06) 50%,
    transparent 70%
  );
  filter: blur(100px);
  animation: orb-drift-3 18s ease-in-out infinite;
}

/* Orb 4 — small accent, mid-left */
.bg-orb-4 {
  width: 320px;
  height: 320px;
  top: 40%;
  left: -60px;
  background: radial-gradient(circle at center,
    rgba(167,139,250,0.12) 0%,
    transparent 65%
  );
  filter: blur(60px);
  animation: orb-drift-2 9s ease-in-out infinite reverse;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(35px, 25px) scale(1.06); }
  66%       { transform: translate(-25px, 45px) scale(0.94); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-45px, 35px) scale(1.1); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0,0); }
  50%       { transform: translate(40px, -25px); }
}

/* ── Decorative floating stars — behind content ── */
.deco-star {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  font-style: normal;
  line-height: 1;
  user-select: none;
  animation: star-twinkle 5s ease-in-out infinite;
}
.deco-star-1 {
  top: 10%;  right: 3%;
  font-size: 1.4rem;
  animation-delay: 0s;
  color: rgba(167,139,250,0.30);
}
.deco-star-2 {
  top: 42%;  left: 1%;
  font-size: 0.85rem;
  animation-delay: 1.8s;
  color: rgba(216,180,254,0.18);
}
.deco-star-3 {
  top: 68%;  right: 2%;
  font-size: 0.8rem;
  animation-delay: 3.2s;
  color: rgba(196,181,253,0.22);
}
.deco-star-4 {
  top: 80%;  left: 0.5%;
  font-size: 1rem;
  animation-delay: 0.8s;
  color: rgba(167,139,250,0.15);
}
.deco-star-5 {
  top: 24%;  right: 1%;
  font-size: 0.65rem;
  animation-delay: 2.5s;
  color: rgba(216,180,254,0.20);
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
  50%       { opacity: 0.8; transform: scale(1.35) rotate(25deg); }
}

/* ── Purple vignette on viewport edges ── */
.bg-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%,   rgba(109,40,217,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0%   50%,  rgba(139,92,246,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 50%,  rgba(139,92,246,0.05) 0%, transparent 55%);
}

/* ══════════════════════════════════════════════════
   NAVBAR ANIMATIONS
══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   NAVBAR — rotating beam border + inner glow
══════════════════════════════════════════════════ */

/*
 * Outer wrapper: overflow:hidden clips the giant rotating
 * conic-gradient to exactly 1px of border.
 */
.nav-pill-wrap {
  position: relative;
  border-radius: 16px;
  padding: 1px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(109, 40, 217, 0.45),
    0 8px 48px rgba(109, 40, 217, 0.32),
    0 2px 12px rgba(0, 0, 0, 0.80);
  animation: nav-shadow-breathe 6s ease-in-out infinite;
}
@keyframes nav-shadow-breathe {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(109, 40, 217, 0.40),
      0 8px 48px rgba(109, 40, 217, 0.28),
      0 2px 12px rgba(0, 0, 0, 0.80);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(139, 92, 246, 0.60),
      0 8px 72px rgba(109, 40, 217, 0.55),
      0 2px 12px rgba(0, 0, 0, 0.80);
  }
}

/*
 * The rotating beam: a single ~70° arc of lavender light
 * rotating at 10s — the rest of the border is invisible.
 * inset:-200% makes it 5× the parent so the rotation
 * sweeps the full perimeter cleanly.
 */
.nav-pill-wrap::before {
  content: '';
  position: absolute;
  inset: -200%;
  background: conic-gradient(
    from 0deg,
    transparent     0deg,
    transparent   135deg,
    #4c1d95       155deg,   /* beam start — deep violet */
    #7c3aed       168deg,   /* rising */
    #c4b5fd       180deg,   /* peak — soft lavender */
    #7c3aed       192deg,   /* falling */
    #4c1d95       205deg,   /* beam end */
    transparent   225deg,
    transparent   360deg
  );
  animation: nav-beam-spin 10s linear infinite;
  z-index: 0;
}
@keyframes nav-beam-spin {
  to { transform: rotate(360deg); }
}

/* Inner pill — dark violet-tinted frosted glass */
.nav-pill-inner {
  position: relative;
  z-index: 1;
  border-radius: 15px;
  background: linear-gradient(
    150deg,
    rgba(20, 12, 42, 0.97) 0%,
    rgba(11, 7, 26, 0.97)  100%
  );
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  overflow: hidden;
}

/* Top-edge inner glow that reacts to the rotating beam */
.nav-pill-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: radial-gradient(
    ellipse 60% 100% at 50% 0%,
    rgba(139, 92, 246, 0.10) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: nav-inner-glow 10s ease-in-out infinite;
}
@keyframes nav-inner-glow {
  0%         { opacity: 0.5; }
  25%, 75%   { opacity: 1.0; }
  50%        { opacity: 0.4; }
  100%       { opacity: 0.5; }
}

/* Horizontal aurora inside the pill */
.nav-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.nav-aurora::before {
  content: '';
  position: absolute;
  top: -60%;
  width: 35%;
  height: 220%;
  background: linear-gradient(90deg,
    transparent,
    rgba(139, 92, 246, 0.05),
    rgba(167, 139, 250, 0.09),
    transparent
  );
  transform: skewX(-18deg);
  animation: aurora-pass 11s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes aurora-pass {
  0%   { left: -50%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 140%; opacity: 0; }
}

/* ── Logo subtle pulse glow ── */
.nav-logo {
  border-radius: 12px;
  animation: logo-pulse 5s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(139,92,246,0.25)); }
  50%       { filter: drop-shadow(0 0 10px rgba(167,139,250,0.60)); }
}

/* ── Store name shimmer — slow and gentle ── */
.nav-store-name {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.95)  0%,
    rgba(255,255,255,0.95) 25%,
    rgba(221,214,254,0.90) 42%,
    rgba(196,181,253,1.00) 50%,
    rgba(221,214,254,0.90) 58%,
    rgba(255,255,255,0.95) 75%,
    rgba(255,255,255,0.95) 100%
  );
  background-size: 280% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: name-shimmer 8s ease-in-out infinite;
}
@keyframes name-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── Cart button — glow ring pulse ── */
.navbar-cart-btn {
  position: relative;
  animation: none !important; /* remove old animation */
}
.navbar-cart-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: hsl(var(--primary));
  opacity: 0;
  filter: blur(8px);
  animation: cart-ring 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes cart-ring {
  0%, 100% { opacity: 0;    transform: scale(0.85); }
  50%       { opacity: 0.35; transform: scale(1.15); }
}

/* ── Category nav links ── */
.navbar-cat-link {
  padding: 0.28rem 0.7rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(196, 181, 253, 0.65);
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.navbar-cat-link:hover {
  color: #ede9fe;
  background: rgba(139, 92, 246, 0.12);
}

/* ══════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════ */

.faq-item {
  border-radius: 0.875rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgb(var(--card));
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:hover {
  border-color: hsl(var(--primary) / 0.3);
}
.faq-item[open] {
  border-color: hsl(var(--primary) / 0.35);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 1rem;
}
.faq-summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: rgb(var(--muted-foreground));
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: hsl(var(--primary));
}

.faq-content {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0.875rem 1.25rem 1.1rem;
  font-size: 0.875rem;
  color: rgb(var(--muted-foreground));
  line-height: 1.65;
  animation: faq-open 0.22s ease;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-about-card {
  border-radius: 0.875rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgb(var(--card));
  padding: 1.5rem;
}
.faq-title-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(var(--primary) / 0.4));
}
.faq-title-line.right {
  background: linear-gradient(to left, transparent, hsl(var(--primary) / 0.4));
}

/* ── Category header accent (legacy) ── */
.cat-header-accent {
  width: 3px;
  height: 1.4em;
  border-radius: 2px;
  background: hsl(var(--primary));
  display: inline-block;
  margin-right: 0.6rem;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── Category banner pill ── */
.cat-banner-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(90deg,
    hsl(var(--primary) / 0.92) 0%,
    hsl(var(--primary) / 0.60) 100%
  );
  border: 1px solid hsl(var(--primary) / 0.45);
  box-shadow:
    0 4px 24px hsl(var(--primary) / 0.28),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.cat-banner-title {
  font-family: 'Space Grotesk', 'Geist', sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
}

.cat-banner-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  transition: color 0.15s;
  white-space: nowrap;
}
.cat-banner-link:hover { color: #fff; }

.cat-banner-sub {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--muted-foreground));
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* ── Skeleton loading ── */
@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position:  200% 0; }
}
.skeleton {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}

/* ── Discount badge ── */
.badge-discount {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: hsl(var(--primary) / 0.18);
  border: 1px solid hsl(var(--primary) / 0.3);
  color: hsl(var(--primary));
  line-height: 1;
}

/* ══════════════════════════════════════════════════
   REVIEW CARDS
══════════════════════════════════════════════════ */

/* Grid — no Tailwind dependency */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.875rem !important;
  padding: 1.5rem !important;
  border-radius: 1rem !important;
  background: #1a1232 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
  overflow: hidden !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
}
.review-card:hover {
  border-color: rgba(251,191,36,0.35) !important;
  box-shadow: 0 8px 32px rgba(251,191,36,0.08), inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

/* Large decorative quote mark */
.review-quote {
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(251,191,36,0.12);
  pointer-events: none;
  user-select: none;
}

.review-text {
  font-size: 0.875rem;
  color: rgba(250,250,250,0.75);
  line-height: 1.6;
  flex: 1;
  padding-right: 2rem;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.review-footer > div:nth-child(2) {
  min-width: 0;
  flex: 1;
}
.review-footer > div:nth-child(3) {
  flex-shrink: 0;
  margin-left: auto;
  text-align: right;
}

.review-avatar {
  --av: 139 92 246;
  width: 2.25rem !important;
  height: 2.25rem !important;
  min-width: 2.25rem !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgb(var(--av) / 0.18) !important;
  border: 1px solid rgb(var(--av) / 0.35) !important;
  color: rgb(var(--av)) !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
}

.review-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgb(250,250,250);
  line-height: 1.2;
}

.review-product {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(251,191,36,0.8);
  letter-spacing: 0.02em;
}

.review-stars {
  font-size: 0.75rem;
  color: #f59e0b;
  letter-spacing: 1px;
  line-height: 1;
}

.review-date {
  font-size: 0.65rem;
  color: rgb(var(--muted-foreground));
  margin-top: 0.2rem;
}

/* ══════════════════════════════════════════════════
   PURCHASE NOTIFICATION TOAST
══════════════════════════════════════════════════ */

#purchase-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.1rem;
  background: #1a1232;
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 1rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(139,92,246,0.10);
  max-width: 290px;
  width: max-content;
  transform: translateX(calc(-100% - 2rem));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  pointer-events: none;
}
#purchase-toast.pn-show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
#purchase-toast.pn-hidden {
  transform: translateX(calc(-100% - 2rem));
  opacity: 0;
  pointer-events: none;
}

/* Mobile: sobe acima da bottom nav, ocupa largura disponível, animação muda para slide-up */
@media (max-width: 767px) {
  #purchase-toast {
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
    width: auto;
    transform: translateY(20px);
    opacity: 0;
  }
  #purchase-toast.pn-show {
    transform: translateY(0);
    opacity: 1;
  }
  #purchase-toast.pn-hidden {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* Live dot */
.pn-live-dot {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pn-pulse 2s ease-in-out infinite;
}
@keyframes pn-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

/* Avatar */
.pn-avatar {
  --av: 139 92 246;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 50%;
  background: rgb(var(--av) / 0.20);
  border: 1.5px solid rgb(var(--av) / 0.40);
  color: rgb(var(--av));
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Body */
.pn-body { min-width: 0; }

.pn-text {
  font-size: 0.78rem;
  color: rgba(250,250,250,0.75);
  line-height: 1.3;
  white-space: nowrap;
}
.pn-text span {
  font-weight: 700;
  color: rgb(250,250,250);
}

.pn-product {
  font-size: 0.78rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-top: 0.1rem;
  white-space: nowrap;
}

.pn-time {
  font-size: 0.65rem;
  color: rgb(var(--muted-foreground));
  margin-top: 0.2rem;
}

/* Close button */
.pn-close {
  position: absolute;
  top: 0.5rem;
  right: 1.75rem;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
  padding: 0;
}
.pn-close:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}

/* ══════════════════════════════════════════════════
   CATEGORY CARDS GRID
══════════════════════════════════════════════════ */
.cats-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .cats-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.65rem;
    padding-bottom: 0.25rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cats-scroll::-webkit-scrollbar { display: none; }
}

.cat-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  background: #0f0c1e;
  border: 1px solid rgba(139,92,246,0.18);
  aspect-ratio: 3 / 4;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.25s,
              box-shadow 0.25s;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cat-card {
    min-width: 120px;
    max-width: 120px;
    scroll-snap-align: start;
    border-radius: 0.875rem;
  }
}

.cat-card:hover {
  transform: translateY(-5px) scale(1.025);
  border-color: rgba(139,92,246,0.50);
  box-shadow: 0 16px 40px rgba(109,40,217,0.28), 0 0 0 1px rgba(139,92,246,0.20);
}
.cat-card:active { transform: scale(0.97); }

.cat-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  pointer-events: none;
  user-select: none;
}
.cat-card:hover .cat-card-img { transform: scale(1.10); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.10) 40%,
    rgba(0,0,0,0.82) 100%
  );
  transition: background 0.25s;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(109,40,217,0.12) 0%,
    rgba(0,0,0,0.10) 35%,
    rgba(0,0,0,0.88) 100%
  );
}

.cat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transition: left 0s;
  pointer-events: none;
  z-index: 3;
}
.cat-card:hover::after {
  left: 130%;
  transition: left 0.5s ease;
}

.cat-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.5rem 0.7rem;
  z-index: 2;
  text-align: center;
}
.cat-card-name {
  font-family: 'Space Grotesk', 'Geist', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: rgb(250,250,250);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  display: block;
}

/* ══════════════════════════════════════════════════
   MOBILE SEARCH OVERLAY
══════════════════════════════════════════════════ */
.mobile-search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  flex-direction: column;
  background: rgba(6,4,14,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: max(1rem, env(safe-area-inset-top, 1rem)) 1rem 1rem;
  overflow: hidden;
}
.mobile-search-overlay.active { display: flex; }

.mobile-search-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.mobile-search-input-wrap {
  position: relative;
  flex: 1;
}
.mobile-search-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: rgba(167,139,250,0.5);
  pointer-events: none;
}
.mobile-search-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem 0 2.5rem;
  border-radius: 0.875rem;
  background: rgba(139,92,246,0.10) !important;
  border: 1px solid rgba(139,92,246,0.25) !important;
  color: rgb(250,250,250) !important;
  font-size: 1rem;
  outline: none;
}
.mobile-search-input::placeholder { color: rgba(167,139,250,0.4); }
.mobile-search-input:focus { border-color: rgba(139,92,246,0.50) !important; }

.mobile-search-cancel {
  background: none;
  border: none;
  color: #a78bfa;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  padding: 0.5rem 0;
  flex-shrink: 0;
}

.mobile-search-results {
  flex: 1;
  overflow-y: auto;
  border-radius: 0.875rem;
  -webkit-overflow-scrolling: touch;
}
.mobile-search-results:not(:empty) {
  background: rgba(20,14,38,0.8);
  border: 1px solid rgba(139,92,246,0.15);
}

.mobile-search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex: 1;
  color: rgba(250,250,250,0.20);
}
.mobile-search-empty svg {
  width: 3rem;
  height: 3rem;
}
.mobile-search-empty p {
  font-size: 0.875rem;
}

/* ══════════════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION
══════════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(8,5,18,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(139,92,246,0.18);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1);
}
.mobile-bottom-nav.hidden-by-buybar {
  transform: translateY(100%);
}
@media (max-width: 767px) {
  .mobile-bottom-nav { display: grid; grid-template-columns: repeat(4, 1fr); }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
  .nav-mobile-hide { display: none !important; }
}

/* Store name centered on mobile navbar */
.nav-mobile-title {
  display: none;
}
@media (max-width: 639px) {
  .nav-mobile-title {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
    font-family: 'Space Grotesk', 'Geist', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(250,250,250);
    text-shadow: 0 0 20px rgba(139,92,246,0.6);
  }
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  padding: 0.65rem 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(250,250,250,0.35);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-item:active,
.mobile-nav-item.active { color: hsl(var(--primary)); }
.mobile-nav-item svg { width: 1.3rem; height: 1.3rem; stroke: currentColor; stroke-width: 1.75; fill: none; }

/* ══════════════════════════════════════════════════
   MOBILE STICKY BUY BAR (product page)
══════════════════════════════════════════════════ */
.mobile-buy-bar { display: none; }
@media (max-width: 767px) {
  .mobile-buy-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 45;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem max(0.875rem, env(safe-area-inset-bottom, 0.875rem));
    background: rgba(8,5,18,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139,92,246,0.28);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.45);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1);
  }
  .mobile-buy-bar.visible { transform: translateY(0); }
  .mobile-buy-bar-info { min-width: 0; flex: 1; }
  .mobile-buy-bar-label {
    font-size: 0.62rem;
    color: rgba(250,250,250,0.40);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .mobile-buy-bar-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: rgb(250,250,250);
    line-height: 1;
    letter-spacing: -0.02em;
  }
}

/* ══════════════════════════════════════════════════
   MOBILE CARD TWEAKS
══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .card-pix-badge     { font-size: 0.56rem; padding: 0.22rem 0.5rem; }
  .card-viewers-badge { font-size: 0.58rem; }
  .btn-buy-gradient   { font-size: 0.68rem; height: 2rem; }
}

/* ══════════════════════════════════════════════════
   VIEWER COUNTER BADGE
══════════════════════════════════════════════════ */
.card-viewers-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(250,250,250,0.55);
  letter-spacing: 0.01em;
}
.card-viewers-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: viewer-pulse 2s ease-in-out infinite;
}
@keyframes viewer-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ══════════════════════════════════════════════════
   BACK TO TOP BUTTON
══════════════════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.25rem;
  z-index: 48;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px hsl(var(--primary) / 0.40);
  opacity: 0;
  transform: translateY(12px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#back-to-top:hover {
  box-shadow: 0 6px 28px hsl(var(--primary) / 0.55);
  transform: translateY(-2px) scale(1.05);
}
#back-to-top svg {
  width: 1rem;
  height: 1rem;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

/* On mobile: position back-to-top above the bottom nav */
@media (max-width: 767px) {
  #back-to-top {
    bottom: calc(60px + env(safe-area-inset-bottom, 0px) + 0.75rem);
  }
}

/* Toastify: push above bottom nav on mobile */
@media (max-width: 767px) {
  .toastify {
    bottom: calc(60px + env(safe-area-inset-bottom, 0px) + 0.5rem) !important;
  }
}

/* ══════════════════════════════════════════════════
   FOOTER ENHANCED
══════════════════════════════════════════════════ */
.footer-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
  padding: 1rem 0 0.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2.5rem;
}
.footer-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(250,250,250,0.55);
}
.footer-stat strong {
  color: rgb(250,250,250);
  font-weight: 700;
}
.footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.footer-payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 0.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(250,250,250,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-payment-chip svg {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   CATEGORY PAGE BANNER
══════════════════════════════════════════════════ */
@keyframes cat-sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}
@keyframes cat-border-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

.cat-hero {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2.5rem 2.5rem;
  min-height: 190px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #130a28 0%, #0e0920 50%, #0a0617 100%);
  border: 1px solid rgba(139,92,246,0.35);
  box-shadow:
    0 0 0 1px rgba(139,92,246,0.08),
    0 24px 70px rgba(109,40,217,0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
  margin-bottom: 2rem;
  animation: cat-border-pulse 4s ease-in-out infinite;
}

/* Dot grid */
.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(139,92,246,0.22) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  pointer-events: none;
}

/* Animated sweep */
.cat-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.09), transparent);
  animation: cat-sweep 5s ease-in-out infinite;
  pointer-events: none;
}

.cat-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  filter: blur(3px) saturate(1.8);
}

/* Left violet orb */
.cat-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cat-hero-orb-l {
  top: -4rem;
  left: -4rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(139,92,246,0.20) 0%, transparent 65%);
}
.cat-hero-orb-r {
  bottom: -5rem;
  right: -3rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(109,40,217,0.14) 0%, transparent 65%);
}

/* Corner accent lines */
.cat-hero-corner {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 6rem;
  height: 6rem;
  pointer-events: none;
  opacity: 0.35;
}
.cat-hero-corner::before,
.cat-hero-corner::after {
  content: '';
  position: absolute;
  background: linear-gradient(to right, rgba(167,139,250,0.8), transparent);
  border-radius: 99px;
}
.cat-hero-corner::before {
  top: 0; right: 0;
  width: 100%; height: 1px;
}
.cat-hero-corner::after {
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, rgba(167,139,250,0.8), transparent);
}

.cat-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.cat-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.85rem;
  border-radius: 99px;
  background: rgba(109,40,217,0.22);
  border: 1px solid rgba(139,92,246,0.40);
  font-size: 0.65rem;
  font-weight: 800;
  color: #c4b5fd;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  box-shadow: 0 0 18px rgba(139,92,246,0.22);
}

.cat-hero-title {
  font-family: 'Space Grotesk', 'Geist', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #ffffff 0%, #e9d5ff 55%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cat-hero-sub {
  font-size: 0.83rem;
  color: rgba(250,250,250,0.38);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.cat-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cat-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.85rem;
  border-radius: 99px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 0.72rem;
  color: rgba(250,250,250,0.55);
  transition: background 0.2s, border-color 0.2s;
}
.cat-hero-stat strong {
  color: rgb(250,250,250);
  font-weight: 700;
}
.cat-hero-stat:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}
