/* ====================================================
   Divine Path – Landing Page V3 (White Edition)
   Design: Clean white + gold + saffron warmth + mandala pattern
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Noto+Sans+Devanagari:wght@400;600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --cream: #fffdf7;
  --light: #fef9ee;
  --gold: #e89c10;
  --gold-bright: #f9bc2f;
  --gold-pale: #fef3d0;
  --saffron: #e07020;
  --navy: #0f1f5c;
  --navy-soft: #1a2e7a;
  --red: #c0392b;
  --brown: #7c4a0a;
  --text: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888aa;
  --border: #ede8d8;
  --shadow-sm: 0 2px 12px rgba(200, 160, 50, 0.10);
  --shadow-md: 0 8px 40px rgba(200, 160, 50, 0.14);
  --shadow-lg: 0 20px 60px rgba(200, 160, 50, 0.18);
  --font-en: 'Poppins', sans-serif;
  --font-mr: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --pattern-url: url('../images/mandala-pattern.png');
  --r: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-en);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 36px);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Pattern helper ───────────────────────────────── */
.has-pattern {
  position: relative;
}

.has-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--pattern-url);
  background-size: 380px;
  background-repeat: repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.has-pattern>* {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════
   TOP URGENCY BAR
═══════════════════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 11px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.urgency-bar .ub-price {
  background: var(--gold-bright);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
}

.ub-fire {
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar-w {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 16px clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
  gap: 16px;
}

.nav-brand-w {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}

.nav-brand-w span {
  color: var(--gold);
}

.nav-tagline {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
  display: block;
  font-family: var(--font-mr);
}

.nav-cta-w {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(249, 188, 47, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  animation: btnPulse 2.5s ease-in-out infinite;
}

.nav-cta-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 188, 47, 0.5);
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(249, 188, 47, 0.4);
  }

  50% {
    box-shadow: 0 4px 32px rgba(249, 188, 47, 0.7), 0 0 0 8px rgba(249, 188, 47, 0.08);
  }
}

/* ═══════════════════════════════════════════════════
   COUNTDOWN STRIP
═══════════════════════════════════════════════════ */
.countdown-strip {
  background: var(--gold-pale);
  border-bottom: 1px solid #f0d98a;
  padding: 14px 20px;
  text-align: center;
}

.cs-label {
  font-family: var(--font-mr);
  font-size: 14px;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 10px;
}

.cs-label strong {
  color: var(--navy);
}

.cs-timer {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cs-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 14px;
  min-width: 58px;
}

.cs-num {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cs-lab {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.cs-sep {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

/* ═══════════════════════════════════════════════════
   HERO V2 — PREMIUM DARK DESIGN
═══════════════════════════════════════════════════ */
.hero-v2 {
  background-color:#0f1f5c;
  padding: clamp(48px, 6vw, 80px) 0 clamp(52px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.h2-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.h2-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 188, 47, 0.12) 0%, transparent 70%);
  top: -120px;
  right: -80px;
}

.h2-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.10) 0%, transparent 70%);
  bottom: -100px;
  left: -60px;
}

.h2-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* LIVE badge */
.h2-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 28px;
}

.h2-live-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.h2-live-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: dotPop 1.2s ease-in-out infinite;
}

.h2-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mr);
  letter-spacing: 0.3px;
}

/* Headline */
.h2-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  max-width: 820px;
  margin: 0 auto 10px;
}

