/* DigiTicket / SVM home + chrome */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Contenedor único del home/chrome (alineación vertical) */
.sorteo-container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .sorteo-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.svm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.7rem;
  border: 0;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.svm-btn--primary {
  background: var(--svm-orange);
  color: #fff !important;
}

.svm-btn--primary:hover {
  background: var(--svm-orange-hover);
  transform: translateY(-1px);
}

.svm-btn--ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.svm-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.svm-btn--light {
  background: #fff;
  color: var(--svm-ink) !important;
}

.svm-btn--light:hover {
  background: #f8fafc;
}

.svm-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.svm-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.svm-section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--svm-ink);
}

.svm-section-head p {
  margin: 0.4rem 0 0;
  color: var(--svm-muted);
  font-size: 0.98rem;
}

.svm-section-link {
  color: var(--svm-orange) !important;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}

.svm-section-link:hover { text-decoration: underline !important; }

/* Topbar + header */
.svm-topbar {
  background: #000;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.svm-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.1rem;
}

.svm-topbar__inner--center {
  justify-content: center;
}

.svm-topbar__inner--center .svm-topbar__perks {
  justify-content: center;
}

.svm-topbar__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.svm-topbar__perks li {
  position: relative;
  padding-left: 0.85rem;
}

.svm-topbar__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--svm-orange);
}

.svm-topbar__right a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  font-weight: 600;
}

.svm-header {
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.svm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.svm-header .svm-brand {
  display: flex;
  align-items: center;
  line-height: 0;
}

.svm-header .svm-brand__logo {
  display: block;
  height: 3.15rem;
  width: auto;
  max-width: 8.5rem;
  object-fit: contain;
}

.svm-header .svm-brand__name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--svm-orange);
}

.svm-header .svm-brand__name span { color: var(--svm-orange); }

.svm-header .svm-brand__tag {
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.62rem !important;
}

.svm-header .svm-nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: transparent;
  border-radius: 0.55rem;
  padding: 0.55rem 0.8rem;
}

.svm-header .site-nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
}

.svm-header .site-nav-link:hover {
  color: #fff !important;
}

.svm-header .site-primary-nav {
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.svm-header .svm-nav .site-nav-cta,
.svm-header .svm-nav-account {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.65rem;
  font-weight: 700;
}

.svm-header .svm-nav .site-nav-cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06) !important;
}

@media (min-width: 1024px) {
  .svm-nav-toggle { display: none; }
  .site-primary-nav.svm-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: 0;
  }
}

/* Hero slider — slots fijos (mismo alto / misma grilla en todos los slides) */
.home-hero-slider {
  --home-hero-title-min: 5.6rem;
  --home-hero-price-h: 4.6rem;
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  background: #0e0e0e;
}

.home-hero-slider__viewport {
  display: grid;
}

/* Todos los slides en la misma celda → alto = el más alto */
.home-hero-slider__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.35s ease;
}

.home-hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.home-hero-slider .dc2-hero {
  height: 100%;
  padding: 3.25rem 0 3.75rem;
  background:
    radial-gradient(ellipse 50% 65% at 82% 40%, rgba(255, 90, 31, 0.35), transparent 62%),
    linear-gradient(180deg, #1a1410 0%, #121212 45%, #0e0e0e 100%);
}

.home-hero-slider .dc2-hero__inner {
  height: 100%;
  align-items: stretch;
  min-height: 28rem;
}

@media (min-width: 960px) {
  .home-hero-slider .dc2-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: 30rem;
  }
}

.home-hero-slider .dc2-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: 34rem;
}

.home-hero-slider .dc2-hero__badge {
  align-self: flex-start;
  width: auto;
  max-width: 100%;
}

.home-hero-slider .dc2-hero__title,
.home-hero-slider .dc2-hero__sub,
.home-hero-slider .dc2-hero__price,
.home-hero-slider .dc2-hero__trust {
  width: 100%;
}

.home-hero-slider .dc2-hero__title {
  margin: 0;
  min-height: var(--home-hero-title-min);
  align-content: start;
}

.home-hero-slider .dc2-hero__title-main,
.home-hero-slider .dc2-hero__title-accent {
  white-space: normal;
  overflow-wrap: anywhere;
}

.home-hero-slider .dc2-hero__sub {
  min-height: 1.6em;
}

