@charset "UTF-8";
/* =============================================
   CHECKOUT WIZARD — Delivery step
   Scope: checkout_wizard_step_delivery.liquid only
   Local staging note: on Insales this file uploads as
   checkout_wizard_step_delivery.css (see the asset_url
   reference in the .liquid file and the <script> tag
   added to page.checkout_wizard.liquid).
   ============================================= */
/* line 11, checkout_wizard_step_delivery.scss */
.cw-step-delivery {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-canvas-medium); }

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

/* line 29, checkout_wizard_step_delivery.scss */
.cw-step-delivery__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 43, checkout_wizard_step_delivery.scss */
.cw-step-delivery__back-icon {
  width: 20px;
  height: 20px; }

/* line 48, checkout_wizard_step_delivery.scss */
.cw-step-delivery__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; }

/* line 57, checkout_wizard_step_delivery.scss */
.cw-step-delivery__title:hover {
  cursor: pointer; }

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

/* line 71, checkout_wizard_step_delivery.scss */
.cw-step-delivery__main-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; }

/* line 78, checkout_wizard_step_delivery.scss */
.cw-step-delivery__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; }

/* ── City block ───────────────────────────────── */
/* line 91, checkout_wizard_step_delivery.scss */
.cw-step-delivery-city {
  width: 100%; }

/* line 95, checkout_wizard_step_delivery.scss */
#cw-step-delivery-city-wrap.cw-step-delivery-city--invalid .city-input__field {
  border-color: var(--color-accent-error); }

/* line 99, checkout_wizard_step_delivery.scss */
.cw-step-delivery-city__error {
  display: none;
  margin: 0.5rem 0 0;
  padding: 0 0.25rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 12px;
  color: var(--color-accent-error); }

/* line 109, checkout_wizard_step_delivery.scss */
.cw-step-delivery-city--invalid .cw-step-delivery-city__error {
  display: block; }

/* ── Delivery methods list ───────────────────── */
/* line 115, checkout_wizard_step_delivery.scss */
.cw-step-delivery-methods {
  width: 100%; }

/* line 119, checkout_wizard_step_delivery.scss */
.cw-step-delivery-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

/* line 125, checkout_wizard_step_delivery.scss */
.cw-step-delivery-method-error {
  display: none;
  margin: 0.75rem 0 0;
  padding: 0 0.25rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 12px;
  color: var(--color-accent-error); }

/* line 135, checkout_wizard_step_delivery.scss */
.cw-step-delivery-methods--invalid .cw-step-delivery-method-error {
  display: block; }

/* line 139, checkout_wizard_step_delivery.scss */
.cw-step-delivery-empty {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-content-secondary);
  background: var(--bg);
  border-radius: 1.25rem;
  padding: 1.25rem;
  margin: 0; }

/* ── Card ─────────────────────────────────────── */
/* line 152, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card {
  width: 100%;
  display: block;
  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 167, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card--selected {
  border-color: var(--color-accent-success);
  box-shadow: 0 8px 24px rgba(120, 200, 90, 0.12); }

/* line 172, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card--disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none; }

/* line 178, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem; }

/* line 186, checkout_wizard_step_delivery.scss */
.cw-step-delivery-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 202, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__check--active {
  background: var(--color-accent-success);
  border-color: var(--color-accent-success); }

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

/* line 214, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__check--active .cw-step-delivery-card__check-icon {
  opacity: 1; }

/* line 218, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-content-primary); }

/* line 229, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__icon-wrap--default {
  background: var(--color-bg-canvas-medium); }

/* line 233, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain; }

/* line 239, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__icon-wrap--default img {
  width: 22px;
  height: 22px; }

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

/* line 252, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-content-primary);
  line-height: 1.35; }

/* line 260, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__desc {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-content-secondary);
  line-height: 1.45; }

/* line 268, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__desc img {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important; }

/* line 281, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__price {
  flex-shrink: 0;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-content-primary);
  white-space: nowrap; }

/* line 290, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__price--free {
  color: var(--color-accent-success); }

/* ── Card date/time block ─────────────────────── */
/* line 296, checkout_wizard_step_delivery.scss */
.cw-step-delivery-card__datetime {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-accent-border-m);
  display: flex;
  flex-direction: column;
  gap: 0.75rem; }

/* line 305, checkout_wizard_step_delivery.scss */
.cw-step-delivery-select {
  position: relative;
  width: 100%; }

/* line 310, checkout_wizard_step_delivery.scss */
.cw-step-delivery-select__label {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 10px;
  color: var(--color-content-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem; }

/* line 321, checkout_wizard_step_delivery.scss */
.cw-step-delivery-select__btn {
  width: 100%;
  height: 44px;
  padding: 0 1rem;
  background: var(--bg);
  border: 2px solid var(--color-accent-border-m);
  border-radius: 1rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-content-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
  text-align: left; }

/* line 340, checkout_wizard_step_delivery.scss */
.cw-step-delivery-select__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed; }

/* line 345, checkout_wizard_step_delivery.scss */
.cw-step-delivery-select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

/* line 353, checkout_wizard_step_delivery.scss */
.cw-step-delivery-select__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-content-secondary); }

/* line 360, checkout_wizard_step_delivery.scss */
.cw-step-delivery-select__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.4rem);
  z-index: 20;
  background: var(--bg);
  border: 1px solid var(--color-accent-border-m);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(47, 79, 149, 0.14);
  overflow: hidden;
  padding: 0.4rem; }