.h2-title-red {
  display: block;
  background: linear-gradient(90deg, #f87171, #ef4444, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h2-title-sub {
  font-family: var(--font-serif);
  font-size: clamp(18px, 3vw, 28px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.h2-gold-chakra {
  font-style: italic;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #e89c10);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h2-desc {
  font-family: var(--font-mr);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto 40px;
}

.h2-desc strong {
  color: rgba(255, 255, 255, 0.9);
}

/* Image Frame */
.h2-img-frame {
  position: relative;
  max-width: 800px;
  margin: 0 auto 36px;
  border-radius: 24px;
  overflow: hidden;
}

.h2-img-glow {
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, rgba(249, 188, 47, 0.5), rgba(26, 46, 122, 0.3), rgba(249, 188, 47, 0.4));
  border-radius: 26px;
  z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.h2-img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  max-height: 460px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
}

.h2-img-shimmer {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: skewX(-15deg);
  animation: imgShimmer 4s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes imgShimmer {
  0% {
    left: -60%
  }

  60%,
  100% {
    left: 130%
  }
}

.h2-img-tag {
  position: absolute;
  z-index: 3;
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
}

.h2-img-tag-tl {
  top: 16px;
  left: 16px;
  background: rgba(192, 57, 43, 0.88);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.h2-img-tag-br {
  bottom: 16px;
  right: 16px;
  background: rgba(15, 31, 92, 0.85);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.h2-red-dot {
  width: 7px;
  height: 7px;
  background: #ff4444;
  border-radius: 50%;
  animation: dotPop 1.2s ease-in-out infinite;
}

/* Info Chips */
.h2-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 860px;
  margin: 0 auto 32px;
}

.h2-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, border-color 0.2s;
}

.h2-chip:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(249, 188, 47, 0.4);
}

.h2-chip-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.h2-chip-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  display: block;
}

.h2-chip-val {
  font-family: var(--font-mr);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: block;
}

/* CTA Block */
.h2-cta-block {
  max-width: 600px;
  margin: 0 auto 28px;
}

.h2-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.h2-price-strike {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.h2-price-now {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
}

.h2-price-save {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.h2-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #e89c10);
  color: var(--navy);
  text-decoration: none;
  border-radius: 50px;
  padding: 18px 40px 14px;
  box-shadow: 0 8px 32px rgba(249, 188, 47, 0.45), 0 0 0 0 rgba(249, 188, 47, 0);
  animation: btnGlow 2.5s ease-in-out infinite;
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
}

.h2-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -70%;
  width: 35%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  animation: shimW 3.5s ease-in-out infinite;
}

@keyframes btnGlow {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(249, 188, 47, 0.45);
  }

  50% {
    box-shadow: 0 8px 48px rgba(249, 188, 47, 0.7), 0 0 0 10px rgba(249, 188, 47, 0.08);
  }
}

.h2-btn:hover {
  transform: translateY(-3px);
}

.h2-btn-main {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-en);
}

.h2-btn-sub {
  font-size: 11px;
  font-weight: 500;
  color: rgba(15, 31, 92, 0.65);
}

/* Social Proof */
.h2-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 10px 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.h2-avatars {
  display: flex;
}

.h2-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-left: -8px;

  first-of-type {
    margin-left: 0;
  }

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color:#fff;
  flex-shrink: 0;
}

.h2-av:first-child {
  margin-left: 0;
}

.h2-proof-text {
  text-align: left;
}

.h2-proof-count {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.h2-proof-stars {
  font-size: 13px;
  color: var(--gold-bright);
}

.h2-proof-stars span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 4px;
}

/* ═══════════════════════════════════════════════════
   TRAINER SECTION V2 — DARK PREMIUM
═══════════════════════════════════════════════════ */
.trainer-section {
  background: linear-gradient(160deg, #0b1638 0%, #0f1f5c 50%, #1a2e7a 100%);
  position: relative;
  overflow: hidden;
}

.trainer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--pattern-url);
  background-size: 380px;
  opacity: 0.04;
  pointer-events: none;
}

