/* woo-payment-v1/index.css — page composition CSS. Mobile-first. */

/* ─── Molecules ────────────────────────────────────────────────────── */
@import url('../../_components/molecules/progress-stepper/progress-stepper.css');
@import url('../../_components/molecules/breadcrumb-row/breadcrumb-row.css');

/* ─── Sections ─────────────────────────────────────────────────────── */
@import url('../../_components/sections/header-full/header-full.css');
@import url('../../_components/sections/footer-full/footer-full.css');
@import url('../../_components/sections/mobile-menu/mobile-menu.css');
@import url('../../_components/sections/payment-card/payment-card.css');

/* ─── Page-scoped overrides ─────────────────────────────────────────── */

.page-woo-payment-v1 [data-wins-counter] { display: none !important; }

.page-woo-payment-v1 .woo-main {
  position: relative;
  overflow: hidden;
}
.page-woo-payment-v1 .woo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

/* Progress stepper (Figma 1560:470 y=136 — step1+2 complete, step3 active, default 32 circle) */
.page-woo-payment-v1 .woo-progress { margin-top: 32px; }

/* Hero — "Payment" title (Figma 1560:469 y=232) */
.page-woo-payment-v1 .woo-hero {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 24px;
}
.page-woo-payment-v1 .woo-hero__title {
  font-family: 'Nationale', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: rgb(var(--color-lead));
  margin: 0;
}

/* Breadcrumb row region (Figma 1560:578 y=304) */
.page-woo-payment-v1 .woo-breadcrumb-region {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* Payment card region (Figma 1560:327 y=372) */
.page-woo-payment-v1 .woo-payment-region {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 48px;
}

/* Decorative glows hidden on mobile */
.page-woo-payment-v1 .woo-glow { display: none; }

/* ─── Desktop ─────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .page-woo-payment-v1 .woo-container { padding: 0 24px; }
  .page-woo-payment-v1 .woo-progress { margin-top: 56px; }
  .page-woo-payment-v1 .woo-hero {
    margin-top: 64px;
    margin-bottom: 24px;
  }
  .page-woo-payment-v1 .woo-hero__title {
    font-size: 36px;
    line-height: 48px;
  }

  .page-woo-payment-v1 .woo-glow {
    display: block;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    user-select: none;
  }
  .page-woo-payment-v1 .woo-glow--top {
    top: -184px;
    left: -8px;
    width: 1456px;
    height: 448px;
  }
  .page-woo-payment-v1 .woo-glow--bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 98px;
  }
}
