/* ============================================================
   product.css — BodyFusion X
   Estilos específicos de páginas de producto (SCR landing)
   ============================================================ */

/* ===========================
   NAVBAR CONTRAST FIX (fondo claro en SCR)
=========================== */
[data-theme="light"] .page-template-page-sleep-calm-relax .navbar:not(.scrolled) .nav-links > li > a { color: rgba(0,0,0,0.6); }
[data-theme="light"] .page-template-page-sleep-calm-relax .navbar:not(.scrolled) .nav-links > li > a:hover { color: #0a0a0a; }
[data-theme="light"] .page-template-page-sleep-calm-relax .navbar:not(.scrolled) .menu-btn { color: rgba(0,0,0,0.7); }

/* ===========================
   HERO DE PRODUCTO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(204,17,51,0.22) 0%,
    rgba(123,47,212,0.18) 50%,
    rgba(245,190,28,0.15) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}
.hero-slash {
  position: absolute;
  top: -60px; bottom: -60px;
  right: 4%;
  width: 48%;
  background: linear-gradient(180deg, #CC1133 0%, #7B2FD4 50%, #F5BE1C 100%);
  opacity: 0.18;
  clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--primary); }
.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.hero-stat span {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(204,17,51,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(204,17,51,0.12);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.hero-badges {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.hero-badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,26,26,0.9);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.hero-badge-pill i { font-size: 15px; }

/* Pulse animation for hero CTA */
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,17,51,0.5); }
  60% { box-shadow: 0 0 0 14px rgba(204,17,51,0); }
}