/* Slot de precio siempre presente (gratis deja el hueco) */
.home-hero-slider .dc2-hero__price {
  margin: 1.75rem 0 0;
  min-height: var(--home-hero-price-h);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-hero-slider .dc2-hero__price.is-empty {
  visibility: hidden;
}

.home-hero-slider .dc2-hero__cta {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.home-hero-slider .dc2-hero__trust {
  margin-top: auto;
  padding-top: 1.75rem;
}

/* Columna visual: sello + caja de imagen (4:3, la foto llena el recuadro) */
.home-hero-slider .dc2-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.25rem;
}

.home-hero-slider .dc2-hero__media {
  position: relative;
  width: 100%;
  max-width: 26rem;
  aspect-ratio: 4 / 3;
  height: auto;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, #2a2a2a, #151515);
  z-index: 1;
}

.home-hero-slider .dc2-hero__media img,
.home-hero-slider .dc2-hero__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-hero-slider .dc2-hero__placeholder {
  min-height: 0;
  border-radius: 0;
  background: transparent;
}

.home-hero-slider .dc2-hero__seal {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 7.25rem;
  height: 7.25rem;
  pointer-events: none;
}

@media (min-width: 960px) {
  .home-hero-slider .dc2-hero__seal {
    width: 8.25rem;
    height: 8.25rem;
    top: -0.15rem;
    right: -0.15rem;
  }
}

.home-hero-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.home-hero-slider__nav:hover {
  color: var(--svm-orange);
}

.home-hero-slider__nav svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

.home-hero-slider__nav--prev { left: 0.35rem; }
.home-hero-slider__nav--next { right: 0.35rem; }

@media (min-width: 960px) {
  .home-hero-slider__nav--prev { left: 0.75rem; }
  .home-hero-slider__nav--next { right: 0.75rem; }
}

.home-hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transform: translateX(-50%);
}

@media (min-width: 960px) {
  .home-hero-slider__dots {
    bottom: 1.4rem;
  }
}

.home-hero-slider__dot {
  width: 1.35rem;
  height: 0.42rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}

.home-hero-slider__dot.is-active {
  width: 1.55rem;
  background: var(--svm-orange);
  transform: none;
}

.home-hero-slider__dot:focus-visible,
.home-hero-slider__nav:focus-visible {
  outline: 2px solid var(--svm-orange);
  outline-offset: 3px;
}

@media (max-width: 959px) {
  .home-hero-slider {
    --home-hero-title-min: 4.4rem;
    --home-hero-price-h: 4rem;
  }

  .home-hero-slider .dc2-hero {
    padding-bottom: 4.5rem;
  }

  .home-hero-slider .dc2-hero__inner {
    min-height: 0;
  }

  .home-hero-slider .dc2-hero__trust {
    margin-top: 1.75rem;
  }
}

@media (max-width: 699px) {
  .home-hero-slider__nav {
    top: auto;
    bottom: 0.85rem;
    transform: none;
    width: 2.25rem;
    height: 2.25rem;
  }

  .home-hero-slider__nav--prev { left: 0.5rem; }
  .home-hero-slider__nav--next { right: 0.5rem; }
}

/* Trust */
.svm-trust {
  background: #fff;
  border-bottom: 1px solid var(--svm-line);
}

.svm-trust__inner {
  padding: 1.15rem 0 1.25rem;
}

.svm-trust__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.svm-trust__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  color: #111;
}

.svm-trust__item + .svm-trust__item {
  border-top: 1px solid #e5e7eb;
}

.svm-trust__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--svm-orange);
}

.svm-trust__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.svm-trust__text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.svm-trust__text strong {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
}

.svm-trust__text small {
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
  color: #374151;
}

.svm-trust__item--rating {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 0.85rem;
}

.svm-trust__rating-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.svm-trust__stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
}

.svm-trust__star {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.15rem;
  background: #00b67a;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
}

.svm-trust__tp {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  color: #374151;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
}

.svm-trust__tp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #191919;
  font-weight: 700;
}

.svm-trust__tp-logo svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #00b67a;
  display: block;
}

@media (min-width: 700px) and (max-width: 999px) {
  .svm-trust__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svm-trust__item {
    padding: 0.95rem 1rem;
  }

  .svm-trust__item + .svm-trust__item {
    border-top: 0;
  }

  .svm-trust__item:nth-child(odd) {
    border-right: 1px solid #e5e7eb;
  }

  .svm-trust__item:nth-child(n + 3) {
    border-top: 1px solid #e5e7eb;
  }

  .svm-trust__item--rating {
    grid-column: 1 / -1;
    border-right: 0;
    border-top: 1px solid #e5e7eb;
  }
}

@media (min-width: 1000px) {
  .svm-trust__inner {
    padding: 1.2rem 0 1.35rem;
  }

  .svm-trust__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
  }

  .svm-trust__item {
    padding: 0.35rem 0.95rem;
  }

  .svm-trust__item + .svm-trust__item {
    border-top: 0;
    border-left: 1px solid #e5e7eb;
  }

  .svm-trust__item--rating {
    padding: 0.2rem 0.75rem;
  }
}

