/* ═══════════════════════════════════════════════════════════════
   AniGames — GameShop Layout v2.0 (light theme)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --gs-bg:       #ffffff;
  --gs-surface:  #f4f4f5;
  --gs-card:     #ffffff;
  --gs-border:   #e4e4e7;
  --gs-text:     #111111;
  --gs-muted:    #71717a;
  --gs-green:    #16a34a;
  --gs-ps:       #003791;
  --gs-xbox:     #107c10;
  --gs-nintendo: #e60012;
  --gs-anime:    #7c3aed;
  --gs-wrap:     1200px;
}

/* ── Reset body to white ──────────────────────────────────────── */
body {
  background: #fff;
  color: var(--gs-text);
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial;
}

.wrap {
  max-width: var(--gs-wrap);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Announce ticker ──────────────────────────────────────────── */
.gs-announce {
  background: #111;
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}
.gs-announce-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  font-size: 12px;
  color: #aaa;
  padding: 0 20px;
}
.gs-announce-track .sep { color: #444; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.gs-announce:hover .gs-announce-track { animation-play-state: paused; }

/* ── Header ───────────────────────────────────────────────────── */
.gs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--gs-border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.gs-header-grid {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  max-width: var(--gs-wrap);
  margin: 0 auto;
}
.gs-nav-main {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.gs-nav-link {
  color: #444;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.gs-nav-link:hover { color: #111; background: #f4f4f5; }
.gs-nav-link--hot { color: var(--gs-green); font-weight: 700; }
.gs-nav-link--hot:hover { background: #f0fdf4; }
.gs-nav-link--wa { color: #16a34a; }
.gs-nav-link--wa:hover { background: #f0fdf4; }
.gs-header-actions { margin-left: auto; flex-shrink: 0; }
.gs-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}
.gs-btn-primary:hover { background: #333; }

/* ── Hero Slider ──────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #111;
}
.hero-slides-wrap { position: relative; height: 440px; }
.hero-slides { position: relative; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(40px, calc((100% - var(--gs-wrap))/2 + 40px));
  background: var(--slide-bg, #111);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.hero-slide-content { max-width: 500px; }
.slide-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.slide-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 14px;
  color: #fff;
}
.slide-desc {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  margin: 0 0 26px;
}
.slide-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .15s;
}
.slide-btn:hover { opacity: .88; }
.hero-slide-visual {
  flex-shrink: 0;
  width: 360px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide-visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.55));
}
.hero-slide-visual--mascot img { max-width: 260px; }

.hero-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .15s;
  padding: 0;
}
.hero-ctrl:hover { background: rgba(255,255,255,.28); }
.hero-prev { left: 14px; }
.hero-next { right: 14px; }
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s;
}
.hero-dot.active { background: #fff; width: 22px; border-radius: 4px; }

@media (max-width: 768px) {
  .hero-slides-wrap { height: auto; }
  .hero-slide { flex-direction: column; padding: 28px 20px; text-align: center; position: relative; }
  .hero-slides { display: grid; }
  .hero-slide { display: none; }
  .hero-slide.active { display: flex; }
  .hero-slide-visual { width: 100%; height: 160px; order: -1; }
  .slide-title { font-size: 28px; }
  .hero-ctrl { display: none; }
}

/* ── Section wrapper ──────────────────────────────────────────── */
.gs-shelf-section { padding: 44px 0; background: #fff; }
.gs-shelf-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}
.gs-shelf-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #111;
}
.gs-shelf-more {
  color: var(--gs-green);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.gs-shelf-more:hover { text-decoration: underline; }

/* ── Product shelf ────────────────────────────────────────────── */
.gs-shelf {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}
.gs-shelf::-webkit-scrollbar { height: 4px; }
.gs-shelf::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

/* ── Product card ─────────────────────────────────────────────── */
.gs-card {
  flex: 0 0 200px;
  background: #fff;
  border: 1px solid var(--gs-border);
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.gs-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); transform: translateY(-2px); }
.gs-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f4f4f5;
}
.gs-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gs-card:hover .gs-card-img img { transform: scale(1.04); }
.gs-card-badge {
  position: absolute;
  top: 8px; left: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
}
.badge--ps       { background: var(--gs-ps); }
.badge--xbox     { background: var(--gs-xbox); }
.badge--nintendo { background: var(--gs-nintendo); }
.badge--rifas    { background: var(--gs-green); }

.gs-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.gs-card-name {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin: 0;
  line-height: 1.4;
}
.gs-card-btn {
  display: block;
  text-align: center;
  background: #f4f4f5;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 7px;
  text-decoration: none;
  transition: background .15s;
  margin-top: auto;
  border: 1px solid var(--gs-border);
}
.gs-card-btn:hover { background: #e4e4e7; }
.gs-card-btn--green { background: #f0fdf4; color: var(--gs-green); border-color: #bbf7d0; }
.gs-card-btn--green:hover { background: #dcfce7; }
.gs-card--rifas .gs-card-img { background: #f0fdf4; }
.gs-card-img--rifas { display: flex; align-items: center; justify-content: center; }
.gs-card-img--rifas img { object-fit: contain; padding: 12px; }

/* ── Promo strip ──────────────────────────────────────────────── */
.gs-promo-strip {
  background: #f8f8f8;
  border-top: 1px solid var(--gs-border);
  border-bottom: 1px solid var(--gs-border);
  padding: 18px 20px;
}
.gs-promo-strip-inner {
  max-width: var(--gs-wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.gs-promo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
}
.gs-promo-icon { font-size: 22px; }
.gs-promo-item div { display: flex; flex-direction: column; }
.gs-promo-item strong { font-size: 13px; font-weight: 700; }
.gs-promo-item span { font-size: 12px; color: var(--gs-muted); }

/* ── Brand sections ───────────────────────────────────────────── */
.gs-brand-section {
  padding: 48px 0;
  background: var(--brand-bg, #f8f9ff);
  border-top: 1px solid var(--gs-border);
}
.gs-brand-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}
.gs-brand-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gs-muted);
  margin-bottom: 4px;
}
.gs-brand-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: #111;
}
.gs-brand-see-all {
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--gs-border);
  padding: 6px 14px;
  border-radius: 7px;
  transition: background .15s;
  flex-shrink: 0;
  background: #fff;
}
.gs-brand-see-all:hover { background: #f4f4f5; }
.gs-shelf--brand .gs-card { flex: 0 0 210px; }

/* ── Full-width banner ────────────────────────────────────────── */
.gs-full-banner { padding: 48px 0; overflow: hidden; }
.gs-full-banner-inner {
  max-width: var(--gs-wrap);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.gs-full-banner-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  display: block;
  margin-bottom: 10px;
}
.gs-full-banner-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}
.gs-full-banner-text p { color: rgba(255,255,255,.75); margin: 0 0 22px; }
.gs-full-banner-img { flex-shrink: 0; width: 340px; }
.gs-full-banner-img img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.4));
}
@media (max-width: 768px) {
  .gs-full-banner-img { display: none; }
  .gs-full-banner-title { font-size: 26px; }
}

/* ── Rifas section ────────────────────────────────────────────── */
.gs-rifas-section {
  padding: 48px 0;
  background: #f0fdf4;
  border-top: 1px solid #bbf7d0;
}
.gs-rifas-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gs-green);
  margin-bottom: 4px;
}
.gs-rifas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 4px;
}
.gs-rifas-loading, .gs-rifas-empty { color: var(--gs-muted); font-size: 14px; }
.gs-rifas-empty a { color: var(--gs-green); text-decoration: none; }