/* ===========================
   BENEFITS
=========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.benefit-card:hover {
  border-color: var(--border-primary);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-glow);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   ABOUT / BRAND STORY
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}
.about-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.about-check i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.about-image-wrap { position: relative; }
.about-image {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: brightness(0.9);
}
.about-image-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(10px);
}
.about-image-card .icon {
  width: 44px; height: 44px;
  background: var(--primary-glow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 18px;
}
.about-image-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}
.about-image-card span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===========================
   INGREDIENTS SPOTLIGHT
=========================== */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.spotlight-image { position: relative; }
.spotlight-image img {
  border-radius: 20px;
  width: 100%;
  object-fit: contain;
}
.spotlight-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(204,17,51,0.1) 0%, transparent 70%);
  border-radius: 20px;
  pointer-events: none;
}
.ingredients-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.ingredient-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ingredient-item:hover {
  border-color: var(--border-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateX(3px);
}
.ingredient-dot {
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.ingredient-name {
  font-weight: 600;
  font-size: 16px;
  flex: 1;
}
.ingredient-dose {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  margin-left: auto;
}

/* ===========================
   COMPARISON TABLE
=========================== */
.comparison-wrap { margin-top: 56px; overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table th.our { background: var(--primary); color: #fff; border-radius: 12px 12px 0 0; }
.comparison-table th.other { background: rgba(255,255,255,0.04); color: var(--text-muted); }
.comparison-table td {
  padding: 14px 20px;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.comparison-table .our-col { background: var(--primary-glow); font-weight: 600; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .yes { color: var(--primary); font-size: 18px; }
.comparison-table .no { color: rgba(255,255,255,0.2); font-size: 18px; }
.comparison-table .bad { color: var(--accent); font-size: 15px; font-weight: 600; }

/* ===========================
   PRICING
=========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(204,17,51,0.08) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 40px rgba(204,17,51,0.1);
}
.pricing-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #0F0F0F;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
}
.pricing-qty {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 1.4rem;
  vertical-align: super;
  line-height: 1;
}
.pricing-per {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pricing-save {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-muted);
}
.pricing-feature i { color: var(--primary); font-size: 15px; }
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

@keyframes pulse-cta-price {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,17,51,0.5); }
  60% { box-shadow: 0 0 0 14px rgba(204,17,51,0); }
}
.pricing-card.popular .btn {
  font-size: 17px !important;
  padding: 20px 36px !important;
  animation: pulse-cta-price 2.2s infinite;
}

/* ===========================
   TESTIMONIALS
=========================== */
.swiper-testimonials {
  padding-bottom: 60px !important;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  height: auto;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars i { color: #f5c842; font-size: 16px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-text::before { content: '"'; color: var(--primary); font-size: 1.4em; }
.testimonial-text::after { content: '"'; color: var(--primary); font-size: 1.4em; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-glow);
  border: 2px solid var(--border-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
.testimonial-meta {
  font-size: 14px;
  color: var(--text-muted);
}
.swiper-pagination-bullet {
  background: var(--border) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ===========================
   FAQ
=========================== */
.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-primary); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  user-select: none;
  transition: color 0.2s;
}
.faq-item.open .faq-question { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===========================
   PRODUCTS GRID (catalog)
=========================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.product-card:hover {
  border-color: var(--border-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-primary);
}
.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.product-card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  background: #111;
}
.product-card-body { padding: 20px; }
.product-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.product-stars i { color: #f5c842; font-size: 15px; }
.product-stars span {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}
.product-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}
.product-card-coming {
  opacity: 0.6;
  pointer-events: none;
}
.product-card-coming .product-card-image {
  filter: grayscale(0.5) brightness(0.7);
}

/* ===========================
   COUNTDOWN
=========================== */
.countdown-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.countdown-timer { display: flex; gap: 8px; }
.cd-block {
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  min-width: 64px;
  text-align: center;
  line-height: 1;
}
.cd-label { font-size: 10px; letter-spacing: 0.1em; opacity: 0.7; margin-top: 4px; }
.cd-sep {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  align-self: flex-start;
  padding-top: 12px;
}

/* ===========================
   RESPONSIVE (product-specific)
=========================== */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badges { display: none; }
  .hero-image-wrap { order: -1; }
  .hero-image { max-width: 100%; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { order: -1; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .products-grid { grid-template-columns: 1fr; max-width: 340px; }
  .about-image-card { left: 10px; bottom: 10px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
}

/* ============================================================
   LIGHT THEME OVERRIDES — product.css
   Negro predominante en elementos: mg badges, popular tag,
   step circles, comparison highlights
   ============================================================ */

/* ── Todos los halos/glows rosados → grises en light theme ── */

/* Halo detrás de imagen producto */
[data-theme="light"] .hero-image-glow {
  background: radial-gradient(circle, rgba(0,0,0,0.08) 0%, transparent 70%);
}

/* Sombra de la imagen producto (box-shadow con tinte rojo) */
[data-theme="light"] .hero-image {
  box-shadow: 0 24px 80px rgba(0,0,0,0.15), 0 0 60px rgba(0,0,0,0.06);
}

/* Glow en sección ingredientes/spotlight */
[data-theme="light"] .spotlight-glow {
  background: radial-gradient(circle at center, rgba(0,0,0,0.04) 0%, transparent 70%);
}

/* Pricing card popular: sin resplandor rojo */
[data-theme="light"] .pricing-card.popular {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

/* Pulso del botón CTA hero → sin rojo */
[data-theme="light"] .btn-primary {
  animation: none !important;
}

/* Hero badge pills → fondo negro sólido, texto BLANCO */
[data-theme="light"] .hero-badge-pill {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #ffffff;
}
[data-theme="light"] .hero-badge-pill i { color: #ffffff; }

/* Hero: eliminar el gradiente rosado/púrpura → gris neutro con fade */
[data-theme="light"] .hero::before {
  background: linear-gradient(135deg,
    rgba(0,0,0,0.04) 0%,
    rgba(0,0,0,0.07) 50%,
    rgba(0,0,0,0.03) 100%);
}
[data-theme="light"] .hero-slash {
  background: linear-gradient(180deg,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.06) 50%,
    rgba(0,0,0,0.04) 100%);
  opacity: 0.6;
}

/* Ingredient dose badges → NEGRO */
[data-theme="light"] .ingredient-dose {
  background: #0a0a0a;
  color: #ffffff;
}

/* Ingredient item rows → fondo blanco con borde negro suave */
[data-theme="light"] .ingredient-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
[data-theme="light"] .ingredient-item:hover {
  border-color: #0a0a0a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
[data-theme="light"] .ingredient-dot { background: #0a0a0a; }

/* Pricing cards → blancas con borde negro suave */
[data-theme="light"] .pricing-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

/* Popular card → borde NEGRO sólido, sin tinte rojo */
[data-theme="light"] .pricing-card.popular {
  border-color: #0a0a0a;
  background: #ffffff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  background-image: none; /* elimina el gradient rojizo */
}

/* "El más elegido" tag → NEGRO */
[data-theme="light"] .pricing-popular-tag {
  background: #0a0a0a;
  color: #ffffff;
}

/* Comparison table "no" column → gris claro */
[data-theme="light"] .comparison-table .no { color: rgba(0,0,0,0.2); }
[data-theme="light"] .comparison-table .other {
  background: rgba(0,0,0,0.03);
  color: rgba(0,0,0,0.5);
}

/* Benefit icon boxes → negro */
[data-theme="light"] .benefit-icon {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #ffffff;
}

/* Benefit cards → blancas */
[data-theme="light"] .benefit-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .benefit-card:hover { border-color: #0a0a0a; }

/* Savings badge en pricing → negro */
[data-theme="light"] .pricing-savings {
  background: #0a0a0a;
  color: #ffffff;
}

/* ── COUNTDOWN: colores hardcodeados en blanco → oscuros en light theme ── */
/* cd-block tiene color:#fff y background:rgba(255,255,255,0.2) → invisible sobre fondo claro */
[data-theme="light"] .cd-block {
  background: rgba(0, 0, 0, 0.1);
  color: #0a0a0a;
}
[data-theme="light"] .cd-sep {
  color: rgba(0, 0, 0, 0.4);
}
[data-theme="light"] .countdown-row {
  color: #0a0a0a;
}
