@charset "UTF-8";
/* =============================================
   CHECKOUT WIZARD — Method selection step
   Scope: checkout_wizard_step_method.liquid only
   ============================================= */
/* line 7, checkout_wizard_step_method.scss */
.cw-step-method {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-canvas-medium); }

/* ── Header ──────────────────────────────────── */
/* line 17, checkout_wizard_step_method.scss */
.cw-step-method__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem 0.5rem; }

/* line 25, checkout_wizard_step_method.scss */
.cw-step-method__back {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: none;
  background: var(--bg);
  color: var(--color-content-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer; }

/* line 39, checkout_wizard_step_method.scss */
.cw-step-method__back-icon {
  width: 20px;
  height: 20px; }

/* line 44, checkout_wizard_step_method.scss */
.cw-step-method__title {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-content-primary);
  margin: 0; }

/* ── Body layout ─────────────────────────────── */
/* line 54, checkout_wizard_step_method.scss */
.cw-step-method__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 8rem;
  gap: 1.5rem; }

/* line 62, checkout_wizard_step_method.scss */
.cw-step-method__label {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 11px;
  color: var(--color-content-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem; }

/* line 73, checkout_wizard_step_method.scss */
.cw-step-method__cards-col {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

/* ── Cards ────────────────────────────────────── */
/* line 81, checkout_wizard_step_method.scss */
.cw-step-method-card {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg);
  border: 2px solid var(--color-accent-border-m);
  border-radius: 2rem;
  padding: 1.25rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-tap-highlight-color: transparent; }

/* line 98, checkout_wizard_step_method.scss */
.cw-step-method-card--selected {
  border-color: var(--color-accent-success);
  box-shadow: 0 8px 24px rgba(120, 200, 90, 0.12); }

/* line 103, checkout_wizard_step_method.scss */
.cw-step-method-card:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none; }

/* line 109, checkout_wizard_step_method.scss */
.cw-step-method-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: var(--color-bg-canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-content-primary); }

/* line 121, checkout_wizard_step_method.scss */
.cw-step-method-card__icon {
  width: 26px;
  height: 26px; }

/* line 126, checkout_wizard_step_method.scss */
.cw-step-method-card__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem; }

/* line 134, checkout_wizard_step_method.scss */
.cw-step-method-card__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-content-primary);
  line-height: 1.375; }

/* line 142, checkout_wizard_step_method.scss */
.cw-step-method-card__desc {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--color-content-secondary);
  line-height: 1.625; }

/* line 150, checkout_wizard_step_method.scss */
.cw-step-method-card__check {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  border: 2px solid var(--color-accent-border-m);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--color-content-internal);
  transition: background-color 0.15s, border-color 0.15s; }

/* line 166, checkout_wizard_step_method.scss */
.cw-step-method-card__check--active {
  background: var(--color-accent-success);
  border-color: var(--color-accent-success); }

/* line 171, checkout_wizard_step_method.scss */
.cw-step-method-card__check-icon {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.15s; }

/* line 178, checkout_wizard_step_method.scss */
.cw-step-method-card__check--active .cw-step-method-card__check-icon {
  opacity: 1; }

/* ── Desktop summary panel ────────────────────── */
/* line 184, checkout_wizard_step_method.scss */
.cw-step-method__summary-col {
  display: none; }

/* line 188, checkout_wizard_step_method.scss */
.cw-step-method-summary {
  background: var(--bg);
  border-radius: 2.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem; }

/* line 197, checkout_wizard_step_method.scss */
.cw-step-method-summary__title {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--color-content-primary);
  margin: 0; }

/* line 206, checkout_wizard_step_method.scss */
.cw-step-method-summary__trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; }

/* line 212, checkout_wizard_step_method.scss */
.cw-step-method-trust-item, .cw-step-method-mobile-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem; }

/* line 218, checkout_wizard_step_method.scss */
.cw-step-method-trust-item__icon-wrap, .cw-step-method-mobile-trust-item__icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: var(--color-bg-canvas-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent-success); }