.trainer-section .sec-eyebrow {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.trainer-section .sec-title-w {
  color: #fff;
}

.trainer-section .sec-desc-w {
  color: rgba(255, 255, 255, 0.55);
}

/* Trainer premium card */
.trainer-card-premium {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
  z-index: 1;
}

/* Photo Side */
.tcp-photo-wrap {
  position: relative;
  background: linear-gradient(180deg, #0d1d5e 0%, #1a2e7a 100%);
  min-height: 560px;
  overflow: hidden;
}

.tcp-photo {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.trainer-card-premium:hover .tcp-photo {
  transform: scale(1.03);
}

.tcp-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 10px 16px;
  text-align: center;
  z-index: 2;
}

.tcp-badge-tl {
  top: 20px;
  left: 16px;
}

.tcp-badge-br {
  bottom: 100px;
  right: 16px;
}

.tcpb-num {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.tcpb-lab {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.tcp-badge-tl .tcpb-num {
  color: var(--gold-bright);
}

.tcp-badge-br .tcpb-num {
  color: #f87171;
}

.tcp-degree-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(10, 20, 70, 0.95) 0%, transparent 100%);
  padding: 36px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.tcp-degree-tag {
  background: rgba(249, 188, 47, 0.12);
  border: 1px solid rgba(249, 188, 47, 0.35);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}

/* Content Side */
.tcp-content {
  padding: 40px 40px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tcp-bio-box {
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--gold-bright);
  border-radius: 0 14px 14px 0;
  padding: 18px 20px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tcp-bio-text {
  font-family: var(--font-mr);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

.tcp-bio-text strong {
  color: rgba(255, 255, 255, 0.95);
}

.tcp-cred-heading {
  font-family: var(--font-mr);
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tcp-creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tcp-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.tcp-cred-item:hover {
  background: rgba(249, 188, 47, 0.06);
  border-color: rgba(249, 188, 47, 0.3);
  transform: translateY(-2px);
}

.tcp-cred-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.3;
}

.tcp-cred-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
  font-family: var(--font-mr);
}

.tcp-cred-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mr);
}




.hw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid #f0d060;
  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hw-badge .live-dot-w {
  width: 8px;
  height: 8px;
  background: #e44c3c;
  border-radius: 50%;
  animation: dotPop 1.5s ease-in-out infinite;
}

@keyframes dotPop {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}

.hw-h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.13;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.hw-h1 .italic-gold {
  font-style: italic;
  color: var(--gold);
}

.hw-h1 .block-red {
  display: block;
  color: var(--red);
}

.hw-sub {
  font-family: var(--font-mr);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 520px;
}

.hw-sub strong {
  color: var(--navy);
  font-weight: 700;
}

/* Workshop quick info */
.hw-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.hw-info-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hw-ic-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.hw-ic-img-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid #f0d060;
}

.hw-ic-key {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.hw-ic-val {
  font-family: var(--font-mr);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

/* Hero CTA */
.hw-cta-wrap {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-w-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy);
  font-weight: 800;
  font-size: 17px;
  padding: 17px 36px 13px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(249, 188, 47, 0.4);
  position: relative;
  overflow: hidden;
  font-family: var(--font-en);
  text-decoration: none;
}

.btn-w-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -70%;
  width: 35%;
  height: 200%;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-20deg);
  animation: shimW 3.5s ease-in-out infinite;
}

@keyframes shimW {
  0% {
    left: -70%;
  }

  55%,
  100% {
    left: 110%;
  }
}

.btn-w-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(249, 188, 47, 0.55);
}

.btn-sub-w {
  font-size: 11px;
  font-weight: 500;
  color: rgba(15, 31, 92, 0.6);
}

.price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ps-original {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}

