/* ───── KARAFT countdown (Prestige Allure clone) ─────
   Full-bleed background image; left-aligned overlay (eyebrow + heading + body
   + CTA) with the live ticking timer floated to the right. Dark-band fallback
   when no image is set. */

.kf-cd {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  overflow: hidden;
}
.kf-cd--noimage {
  background: var(--color-dark);
  min-height: 0;
  padding-block: var(--section-gap, 96px);
}

/* ── Media + scrim ────────────────────────────────────────────────────── */
.kf-cd__media { position: absolute; inset: 0; z-index: 0; }
.kf-cd__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kf-cd__scrim { position: absolute; inset: 0; background: #000; pointer-events: none; }

/* ── Layout: copy left, timer right ───────────────────────────────────── */
.kf-cd__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.kf-cd--noimage .kf-cd__inner { justify-content: center; }

.kf-cd__copy {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.kf-cd--noimage .kf-cd__copy { align-items: center; text-align: center; max-width: 640px; }

/* ── Text theme ───────────────────────────────────────────────────────── */
.kf-cd--light, .kf-cd--light .kf-cd__eyebrow, .kf-cd--light .kf-cd__heading,
.kf-cd--light .kf-cd__body, .kf-cd--light .kf-cd__num { color: #fff; }
.kf-cd--light .kf-cd__label, .kf-cd--light .kf-cd__sep { color: rgba(255, 255, 255, 0.7); }
.kf-cd--noimage.kf-cd--light .kf-cd__label { color: var(--color-text-muted); }

.kf-cd--dark, .kf-cd--dark .kf-cd__eyebrow, .kf-cd--dark .kf-cd__heading,
.kf-cd--dark .kf-cd__body, .kf-cd--dark .kf-cd__num { color: var(--color-text); }
.kf-cd--dark .kf-cd__label, .kf-cd--dark .kf-cd__sep { color: var(--color-text-muted); }

.kf-cd__eyebrow { margin-bottom: 18px; }
.kf-cd__heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0;
}
.kf-cd__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  margin: 22px 0 0;
  max-width: 420px;
}
.kf-cd__cta { margin-top: 32px; }

/* ── Timer ────────────────────────────────────────────────────────────── */
.kf-cd__timer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  flex: none;
}
.kf-cd__unit { display: flex; flex-direction: column; align-items: center; min-width: 78px; }
.kf-cd__num {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 300;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.kf-cd__label {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--track-eyebrow, 0.22em);
  text-transform: uppercase;
}
.kf-cd__sep {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1;
  align-self: flex-start;
  margin-top: 6px;
}
.kf-cd__expired { font-family: var(--font-body); font-size: 18px; margin: 0; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .kf-cd { min-height: 480px; }
  .kf-cd__inner { gap: 28px; }
  .kf-cd__unit { min-width: 64px; }
}
@media (max-width: 768px) {
  .kf-cd { min-height: 0; padding-block: 72px; align-items: stretch; }
  .kf-cd__inner { flex-direction: column; align-items: flex-start; gap: 40px; }
  .kf-cd--noimage .kf-cd__inner { align-items: center; }
  .kf-cd__timer { gap: 10px; }
}
@media (max-width: 375px) {
  .kf-cd { padding-block: 56px; }
  .kf-cd__timer { gap: 4px; }
  .kf-cd__unit { min-width: 52px; }
  .kf-cd__sep { display: none; }
  .kf-cd__label { font-size: 10px; letter-spacing: 0.12em; }
}