.gs-rifa-card {
  background: #fff;
  border: 1px solid #d1fae5;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.gs-rifa-card:hover { box-shadow: 0 4px 16px rgba(22,163,74,.12); transform: translateY(-2px); }
.gs-rifa-img {
  position: relative;
  aspect-ratio: 16/9;
  background: #f0fdf4;
  overflow: hidden;
}
.gs-rifa-img img { width: 100%; height: 100%; object-fit: cover; }
.gs-rifa-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.gs-rifa-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--gs-green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
}
.gs-rifa-body { padding: 14px; }
.gs-rifa-title { font-size: 15px; font-weight: 700; margin: 0 0 6px; color: #111; }
.gs-rifa-desc { font-size: 12px; color: var(--gs-muted); margin: 0 0 10px; line-height: 1.5; }
.gs-rifa-meta { margin-bottom: 12px; }
.gs-rifa-price { font-size: 14px; font-weight: 700; color: var(--gs-green); }
.gs-rifa-btn {
  display: block;
  text-align: center;
  background: var(--gs-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .15s;
}
.gs-rifa-btn:hover { opacity: .88; }
.gs-rifas-footer { margin-top: 24px; text-align: center; }
.gs-btn-rifas {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--gs-green);
  color: var(--gs-green);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}
.gs-btn-rifas:hover { background: #f0fdf4; }

/* ── Anime & Coleccionables category grid ────────────────────── */
.gs-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 900px) { .gs-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .gs-cat-grid { grid-template-columns: repeat(2, 1fr); } }
.gs-cat-card {
  background: #fff;
  border: 1px solid var(--gs-border);
  border-radius: 10px;
  padding: 18px 10px;
  text-align: center;
  text-decoration: none;
  color: #111;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.gs-cat-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,.08); transform: translateY(-2px); }
.gs-cat-icon { font-size: 28px; }
.gs-cat-name { font-size: 13px; font-weight: 600; }

/* ── Browse by category ───────────────────────────────────────── */
.gs-browse-section {
  padding: 44px 0 56px;
  background: #fff;
  border-top: 1px solid var(--gs-border);
}
.gs-browse-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 18px;
}
@media (max-width: 900px) { .gs-browse-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .gs-browse-grid { grid-template-columns: repeat(2, 1fr); } }
.gs-browse-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  display: block;
  border: 1px solid var(--gs-border);
}
.gs-browse-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gs-browse-card:hover img { transform: scale(1.05); }
.gs-browse-card span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 20px 10px 10px;
}