.ps-now {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.ps-off {
  font-size: 11px;
  font-weight: 700;
  background: var(--red);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 4px;
}

/* Right: Instructor photo card */
.hw-photo-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.hw-photo {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.photo-badge-1,
.photo-badge-2 {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  font-family: var(--font-en);
  z-index: 2;
}

.photo-badge-1 {
  bottom: 28px;
  left: -22px;
}

.photo-badge-2 {
  top: 24px;
  right: -22px;
}

.pb-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.pb-lab {
  font-size: 11px;
  color: var(--text-light);
}

.photo-badge-1 .pb-num {
  color: var(--gold);
}

.photo-badge-2 .pb-num {
  color: var(--red);
}

.photo-corner-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(15, 31, 92, 0.25);
}

/* Proof strip below hero */
.proof-strip-w {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.paw-avatars {
  display: flex;
}

.paw-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  margin-left: -8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.paw-avatar:first-child {
  margin-left: 0;
}

.a1 {
  background: #e11d48;
}

.a2 {
  background: #0284c7;
}

.a3 {
  background: #16a34a;
}

.a4 {
  background: #9333ea;
}

.a5 {
  background: #c2410c;
}

.paw-text {
  flex: 1;
}

.paw-count {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.paw-stars {
  font-size: 13px;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════════ */
.section-w {
  padding: clamp(56px, 7vw, 90px) 0;
}

.section-light {
  background: var(--light);
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  background: var(--navy);
}

.sec-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold-bright);
  padding-bottom: 4px;
  margin-bottom: 14px;
}

.sec-title-w {
  font-family: var(--font-serif);
  font-size: clamp(25px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.sec-title-w .red {
  color: var(--red);
}

.sec-title-w .gold {
  color: var(--gold);
}

.sec-desc-w {
  font-family: var(--font-mr);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 650px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   IS THIS YOU — CHECKLIST
═══════════════════════════════════════════════════ */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.check-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, transform 0.25s;
}

.check-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.check-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-card .cc-emoji {
  font-size: 30px;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}

.cc-text {
  font-family: var(--font-mr);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════════
   WORKSHOP LIVE IMAGE SECTION
═══════════════════════════════════════════════════ */
.live-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.live-img-wrap {
  position: relative;
}

.live-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.live-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.lib-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
}

.lib-lab {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.benefits-ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: border-color 0.25s, transform 0.25s;
}

.benefit-row:hover {
  border-color: var(--gold-bright);
  transform: translateX(4px);
}

.br-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.br-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.br-desc {
  font-family: var(--font-mr);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   3-DAY CURRICULUM
═══════════════════════════════════════════════════ */
.day-cards-w {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.day-card-w {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.day-card-w:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.dcw-header {
  background: var(--navy);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dcw-day-num {
  width: 48px;
  height: 48px;
  background: var(--gold-bright);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  gap: 0;
  flex-shrink: 0;
}

.dcw-day-num .big {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.dcw-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.dcw-body {
  padding: 18px 20px;
}

.dcw-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.dcw-points li {
  font-family: var(--font-mr);
  font-size: 13px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.dcw-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testi-grid-w {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.testi-card-w {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.testi-card-w:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-bright);
}

.tq-mark {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--gold-pale);
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 18px;
  font-style: italic;
}

.tcw-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 10px;
}

.tcw-text {
  font-family: var(--font-mr);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.tcw-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.tcw-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.tcw-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.tcw-loc {
  font-size: 12px;
  color: var(--text-light);
}

.tcw-verified {
  margin-left: auto;
  font-size: 10px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #86efac;
  padding: 3px 8px;
  border-radius: 50px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   FINAL CTA — NAVY BAND
═══════════════════════════════════════════════════ */
.final-cta-w {
  text-align: center;
}

.fcw-card {
  background: var(--navy);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

.fcw-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--pattern-url);
  background-size: 300px;
  opacity: 0.06;
}

.fcw-inner {
  position: relative;
  z-index: 1;
}

.fcw-eyebrow {
  display: inline-block;
  background: rgba(249, 188, 47, 0.15);
  border: 1px solid rgba(249, 188, 47, 0.3);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.fcw-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}

.fcw-title .gold {
  color: var(--gold-bright);
}

.fcw-sub {
  font-family: var(--font-mr);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.fcw-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.fcw-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mr);
}

.fcw-chip .chip-icon {
  font-size: 16px;
}

.fcw-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.fcw-orig {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.fcw-now {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
}

.fcw-save {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.fcw-guarantee {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer-w {
  background: var(--navy);
  padding: 32px 0 20px;
  text-align: center;
}

.fw-brand {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.fw-brand span {
  color: var(--gold-bright);
}

.fw-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}

.fw-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.fw-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.fw-links a:hover {
  color: var(--gold-bright);
}

.fw-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════
   HERO TOP BANNER
═══════════════════════════════════════════════════ */
.hero-top-banner {
  width: 100%;
  overflow: hidden;
  max-height: 520px;
  background: var(--navy);
}

.hero-top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  max-height: 520px;
}

/* ═══════════════════════════════════════════════════
   PHOTO TESTIMONIALS ROW
═══════════════════════════════════════════════════ */
.photo-testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  margin-top: 36px;
}

.photo-testi-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold-pale);
  aspect-ratio: 3/4;
}

.photo-testi-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-testi-card:hover img {
  transform: scale(1.04);
}

.ptc-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(15, 31, 92, 0.85) 0%, transparent 100%);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  padding: 24px 12px 12px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════
   PREMIUM TRAINER CARD
═══════════════════════════════════════════════════ */
.trainer-section {
  background: #2d1a00;
}

.trainer-card-premium {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}

/* Photo Side */
.tcp-photo-wrap {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  min-height: 520px;
}

.tcp-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.tcp-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 2;
}

.tcp-badge-tl {
  top: 20px;
  left: -12px;
}

.tcp-badge-br {
  bottom: 80px;
  right: -12px;
}

.tcpb-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.tcpb-lab {
  font-size: 10px;
  color: var(--text-light);
}

.tcp-badge-tl .tcpb-num {
  color: var(--gold);
}

.tcp-badge-br .tcpb-num {
  color: var(--red);
}

.tcp-degree-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(15, 31, 92, 0.92) 0%, transparent 100%);
  padding: 32px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.tcp-degree-tag {
  background: rgba(249, 188, 47, 0.15);
  border: 1px solid rgba(249, 188, 47, 0.4);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* Content Side */
.tcp-content {
  padding: 36px 36px 36px 0;
}

.tcp-bio-box {
  background: var(--light);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.tcp-bio-text {
  font-family: var(--font-mr);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}

.tcp-bio-text strong {
  color: var(--navy);
}

.tcp-cred-heading {
  font-family: var(--font-mr);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-pale);
}

.tcp-creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tcp-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.tcp-cred-item:hover {
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.tcp-cred-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.2;
}

.tcp-cred-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  font-family: var(--font-mr);
}

.tcp-cred-sub {
  font-size: 11px;
  color: var(--text-light);
  font-family: var(--font-mr);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Hero V2 */
  .h2-chips {
    grid-template-columns: repeat(2, 1fr);
  }

  .h2-img {
    max-height: 340px;
  }

  .h2-title {
    font-size: clamp(26px, 7vw, 46px);
  }

  .h2-btn-main {
    font-size: 15px;
  }

  .live-section {
    grid-template-columns: 1fr;
  }

  .live-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .testi-grid-w {
    grid-template-columns: 1fr 1fr;
  }

  .day-cards-w {
    grid-template-columns: 1fr;
  }

  /* Trainer card stacks */
  .trainer-card-premium {
    grid-template-columns: 1fr;
  }

  .tcp-photo-wrap {
    min-height: 360px;
  }

  .tcp-photo {
    min-height: 360px;
  }

  .tcp-content {
    padding: 28px 24px;
  }

  .tcp-badge-tl {
    top: 14px;
    left: 14px;
  }

  .tcp-badge-br {
    bottom: 90px;
    right: 14px;
  }

  .tcp-creds-grid {
    grid-template-columns: 1fr;
  }

  /* Photo testimonials */
  .photo-testi-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* Buttons */
  .btn-w-primary {
    font-size: 14px;
    padding: 13px 22px 10px;
  }

  .btn-sub-w {
    font-size: 10px;
  }

  .nav-cta-w {
    font-size: 12px;
    padding: 9px 16px;
  }
}

@media (max-width: 600px) {
  .check-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid-w {
    grid-template-columns: 1fr;
  }

  .hw-info-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Hero V2 mobile */
  .h2-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .h2-img {
    max-height: 220px;
  }

  .hero-v2 {
    padding: 32px 0 40px;
  }

  .h2-price-now {
    font-size: 36px;
  }

  .h2-btn {
    padding: 14px 24px 10px;
  }

  .h2-btn-main {
    font-size: 14px;
  }

  .h2-proof {
    padding: 8px 14px;
    gap: 10px;
  }

  /* Photo testimonials */
  .photo-testi-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .photo-testi-card:last-child {
    display: none;
  }

  /* Buttons — compact on small screens */
  .btn-w-primary {
    font-size: 13px;
    padding: 12px 18px 9px;
    border-radius: 40px;
  }

  .btn-sub-w {
    font-size: 10px;
  }

  .nav-cta-w {
    font-size: 11px;
    padding: 8px 14px;
  }

  .fcw-price {
    flex-wrap: wrap;
    justify-content: center;
  }

  .fcw-now {
    font-size: 40px;
  }

  /* Trainer card */
  .tcp-photo-wrap {
    min-height: 300px;
  }

  .tcp-photo {
    min-height: 300px;
  }

  .tcp-content {
    padding: 20px 18px;
  }

  /* Countdown smaller */
  .cs-unit {
    min-width: 44px;
    padding: 6px 10px;
  }

  .cs-num {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .hw-info-row {
    grid-template-columns: 1fr;
  }

  .photo-testi-row {
    grid-template-columns: 1fr;
  }

  .photo-testi-card:last-child {
    display: block;
  }

  .btn-w-primary {
    font-size: 12px;
    padding: 11px 14px 8px;
  }

  .urgency-bar {
    font-size: 11px;
    gap: 6px;
    padding: 8px 12px;
  }

  .ub-price {
    font-size: 11px;
    padding: 3px 10px;
  }
}