/* ───── KARAFT image-banner (Prestige Allure clone) ─────
   Full-bleed image with an overlaid bordered text box. Box position +
   text theme + overlay opacity merchant-controlled. */

.kf-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  overflow: hidden;
}

/* ── Media + overlay ─────────────────────────────────────────────────── */
.kf-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.kf-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kf-banner__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
}
.kf-banner__overlay {
  position: absolute;
  inset: 0;
  background: #000;
  pointer-events: none;
}

/* ── Inner wrapper positions the box ─────────────────────────────────── */
.kf-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
}
.kf-banner--left   .kf-banner__inner { justify-content: flex-start; }
.kf-banner--center .kf-banner__inner { justify-content: center; }
.kf-banner--right  .kf-banner__inner { justify-content: flex-end; }

/* ── Text box ────────────────────────────────────────────────────────── */
.kf-banner__box {
  max-width: 440px;
  padding: 44px 40px;
  background: transparent;
}
.kf-banner--center .kf-banner__box { text-align: center; }

.kf-banner--light .kf-banner__box {
  color: var(--color-dark-fg);
}
.kf-banner--light .kf-banner__eyebrow,
.kf-banner--light .kf-banner__heading,
.kf-banner--light .kf-banner__body { color: var(--color-dark-fg); }

.kf-banner--dark .kf-banner__box { color: var(--color-text); }

.kf-banner__eyebrow {
  display: block;
  margin-bottom: 16px;
}
.kf-banner__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: var(--track-heading);
  margin: 0;
}
.kf-banner__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 18px 0 0;
}
.kf-banner__btn { margin-top: 28px; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .kf-banner { min-height: 480px; }
  .kf-banner__box { max-width: 400px; padding: 36px 32px; }
}
@media (max-width: 600px) {
  /* Box goes full-width at the bottom on mobile */
  .kf-banner { min-height: 460px; align-items: flex-end; }
  .kf-banner__inner { justify-content: stretch; padding-bottom: 24px; padding-top: 24px; }
  .kf-banner--left .kf-banner__inner,
  .kf-banner--center .kf-banner__inner,
  .kf-banner--right .kf-banner__inner { justify-content: stretch; }
  .kf-banner__box { max-width: none; width: 100%; padding: 28px 24px; }
  .kf-banner__heading { font-size: clamp(28px, 9vw, 38px); }
}