/* ── Contact strip ────────────────────────────────────────────── */
.contact-strip { background: #f4f4f5; border-top: 1px solid var(--gs-border); }
.contact-strip-inner { flex-wrap: wrap; gap: 12px; }
.contact-item { color: #333; gap: 7px; }
.contact-item a { color: #333; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-sep { display: none; }
@media (min-width: 600px) { .contact-sep { display: block; } }
.contact-map-btn {
  background: #111;
  color: #fff;
  padding: 7px 16px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

/* ── Footer overrides ─────────────────────────────────────────── */
.footer--v2 { background: #111; color: #e5e5e5; border-top: none; }
.footer-v2-brand p { color: #aaa; }
.footer-v2-col-title { color: #fff; }
.footer-v2-col a { color: #aaa; text-decoration: none; display: block; margin-bottom: 6px; }
.footer-v2-col a:hover { color: #fff; }
.footer-v2-bar { background: #000; border-top: 1px solid #222; }
.footer-v2-bar-inner { color: #666; }
.footer-v2-bar-inner a { color: #666; text-decoration: none; }
.footer-v2-bar-inner a:hover { color: #aaa; }
.powered-link { color: #555 !important; }
.footer-logo { filter: brightness(0) invert(1); }

/* ── Responsive nav ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .gs-nav-main { display: none; }
  .gs-header-grid { justify-content: space-between; }
}

/* ── Logo ─────────────────────────────────────────────────────── */
.logo { height: 38px; width: auto; display: block; }
.footer-logo { height: 32px; width: auto; display: block; filter: brightness(0) invert(1); }

/* ── Contact strip (fixed layout) ────────────────────────────── */
.contact-strip { padding: 14px 0; }
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 8px;
}
.contact-sep { width: 1px; height: 18px; background: #ddd; margin: 0 20px; flex-shrink: 0; }
.contact-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #333; }
.contact-item a { color: #333; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
@media (max-width: 640px) { .contact-sep { display: none; } .contact-strip-inner { gap: 10px 20px; } }

/* ── Footer grid ──────────────────────────────────────────────── */
.footer-v2-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 32px;
}
@media (max-width: 900px) { .footer-v2-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-v2-grid { grid-template-columns: 1fr; } }
.footer-v2-brand p { font-size: 13px; color: #aaa; line-height: 1.6; margin-top: 12px; }
.footer-v2-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin: 0 0 12px; }
.footer-v2-col a { font-size: 13px; color: #aaa; text-decoration: none; display: block; margin-bottom: 8px; }
.footer-v2-col a:hover { color: #fff; }
.footer-v2-bar { padding: 14px 0; background: #000; border-top: 1px solid #222; }
.footer-v2-bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #555; }
.footer-v2-bar-inner a { color: #555; text-decoration: none; margin-left: 16px; }
.footer-v2-bar-inner a:hover { color: #aaa; }
.footer-v2-bar-right { display: flex; align-items: center; }
.powered-sep { margin: 0 8px; }
.powered-link { color: #444 !important; }

/* ── SVG icon utilities ───────────────────────────────────────── */
.ann-icon {
  width: 12px; height: 12px;
  stroke: #999; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -1px; display: inline;
}

.gs-promo-icon {
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gs-promo-icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: #444;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.gs-cat-icon {
  width: 48px; height: 48px;
  background: #f4f4f5;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.gs-cat-icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: #444;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.contact-item svg {
  width: 15px; height: 15px;
  fill: none; stroke: #777;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Rifas page — hero & steps ────────────────────────────────── */
.rg-hero {
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
  padding: 48px 0 36px;
  text-align: center;
  border-bottom: 1px solid #e4e4e7;
}
.rg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.rg-hero-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: #111;
  margin: 0 0 12px;
}
.rg-hero-title span { color: #16a34a; }
.rg-hero-sub { font-size: 16px; color: #71717a; margin: 0; }

.rg-steps {
  padding: 18px 0;
  background: #fafafa;
  border-bottom: 1px solid #e4e4e7;
  overflow-x: auto;
}
.rg-steps-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: max-content;
  padding: 0 20px;
}
.rg-step { display: flex; align-items: center; gap: 10px; }
.rg-step-icon {
  width: 34px; height: 34px;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rg-step-icon svg {
  width: 16px; height: 16px;
  fill: none; stroke: #16a34a;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.rg-step-label { font-size: 13px; font-weight: 600; color: #333; white-space: nowrap; }
.rg-step-arrow { font-size: 16px; color: #ccc; flex-shrink: 0; margin: 0 4px; }

/* ── Rifas page — section layout ──────────────────────────────── */
.rg-section { padding: 48px 0; }
.rg-section-alt { padding: 48px 0; background: #f8f9fb; border-top: 1px solid #e4e4e7; border-bottom: 1px solid #e4e4e7; }
.rg-section-title { font-size: 22px; font-weight: 800; color: #111; margin: 0 0 6px; text-align: center; }
.rg-section-sub { font-size: 14px; color: #71717a; text-align: center; max-width: 600px; margin: 0 auto 36px; }

/* ── Rifas page — card overrides (JS-generated) ───────────────── */
.rg-section .card, .rg-section-alt .card {
  background: #fff;
  border: 1px solid #e4e4e7;
  color: #111;
  border-radius: 12px;
}

/* ── Rifas page — panel note ──────────────────────────────────── */
.rg-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 24px;
  font-size: 13px;
  color: #166534;
}
.rg-trust-strip span { display: flex; align-items: center; gap: 6px; }
.rg-trust-strip svg { width: 15px; height: 15px; fill: none; stroke: #16a34a; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Rifas page — verify section ─────────────────────────────── */
.rg-verify-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  padding: 32px;
}
.rg-verify-card .verify-form { max-width: 500px; margin: 0 auto; }
.rg-verify-card .verify-participant-info {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.rg-verify-card #verifyNoResults > div {
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
}

/* ── Rifas page — winners ─────────────────────────────────────── */
.rg-winner-cta {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  padding: 40px;
  max-width: 560px;
  margin: 40px auto 0;
  text-align: center;
}
.rg-winner-cta-icon {
  width: 56px; height: 56px;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.rg-winner-cta-icon svg { width: 28px; height: 28px; fill: none; stroke: #16a34a; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.rg-winner-cta h3 { font-size: 21px; font-weight: 800; margin: 0 0 10px; color: #111; }
.rg-winner-cta p { color: #71717a; line-height: 1.6; margin-bottom: 24px; font-size: 14px; }

/* ── WA float ─────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  z-index: 200;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