/* line 374, checkout_wizard_step_delivery.scss */
.cw-step-delivery-select__option {
  width: 100%;
  display: block;
  padding: 0.6rem 0.75rem;
  border: none;
  background: none;
  border-radius: 0.65rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-content-primary);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.12s; }

/* line 391, checkout_wizard_step_delivery.scss */
.cw-step-delivery-select__option:hover {
  background: var(--color-bg-canvas); }

/* ── Disclaimer ───────────────────────────────── */
/* line 397, checkout_wizard_step_delivery.scss */
.cw-step-delivery-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0 0.25rem;
  opacity: 0.6; }

/* line 405, checkout_wizard_step_delivery.scss */
.cw-step-delivery-disclaimer__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--color-content-secondary); }

/* line 413, checkout_wizard_step_delivery.scss */
.cw-step-delivery-disclaimer__text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-content-secondary); }

/* ── Submit error ──────────────────────────────── */
/* line 424, checkout_wizard_step_delivery.scss */
.cw-step-delivery-submit-error {
  display: none;
  margin: 0;
  padding: 0.85rem 1.25rem;
  border-radius: 1rem;
  background: var(--color-notice-error);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-accent-error); }

/* line 436, checkout_wizard_step_delivery.scss */
.cw-step-delivery-submit-error--visible {
  display: block; }

/* ── Shared CTA button ─────────────────────────── */
/* line 442, checkout_wizard_step_delivery.scss */
.cw-step-delivery-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: var(--controls-btn-border-radius);
  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 462, checkout_wizard_step_delivery.scss */
.cw-step-delivery-cta:hover {
  filter: brightness(1.07); }

/* line 466, checkout_wizard_step_delivery.scss */
.cw-step-delivery-cta:active {
  transform: scale(0.98); }

/* line 470, checkout_wizard_step_delivery.scss */
.cw-step-delivery-cta:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  filter: none; }

/* line 477, checkout_wizard_step_delivery.scss */
.cw-step-delivery-cta__label {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 17px;
  color: var(--color-content-internal);
  line-height: 1.1; }

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

/* line 493, checkout_wizard_step_delivery.scss */
.cw-step-delivery-cta__subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 11px;
  color: var(--color-content-internal);
  line-height: 1.2; }

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

/* ── Desktop summary panel ─────────────────────── */
/* line 510, checkout_wizard_step_delivery.scss */
.cw-step-delivery__summary-col {
  display: none; }

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

/* line 523, checkout_wizard_step_delivery.scss */
.cw-step-delivery-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 532, checkout_wizard_step_delivery.scss */
.cw-step-delivery-summary__trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; }

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

/* line 545, checkout_wizard_step_delivery.scss */
.cw-step-delivery-trust-item__icon-wrap,
.cw-step-delivery-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 558, checkout_wizard_step_delivery.scss */
.cw-step-delivery-mobile-trust-item__icon-wrap {
  width: 14px;
  height: 14px;
  background: none; }

/* line 564, checkout_wizard_step_delivery.scss */
.cw-step-delivery-trust-item__icon {
  width: 1rem;
  height: 1rem; }

/* line 569, checkout_wizard_step_delivery.scss */
.cw-step-delivery-mobile-trust-item__icon {
  width: 14px;
  height: 14px; }

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

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

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

/* line 596, checkout_wizard_step_delivery.scss */
.cw-step-delivery-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 606, checkout_wizard_step_delivery.scss */
.cw-step-delivery-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); }

/* line 614, checkout_wizard_step_delivery.scss */
.cw-step-delivery-summary__back {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-content-secondary); }

/* line 630, checkout_wizard_step_delivery.scss */
.cw-step-delivery-summary__back-icon {
  width: 16px;
  height: 16px; }

/* ── Mobile bottom bar ─────────────────────────── */
/* line 637, checkout_wizard_step_delivery.scss */
.cw-step-delivery__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 653, checkout_wizard_step_delivery.scss */
.cw-step-delivery__mobile-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 100vh;
  background: var(--bg); }

/* line 663, checkout_wizard_step_delivery.scss */
.cw-step-delivery__mobile-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline; }

/* line 669, checkout_wizard_step_delivery.scss */
.cw-step-delivery__mobile-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.06em; }

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

/* line 687, checkout_wizard_step_delivery.scss */
.cw-step-delivery__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); }

/* line 697, checkout_wizard_step_delivery.scss */
.cw-step-delivery__mobile-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem; }

/* line 703, checkout_wizard_step_delivery.scss */
.cw-step-delivery__mobile-trust-item__icon-wrap {
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: var(--color-bg-canvas-medium);
  flex-shrink: 0; }

/* line 711, checkout_wizard_step_delivery.scss */
.cw-step-delivery__mobile-trust-item__label {
  flex: 1;
  min-width: 0; }

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

  /* line 728, checkout_wizard_step_delivery.scss */
  .cw-step-delivery__main-col {
    flex: 0 0 58%; }

  /* line 732, checkout_wizard_step_delivery.scss */
  .cw-step-delivery__summary-col {
    display: block;
    flex: 1; }

  /* line 737, checkout_wizard_step_delivery.scss */
  .cw-step-delivery__mobile-bar {
    display: none; } }
