@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --violet: #8b5cf6;
  --purple: #a855f7;
  --fuchsia: #d946ef;
  --pink: #ec4899;
  --cyan: #22d3ee;
  --indigo: #6366f1;
  --text: #f8fafc;
  --text-soft: rgba(248, 250, 252, 0.72);
  --text-muted: rgba(248, 250, 252, 0.5);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-strong: rgba(255, 255, 255, 0.16);
  --grad-btn: linear-gradient(135deg, #6366f1 0%, #a855f7 45%, #ec4899 100%);
  --grad-glow: linear-gradient(135deg, #22d3ee, #a855f7, #ec4899);
  --shadow-glow: 0 8px 32px rgba(139, 92, 246, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes meshMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.08); }
  66% { transform: translate(-15px, 12px) scale(0.92); }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes cardShine {
  0% { left: -100%; }
  100% { left: 150%; }
}

@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(168, 85, 247, 0); }
}

@keyframes countPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes gradientText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes emptyFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.3) rotate(20deg); opacity: 1; }
}

html { font-size: 16px; }

body {
  font-family: var(--font-sans);
  min-height: 100dvh;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  background: #0f0a1a;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(139, 92, 246, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(236, 72, 153, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 60% 70% at 50% 90%, rgba(34, 211, 238, 0.2) 0%, transparent 55%),
    linear-gradient(160deg, #0f0a1a 0%, #1a1033 40%, #12082a 100%);
  background-size: 200% 200%;
  animation: meshMove 18s ease infinite;
}

.page {
  max-width: 420px;
  margin: 0 auto;
  padding: 20px 16px 48px;
  position: relative;
  z-index: 1;
}

/* Background decor */
.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.float-emoji {
  position: absolute;
  font-size: 24px;
  opacity: 0.25;
  filter: blur(0.5px);
  animation: floatEmoji 7s ease-in-out infinite;
}

.float-emoji.e1 { top: 6%; left: 5%; }
.float-emoji.e2 { top: 20%; right: 6%; animation-delay: 1s; }
.float-emoji.e3 { top: 50%; left: 3%; animation-delay: 2s; font-size: 18px; }
.float-emoji.e4 { bottom: 30%; right: 5%; animation-delay: 0.5s; }
.float-emoji.e5 { bottom: 10%; left: 10%; animation-delay: 1.5s; }

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: blobDrift 14s ease-in-out infinite;
}

.bg-blob.b1 { width: 280px; height: 280px; top: -80px; right: -80px; background: rgba(168, 85, 247, 0.5); }
.bg-blob.b2 { width: 220px; height: 220px; bottom: 15%; left: -70px; background: rgba(236, 72, 153, 0.4); animation-delay: -5s; }
.bg-blob.b3 { width: 180px; height: 180px; top: 45%; right: 5%; background: rgba(34, 211, 238, 0.3); animation-delay: -9s; }

/* Glass card base */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.tagline {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s var(--ease) 0.05s both;
}

/* Header */
.header-card {
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 14px;
  animation: fadeInUp 0.6s var(--ease) 0.1s both;
  position: relative;
  overflow: hidden;
}

.header-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  opacity: 0.08;
  pointer-events: none;
}

.header-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
}

.logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--grad-btn);
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(255,255,255,0.25);
}

.header-meta { flex: 1; min-width: 0; }

.status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

.status-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-pink {
  background: rgba(168, 85, 247, 0.25);
  color: #e9d5ff;
  border: 1px solid rgba(168, 85, 247, 0.4);
  backdrop-filter: blur(8px);
}

.badge-pill.bump { animation: countPop 0.4s var(--ease); }

.store-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #e9d5ff 50%, #f9a8d4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 5s ease infinite;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}

.info-text {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

.info-text.bump { animation: countPop 0.4s var(--ease); }

/* Steps */
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 50px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  position: relative;
}

.step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
}

.step.active {
  color: var(--text);
  transform: scale(1.05);
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s var(--ease);
}

.step.active .step-num {
  background: var(--grad-btn);
  background-size: 200% 200%;
  animation: stepPulse 2s ease infinite, shimmer 3s ease infinite;
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.5);
}

.step-arrow { color: rgba(255,255,255,0.2); font-size: 12px; }

/* Trust row */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.trust-chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  padding: 7px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.5s var(--ease) both;
}

.trust-chip:nth-child(1) { animation-delay: 0.15s; }
.trust-chip:nth-child(2) { animation-delay: 0.25s; }
.trust-chip:nth-child(3) { animation-delay: 0.35s; }