/* Contests */
.svm-contests {
  padding: 3.25rem 0 2.75rem;
  background: #fff;
}

.svm-section-head--contests {
  align-items: center;
  margin-bottom: 1.35rem;
}

.svm-section-head--contests h2 {
  margin: 0;
}

.svm-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
}

.svm-filter {
  border: 1px solid var(--svm-line);
  background: #fff;
  color: #374151;
  border-radius: 9999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.svm-filter.is-active,
.svm-filter:hover {
  background: var(--svm-orange);
  border-color: var(--svm-orange);
  color: #fff;
}

.svm-contest-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 640px) {
  .svm-contest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .svm-contest-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.svm-contest-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid var(--svm-line);
  box-shadow: var(--svm-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.svm-contest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.svm-contest-card__media {
  position: relative;
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #111;
  text-decoration: none !important;
}

.svm-contest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svm-contest-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 45%),
    linear-gradient(145deg, #2a2a2a, #111);
}

.svm-contest-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--svm-orange);
}

.svm-contest-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1rem 1.05rem 1.05rem;
  min-height: 9.5rem;
}

.svm-contest-card__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
}

.svm-contest-card__title a {
  color: #111 !important;
  text-decoration: none !important;
}

.svm-contest-card__sub {
  margin: 0.4rem 0 0;
  color: #4b5563;
  font-size: 0.86rem;
  line-height: 1.35;
  min-height: 1.35em;
}

.svm-contest-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  background: transparent;
  border-top: 0;
}

.svm-contest-card__ends {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.svm-contest-card__ends-label {
  color: #9ca3af;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
}

.svm-contest-card__countdown {
  color: #111;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.svm-contest-card__price {
  display: grid;
  gap: 0.12rem;
  text-align: right;
  flex: 0 0 auto;
}

.svm-contest-card__price-from {
  color: var(--svm-orange);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}

.svm-contest-card__price-value {
  color: var(--svm-orange) !important;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.svm-contest-card__price-value .woocommerce-Price-amount {
  color: inherit !important;
}

/* Stats */
.svm-stats {
  background: #fff;
  color: #fff;
  padding: 1.5rem 0 2rem;
}

.svm-stats__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 1.35rem 0.75rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(ellipse 45% 90% at 92% 50%, rgba(255, 90, 31, 0.28), transparent 58%),
    linear-gradient(180deg, #1a1512 0%, #121212 45%, #0e0e0e 100%);
  overflow: hidden;
}

.svm-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  padding: 1rem 0.85rem;
}

.svm-stats__item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.svm-stats__item:nth-child(n + 3) {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.svm-stats__icon {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  color: var(--svm-orange);
  filter: drop-shadow(0 0 8px rgba(255, 90, 31, 0.55));
}

.svm-stats__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.svm-stats__item strong {
  display: block;
  color: #fff;
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.svm-stats__label {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.3;
}

@media (min-width: 860px) {
  .svm-stats {
    padding: 1.75rem 0 2.25rem;
  }

  .svm-stats__panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 1.65rem 0.5rem;
  }

  .svm-stats__item {
    padding: 0.85rem 1rem;
  }

  .svm-stats__item:nth-child(odd),
  .svm-stats__item:nth-child(n + 3) {
    border-right: 0;
    border-top: 0;
  }

  .svm-stats__item + .svm-stats__item {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }
}

/* Steps */
.svm-steps {
  padding: 3.25rem 0 3.5rem;
  background: #fff;
}

.svm-section-head--steps {
  margin-bottom: 2rem;
}

.svm-section-head--steps h2 {
  margin: 0;
}

.svm-steps__list {
  display: grid;
  gap: 1.75rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) and (max-width: 899px) {
  .svm-steps__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .svm-steps__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0 1.5rem;
  }
}

.svm-steps__item {
  position: relative;
  text-align: center;
  padding: 0.25rem 0.35rem 0;
}

.svm-steps__visual {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
}

.svm-steps__icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--svm-orange);
  color: #fff;
}

.svm-steps__icon svg {
  width: 2.25rem;
  height: 2.25rem;
  display: block;
}

.svm-steps__num {
  position: absolute;
  top: -0.15rem;
  left: -0.15rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  margin: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1;
}

.svm-steps__item strong {
  display: block;
  margin: 0 0 0.4rem;
  color: #111;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
}

.svm-steps__item p {
  margin: 0 auto;
  max-width: 14rem;
  color: #374151;
  font-size: 0.84rem;
  line-height: 1.45;
}