/* line 230, checkout_wizard_step_method.scss */
.cw-step-method-mobile-trust-item__icon-wrap {
  width: 14px;
  height: 14px;
  background: none; }

/* line 236, checkout_wizard_step_method.scss */
.cw-step-method-trust-item__icon {
  width: 1rem;
  height: 1rem; }

/* line 241, checkout_wizard_step_method.scss */
.cw-step-method-mobile-trust-item__icon {
  width: 14px;
  height: 14px; }

/* line 246, checkout_wizard_step_method.scss */
.cw-step-method-trust-item__label, .cw-step-method-mobile-trust-item__label {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-content-primary); }

/* line 253, checkout_wizard_step_method.scss */
.cw-step-method-mobile-trust-item__label {
  font-weight: 600;
  font-size: 10px;
  color: var(--color-accent-inactive); }

/* line 259, checkout_wizard_step_method.scss */
.cw-step-method-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--color-accent-border-m); }

/* line 267, checkout_wizard_step_method.scss */
.cw-step-method-summary__total-label {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-content-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em; }

/* line 277, checkout_wizard_step_method.scss */
.cw-step-method-summary__total-value {
  font-family: var(--font-family-heading);
  font-weight: 900;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--color-content-primary); }

/* ── Shared CTA button ─────────────────────────── */
/* line 287, checkout_wizard_step_method.scss */
.cw-step-method-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--color-accent-success);
  color: var(--color-content-internal);
  border: none;
  border-radius: 1.25rem;
  padding: 0 1.5rem;
  height: 4rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(120, 200, 90, 0.3);
  transition: filter 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent; }

/* line 307, checkout_wizard_step_method.scss */
.cw-step-method-cta:hover {
  filter: brightness(1.07); }

/* line 311, checkout_wizard_step_method.scss */
.cw-step-method-cta:active {
  transform: scale(0.98); }

/* line 315, checkout_wizard_step_method.scss */
.cw-step-method-cta:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  filter: none; }

/* line 322, checkout_wizard_step_method.scss */
.cw-step-method-cta__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-align: left; }

/* line 330, checkout_wizard_step_method.scss */
.cw-step-method-cta__label {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-content-internal);
  line-height: 1.75rem; }

/* line 338, checkout_wizard_step_method.scss */
.cw-step-method-cta__subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 10px;
  color: var(--color-content-internal); }

/* line 345, checkout_wizard_step_method.scss */
.cw-step-method-cta__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-content-internal); }

/* ── Mobile bottom bar ─────────────────────────── */
/* line 354, checkout_wizard_step_method.scss */
.cw-step-method__mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  background: var(--bg);
  border-top: 1px solid var(--color-accent-border-m);
  border-radius: 2rem 2rem 0 0;
  padding: 1.25rem 1.5rem 1.75rem;
  box-shadow: 0 -12px 32px rgba(47, 79, 149, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem; }

/* line 370, checkout_wizard_step_method.scss */
.cw-step-method__mobile-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline; }

/* line 376, checkout_wizard_step_method.scss */
.cw-step-method__mobile-total-label {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-content-primary);
  line-height: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em; }

/* line 386, checkout_wizard_step_method.scss */
.cw-step-method__mobile-total-value {
  font-family: var(--font-family-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-content-primary);
  line-height: 2rem; }

/* line 394, checkout_wizard_step_method.scss */
.cw-step-method__mobile-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 10px;
  color: var(--color-content-secondary); }

/* ── Desktop breakpoint ────────────────────────── */
@media (min-width: 1024px) {
  /* line 407, checkout_wizard_step_method.scss */
  .cw-step-method__body {
    flex-direction: row;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2.5rem 4rem;
    gap: 2.5rem; }

  /* line 416, checkout_wizard_step_method.scss */
  .cw-step-method__cards-col {
    flex: 0 0 58%; }

  /* line 420, checkout_wizard_step_method.scss */
  .cw-step-method__summary-col {
    display: block;
    flex: 1; }

  /* line 425, checkout_wizard_step_method.scss */
  .cw-step-method__mobile-bar {
    display: none; } }