/* Product card */
.product-card {
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 14px;
  margin-bottom: 14px;
  position: relative;
  overflow: visible;
  animation: fadeInUp 0.65s var(--ease) both;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.product-card.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.product-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.3);
  border-color: rgba(168, 85, 247, 0.4);
}

.product-card.highlight {
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 8px 40px rgba(236, 72, 153, 0.25), 0 0 0 1px rgba(236, 72, 153, 0.2);
}

.product-card.highlight::before {
  content: '✦';
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 16px;
  animation: sparkle 2s ease-in-out infinite;
  background: var(--grad-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

.product-inner,
.btn-retirar {
  position: relative;
  z-index: 1;
}

.product-card:hover::after { animation: cardShine 0.9s var(--ease); }

.suggestion-badge {
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--grad-btn);
  background-size: 200% 200%;
  animation: shimmer 3s ease infinite;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.5);
  border: 1px solid rgba(255,255,255,0.25);
}

.product-inner {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.product-img-wrap {
  position: relative;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.product-img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  background: rgba(255,255,255,0.05);
  transition: transform 0.5s var(--ease);
  display: block;
}

.product-card:hover .product-img { transform: scale(1.1); }

.stock-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  background: rgba(15, 10, 26, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.price-badge {
  background: rgba(168, 85, 247, 0.3);
  color: #f3e8ff;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  white-space: nowrap;
  border: 1px solid rgba(168, 85, 247, 0.45);
  backdrop-filter: blur(8px);
}

.offer-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #f9a8d4;
  border: 1px solid rgba(236, 72, 153, 0.4);
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(236, 72, 153, 0.12);
  width: fit-content;
}

.btn-retirar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  border: none;
  border-radius: 50px;
  background: var(--grad-btn);
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
  color: white;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(139, 92, 246, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-retirar:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(168, 85, 247, 0.55);
}

.btn-retirar:active { transform: scale(0.97); }

.btn-retirar .pix-tag {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.25);
}

/* Empty */
.empty-state {
  text-align: center;
  padding: 56px 24px;
  animation: fadeInUp 0.6s var(--ease) both;
}

.empty-icon {
  font-size: 52px;
  margin-bottom: 16px;
  animation: emptyFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
}

.empty-state h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff, #e9d5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.empty-state p { color: var(--text-muted); font-size: 14px; }

/* Footer */
.site-footer {
  text-align: center;
  padding: 32px 16px 16px;
  animation: fadeInUp 0.6s var(--ease) 0.3s both;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #4ade80;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 14px;
  backdrop-filter: blur(12px);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.2);
}

.footer-wa:hover {
  transform: translateY(-3px);
  background: rgba(37, 211, 102, 0.25);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
}

.footer-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 26, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: rgba(26, 16, 51, 0.85);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255,255,255,0.15);
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  width: 100%;
  max-width: 420px;
  padding: 12px 24px 40px;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
  position: relative;
  box-shadow: 0 -8px 48px rgba(139, 92, 246, 0.3);
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-handle {
  width: 44px;
  height: 5px;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  margin: 4px auto 20px;
}

.modal-sparkles {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 22px;
  animation: sparkle 1.8s ease-in-out infinite;
}

.modal h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--text);
}

.modal-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.modal-product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.modal-product img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.modal-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  background: var(--grad-glow);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 4s ease infinite;
  margin-bottom: 18px;
}

.pix-key-box {
  background: rgba(0,0,0,0.25);
  border-radius: 14px;
  padding: 16px;
  font-size: 14px;
  word-break: break-all;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.btn-copy {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: var(--grad-btn);
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 10px;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-copy:hover { transform: translateY(-2px); }
.btn-copy:active { transform: scale(0.98); }

/* Botão único: copia + depois manda pro WhatsApp */
.btn-copy-wa {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: var(--grad-btn);
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
  color: white;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 10px;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.btn-copy-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.55);
}

.btn-copy-wa:active { transform: scale(0.98); }

.btn-copy-wa:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pix-copied-banner {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.12);
  backdrop-filter: blur(10px);
  color: white;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  animation: pulse-glow 1.2s ease-in-out infinite;
}

.btn-close {
  width: 100%;
  padding: 12px;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-close:hover { color: var(--text); }

.qr-img {
  display: block;
  max-width: 180px;
  margin: 0 auto 18px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.15);
  animation: fadeIn 0.5s var(--ease);
}

#products {
  padding-top: 6px;
}

#products.loading {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#products.loading::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--purple);
  border-right-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.header-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.product-card.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
}

.hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