/* Conectores con diamante (solo desktop 5 cols) */
@media (min-width: 900px) {
  .svm-steps__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.5rem;
    left: calc(50% + 2.65rem);
    width: calc(100% - 5.3rem + 1.5rem);
    height: 1px;
    background: #d1d5db;
    pointer-events: none;
  }

  .svm-steps__item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: calc(2.5rem - 3.5px);
    left: calc(100% - 0.2rem);
    z-index: 1;
    width: 7px;
    height: 7px;
    background: var(--svm-orange);
    transform: rotate(45deg);
    pointer-events: none;
  }
}

/* Banners */
.svm-banners {
  --banner-promo: #ff5a1f;
  --banner-free: #7c3aed;
  --banner-shop: #15803d;
  padding: 0.5rem 0 3rem;
  background: #fff;
}

.svm-banners__grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 860px) {
  .svm-banners__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.svm-banner {
  --banner-accent: var(--banner-promo);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  min-height: 12.5rem;
  border-radius: 1rem;
  padding: 1.35rem 1.25rem 1.4rem 1.4rem;
  color: #111;
  background-color: #ffe8dc;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.55), transparent 40%),
    radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.35), transparent 42%);
}

.svm-banner--promo {
  --banner-accent: var(--banner-promo);
  background-color: #ffe8dc;
}

.svm-banner--free {
  --banner-accent: var(--banner-free);
  background-color: #ede4ff;
}

.svm-banner--shop {
  --banner-accent: var(--banner-shop);
  background-color: #dff5e6;
}

.svm-banner__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: 15.5rem;
}

.svm-banner__eyebrow {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--banner-accent);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.svm-banner__copy h3 {
  margin: 0;
  color: #111;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
}

.svm-banner__copy p {
  margin: 0.45rem 0 0;
  color: #374151;
  font-size: 0.86rem;
  line-height: 1.4;
}

.svm-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border: 1.5px solid var(--banner-accent);
  border-radius: 0.4rem;
  background: #fff;
  color: var(--banner-accent) !important;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  max-width: 100%;
}

.svm-banner__cta:hover {
  background: var(--banner-accent);
  color: #fff !important;
}

.svm-banner__art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 7.25rem;
  height: 7.25rem;
  flex: 0 0 auto;
  pointer-events: none;
}

.svm-banner__svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(15, 23, 42, 0.12));
}

@media (max-width: 859px) {
  .svm-banner {
    min-height: 0;
    padding: 1.25rem;
  }

  .svm-banner__art {
    width: 6.25rem;
    height: 6.25rem;
  }
}

/* Winners */
.svm-winners {
  padding: 3.25rem 0;
  background: #fff;
}

.svm-winners__layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .svm-winners__layout {
    grid-template-columns: 1.7fr 0.9fr;
    align-items: stretch;
  }
}

.svm-winners__quotes {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .svm-winners__quotes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.svm-quote {
  padding: 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--svm-line);
  background: #fafafa;
}

.svm-quote__text {
  margin: 0;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: italic;
}

.svm-quote__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.svm-quote__meta strong {
  display: block;
  color: var(--svm-ink);
  font-size: 0.92rem;
}

.svm-quote__meta small {
  color: var(--svm-muted);
  font-size: 0.78rem;
}

.svm-winners__cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.1rem;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)),
    linear-gradient(135deg, #2a2a2a, #111);
  color: #fff;
}

.svm-winners__cta-panel p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

/* FAQ — dos columnas (intro + lista) */
.svm-faq {
  padding: 3.5rem 0 3rem;
  background: #fff;
}

.svm-faq__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .svm-faq__layout {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.8fr);
    gap: 3rem;
  }
}

.svm-faq__intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--svm-ink);
}

.svm-faq__intro p {
  margin: 1.1rem 0 0;
  max-width: 22rem;
  color: var(--svm-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.svm-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.svm-faq__item {
  border: 1px solid var(--svm-line);
  border-radius: 0.95rem;
  background: #fff;
  padding: 0.2rem 0.35rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.svm-faq__item[open] {
  border-color: var(--svm-orange-soft, #fdba74);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.svm-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 0.85rem;
}

.svm-faq__item summary::-webkit-details-marker { display: none; }

.svm-faq__q {
  font-weight: 700;
  color: var(--svm-ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.svm-faq__icon {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1.5px solid var(--svm-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.svm-faq__icon::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--svm-ink);
  border-bottom: 2px solid var(--svm-ink);
  transform: rotate(-45deg);
  margin-left: -1px;
}

.svm-faq__item[open] .svm-faq__icon {
  background: var(--svm-orange);
  border-color: var(--svm-orange);
  transform: rotate(90deg);
}

.svm-faq__item[open] .svm-faq__icon::before {
  border-color: #fff;
}

.svm-faq__item p {
  margin: 0;
  padding: 0 0.85rem 1rem;
  color: var(--svm-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Newsletter */
.svm-newsletter {
  padding: 0 0 3rem;
  background: #fff;
}

.svm-newsletter__card {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1.15rem;
  background: var(--svm-charcoal);
  color: #fff;
}

@media (min-width: 860px) {
  .svm-newsletter__card {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 1.75rem 1.8rem;
  }
}

.svm-newsletter__copy {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.svm-newsletter__icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.7rem;
  background: var(--svm-orange);
  font-size: 1.1rem;
}

.svm-newsletter__copy h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.svm-newsletter__copy p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.svm-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.svm-newsletter__form input {
  flex: 1 1 12rem;
  min-height: 2.85rem;
  border: 0;
  border-radius: 0.7rem;
  padding: 0.7rem 0.9rem;
  background: #fff;
  color: #111;
}

/* Footer */
.svm-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.7);
  border-top: 0;
}

.svm-footer__grid {
  display: grid;
  gap: 1.75rem;
  padding: 2.75rem 0 2rem;
}

@media (min-width: 960px) {
  .svm-footer__grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr;
  }
}

.svm-footer__logo {
  margin: 0;
  color: var(--svm-orange);
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  line-height: 0;
}

/* Más específico que `.woocommerce-page img` (WC layout) para no inflar el logo en cuenta/carrito/checkout. */
.svm-footer .svm-footer__logo-img,
body.woocommerce-page .svm-footer .svm-footer__logo-img {
  display: block;
  height: 5.25rem;
  width: auto;
  max-width: 12rem;
  max-height: 5.25rem;
  object-fit: contain;
}

.svm-footer__logo span { color: var(--svm-orange); }

.svm-footer__tag {
  margin: 0.15rem 0 0.75rem !important;
  color: var(--svm-orange) !important;
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.svm-footer nav,
.svm-footer__support {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.svm-footer strong {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.svm-footer a,
.svm-footer__support-row {
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  line-height: 1.35;
}

.svm-footer a:hover,
a.svm-footer__support-row:hover {
  color: var(--svm-orange) !important;
}

.svm-footer__support-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.svm-footer__support-icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 1.05rem;
  height: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
}

.svm-footer__support-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

a.svm-footer__support-row:hover .svm-footer__support-icon {
  color: var(--svm-orange);
}

.svm-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.svm-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.svm-footer__bottom-inner p { margin: 0; }

/* Motor de promociones — checkout */
.sorteo-promo-box {
  margin: 0 0 1.25rem;
  padding: 1.1rem 1.2rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 90, 31, 0.35);
  background: rgba(255, 90, 31, 0.08);
  color: #fff;
}

.sorteo-promo-box h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #fff;
}

.sorteo-promo-box__hint {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.sorteo-promo-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sorteo-promo-box__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.7rem;
  background: rgba(0, 0, 0, 0.25);
}

.sorteo-promo-box__list strong {
  display: block;
  color: var(--svm-orange, #ff5a1f);
}

.sorteo-promo-box__list code {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.sorteo-promo-box__list small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.sorteo-promo-box .button,
.sorteo-promo-apply {
  background: var(--svm-orange, #ff5a1f) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 0.55rem !important;
  font-weight: 700 !important;
  cursor: pointer;
}

.sorteo-promo-box__msg {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: #86efac;
}

/* Comprar pages keep dark chrome; tone brand accents to orange */
.pack-showcase-cta,
.sorteo-hero-cta,
#place_order {
  background: var(--svm-orange) !important;
}

.pack-showcase-card.is-featured,
.pack-showcase-card.is-selected,
.pack-showcase-x1.is-selected {
  border-color: var(--svm-orange);
}

.sorteo-progress {
  --progress-accent: var(--svm-orange);
}

.site-brand-name .text-amber-400,
.site-brand-name span,
.svm-brand__name span {
  color: var(--svm-orange);
}

.text-amber-400 { color: var(--svm-orange) !important; }
.bg-amber-400 { background-color: var(--svm-orange) !important; }
.hover\:bg-amber-300:hover { background-color: var(--svm-orange-hover) !important; }
.ring-amber-400 { --tw-ring-color: var(--svm-orange); }
.focus\:ring-amber-400:focus { --tw-ring-color: var(--svm-orange); }
.focus\:border-amber-400:focus { border-color: var(--svm-orange); }
