/* ============================================================
   Create Cart v2 — "Configurator" Order Form
   Split builder: interactive plan slider + sticky live summary.
   Runs inside the Create client-area theme (has --cr-* vars).
   ============================================================ */

#order-create_cart { padding-bottom: 44px; }
#order-create_cart .w-hidden { display: none !important; }

/* ---------- category chips ---------- */
#order-create_cart .crc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 6px 0 30px;
}
#order-create_cart .crc-chip {
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 700;
  font-size: .88rem;
  color: var(--cr-plum, #360B3A);
  background: var(--cr-surface, #fff);
  border: 1px solid var(--cr-line, #EEE1EB);
  border-radius: 30px;
  padding: 9px 20px;
  transition: .2s;
  text-decoration: none;
}
#order-create_cart .crc-chip:hover {
  border-color: var(--cr-magenta, #BB1F55);
  color: var(--cr-magenta, #BB1F55);
  text-decoration: none;
}
#order-create_cart .crc-chip.on {
  background: var(--cr-grad, linear-gradient(135deg, #360B3A, #BB1F55));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px -12px rgba(187, 31, 85, .5);
}

/* ---------- head ---------- */
#order-create_cart .crc-head { text-align: center; max-width: 680px; margin: 0 auto 30px; }
#order-create_cart .crc-eyebrow {
  font-family: var(--cr-f-mono, monospace);
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--cr-magenta, #BB1F55);
}
#order-create_cart .crc-head h1 {
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  color: var(--cr-heading, #2B0930);
  margin: 8px 0 6px;
}
#order-create_cart .crc-sub { color: var(--cr-muted, #8A7C88); font-size: .95rem; margin: 0; }

/* ---------- builder layout ---------- */
#order-create_cart .crb-builder {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 26px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  #order-create_cart .crb-builder { grid-template-columns: 1fr; }
}

/* ---------- left panel: configurator ---------- */
#order-create_cart .crb-panel {
  background: var(--cr-surface, #fff);
  border: 1px solid var(--cr-line, #EEE1EB);
  border-radius: 24px;
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: 0 20px 50px -34px rgba(54, 11, 58, .4);
}
#order-create_cart .crb-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
#order-create_cart .crb-name {
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--cr-magenta, #BB1F55);
}
#order-create_cart .crb-badge {
  font-size: .66rem;
  font-weight: 900;
  color: #fff;
  background: var(--cr-grad, linear-gradient(135deg, #360B3A, #BB1F55));
  border-radius: 20px;
  padding: 4px 13px;
  letter-spacing: .04em;
}

/* range slider */
#order-create_cart input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--cr-magenta, #BB1F55) var(--fill, 0%), var(--cr-line, #EEE1EB) var(--fill, 0%));
  outline: none;
  cursor: pointer;
  margin: 6px 0 14px;
}
[dir="rtl"] #order-create_cart input[type=range] {
  background: linear-gradient(-90deg, var(--cr-magenta, #BB1F55) var(--fill, 0%), var(--cr-line, #EEE1EB) var(--fill, 0%));
}
#order-create_cart input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid var(--cr-magenta, #BB1F55);
  box-shadow: 0 4px 14px rgba(187, 31, 85, .45);
  cursor: pointer;
  transition: transform .15s;
}
#order-create_cart input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
#order-create_cart input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid var(--cr-magenta, #BB1F55);
  box-shadow: 0 4px 14px rgba(187, 31, 85, .45);
  cursor: pointer;
}

/* plan ticks */
#order-create_cart .crb-ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}
#order-create_cart .crb-tick {
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 700;
  font-size: .8rem;
  color: var(--cr-muted, #8A7C88);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 6px 12px;
  cursor: pointer;
  transition: .2s;
  flex: 1 1 auto;
  text-align: center;
}
#order-create_cart .crb-tick:hover { color: var(--cr-magenta, #BB1F55); background: var(--cr-surface-2, #F6EDF3); }
#order-create_cart .crb-tick.on {
  color: #fff;
  background: var(--cr-plum, #360B3A);
  box-shadow: 0 8px 20px -10px rgba(54, 11, 58, .5);
}

/* features checklist */
#order-create_cart .crb-feats-wrap { margin-top: 26px; }
#order-create_cart .crb-feats-label {
  font-family: var(--cr-f-mono, monospace);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--cr-muted, #8A7C88);
  text-transform: uppercase;
}
#order-create_cart .crb-feats {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}
@media (max-width: 560px) {
  #order-create_cart .crb-feats { grid-template-columns: 1fr; }
}
#order-create_cart .crb-feats li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--cr-soft, #5C4E5A);
  line-height: 1.5;
  background: var(--cr-surface-2, #F6EDF3);
  border: 1px solid var(--cr-line-2, #F4EBF1);
  border-radius: 12px;
  padding: 11px 14px;
}
#order-create_cart .crb-feats svg {
  width: 15px;
  height: 15px;
  color: var(--cr-magenta, #BB1F55);
  flex: none;
  margin-top: 3px;
}

/* ---------- right: sticky summary ---------- */
#order-create_cart .crb-summary {
  position: sticky;
  top: 20px;
  background: var(--cr-grad, linear-gradient(135deg, #360B3A 0%, #5F1B45 55%, #BB1F55 100%));
  border-radius: 24px;
  padding: 30px 28px;
  color: #fff;
  box-shadow: 0 26px 56px -26px rgba(187, 31, 85, .55);
  overflow: hidden;
  position: sticky;
}
#order-create_cart .crb-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 220px at 85% 90%, rgba(255, 111, 165, .28), transparent 65%);
  pointer-events: none;
}
#order-create_cart .crb-summary > * { position: relative; }
#order-create_cart .crb-sum-group {
  font-family: var(--cr-f-mono, monospace);
  font-size: .7rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
}
#order-create_cart .crb-sum-head h4 {
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin: 6px 0 18px;
}

/* cycle segmented control */
#order-create_cart .crb-cycle {
  display: flex;
  background: rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}
#order-create_cart .crb-cycle button {
  flex: 1;
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  background: transparent;
  border: 0;
  border-radius: 9px;
  padding: 9px 10px;
  cursor: pointer;
  transition: .2s;
}
#order-create_cart .crb-cycle button.on {
  background: #fff;
  color: var(--cr-plum, #360B3A);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

/* live price */
#order-create_cart .crb-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  min-height: 52px;
}
#order-create_cart .crb-price b {
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: #fff;
  transition: opacity .16s, transform .16s;
}
#order-create_cart .crb-price b.flip { opacity: 0; transform: translateY(8px); }
#order-create_cart .crb-price span { color: rgba(255, 255, 255, .8); font-size: .92rem; }

/* order CTA */
#order-create_cart .crb-order {
  display: block;
  text-align: center;
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  font-size: 1rem;
  background: #fff;
  color: var(--cr-plum, #360B3A);
  border-radius: 14px;
  padding: 14px 20px;
  text-decoration: none;
  transition: .25s;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .4);
}
#order-create_cart .crb-order:hover {
  transform: translateY(-2px);
  color: var(--cr-magenta, #BB1F55);
  text-decoration: none;
}

/* trust bullets */
#order-create_cart .crb-trust {
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  gap: 10px;
}
#order-create_cart .crb-trust li {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: .86rem;
  color: rgba(255, 255, 255, .9);
}
#order-create_cart .crb-trust svg { width: 15px; height: 15px; color: #7DF0C4; flex: none; }

@media (max-width: 900px) {
  #order-create_cart .crb-summary { position: static; }
}

/* ============================================================
   Flow-wide additions: progress steps · configure page ·
   cart/checkout/complete restyle (scoped to .crx-flow)
   ============================================================ */

/* ---------- progress steps ---------- */
.crs-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 4px auto 34px;
}
.crs-step { display: flex; align-items: center; gap: 9px; }
.crs-step i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  font-size: .82rem;
  background: var(--cr-surface, #fff);
  border: 1.5px solid var(--cr-line, #EEE1EB);
  color: var(--cr-muted, #8A7C88);
  flex: none;
  transition: .25s;
}
.crs-step svg { width: 15px; height: 15px; }
.crs-step span {
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 700;
  font-size: .82rem;
  color: var(--cr-muted, #8A7C88);
  white-space: nowrap;
}
.crs-step.on i {
  background: var(--cr-grad, linear-gradient(135deg, #360B3A, #BB1F55));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(187, 31, 85, .55);
}
.crs-step.on span { color: var(--cr-heading, #2B0930); }
.crs-step.done i { background: var(--cr-green, #12A870); border-color: transparent; color: #fff; box-shadow: none; }
.crs-line { flex: 1; max-width: 70px; height: 2px; border-radius: 2px; background: var(--cr-line, #EEE1EB); }
.crs-line.done { background: var(--cr-green, #12A870); }
@media (max-width: 700px) {
  .crs-steps { gap: 6px; }
  .crs-step span { display: none; }
  .crs-step.on span { display: inline; }
}

/* ---------- configure page ---------- */
#order-create_cart .crf-builder { grid-template-columns: 1.6fr 1fr; }
@media (max-width: 900px) { #order-create_cart .crf-builder { grid-template-columns: 1fr; } }
#order-create_cart .crf-main { min-width: 0; }

#order-create_cart .crf-recap {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--cr-surface, #fff);
  border: 1px solid var(--cr-line, #EEE1EB);
  border-radius: 18px;
  padding: 18px 22px;
  margin-bottom: 18px;
  box-shadow: 0 14px 36px -30px rgba(54, 11, 58, .4);
}
#order-create_cart .crf-recap-mark { flex: none; display: grid; place-items: center; }
#order-create_cart .crf-recap b {
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--cr-heading, #2B0930);
  display: block;
}
#order-create_cart .crf-recap span { font-family: var(--cr-f-mono, monospace); font-size: .72rem; color: var(--cr-muted, #8A7C88); }

#order-create_cart .crf-section {
  background: var(--cr-surface, #fff);
  border: 1px solid var(--cr-line, #EEE1EB);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 14px 36px -30px rgba(54, 11, 58, .4);
}
#order-create_cart .crf-label {
  display: block;
  font-family: var(--cr-f-mono, monospace);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cr-magenta, #BB1F55);
  margin-bottom: 14px;
}
#order-create_cart .crf-hint { color: var(--cr-muted, #8A7C88); font-size: .85rem; }

/* billing cycle pills */
#order-create_cart .crf-cycles { display: flex; flex-wrap: wrap; gap: 10px; }
#order-create_cart .crf-cycle {
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 700;
  font-size: .88rem;
  color: var(--cr-soft, #5C4E5A);
  background: var(--cr-surface-2, #F6EDF3);
  border: 1.5px solid var(--cr-line, #EEE1EB);
  border-radius: 12px;
  padding: 11px 20px;
  cursor: pointer;
  transition: .2s;
}
#order-create_cart .crf-cycle:hover { border-color: var(--cr-magenta, #BB1F55); color: var(--cr-magenta, #BB1F55); }
#order-create_cart .crf-cycle.on {
  background: var(--cr-grad, linear-gradient(135deg, #360B3A, #BB1F55));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(187, 31, 85, .55);
}
#order-create_cart .crf-hidden-select { display: none; }

/* addon cards */
#order-create_cart .panel-addon {
  border-radius: 16px !important;
  overflow: hidden;
  cursor: pointer;
  transition: .2s;
}
#order-create_cart .panel-addon.panel-addon-selected { border-color: var(--cr-magenta, #BB1F55) !important; }
#order-create_cart .panel-addon .panel-add { background: var(--cr-magenta, #BB1F55) !important; }

#order-create_cart .crf-help {
  background: rgba(182, 120, 232, .08);
  border: 1px solid rgba(182, 120, 232, .3);
  border-radius: 14px;
  padding: 13px 18px;
  font-size: .88rem;
  color: var(--cr-plum-2, #4A163F);
}
#order-create_cart .crf-help a { font-weight: 700; color: var(--cr-magenta, #BB1F55); }

/* configure summary (AJAX-filled) */
#order-create_cart .crf-summary .order-summary { position: relative; }
#order-create_cart .crf-summary h2 {
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 16px;
}
#order-create_cart .crf-summary .loader {
  position: absolute;
  inset-inline-end: 0;
  top: 4px;
  color: rgba(255, 255, 255, .8);
}
#order-create_cart .crf-summary .product-name {
  display: block;
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}
#order-create_cart .crf-summary .product-group {
  display: block;
  font-family: var(--cr-f-mono, monospace);
  font-size: .7rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 12px;
}
#order-create_cart .crf-summary .summary-container { font-size: .9rem; color: rgba(255, 255, 255, .92); }
#order-create_cart .crf-summary .summary-container .clearfix { padding: 4px 0; }
#order-create_cart .crf-summary .summary-totals {
  border-top: 1px solid rgba(255, 255, 255, .2);
  margin-top: 12px;
  padding-top: 10px;
}
#order-create_cart .crf-summary .total-due-today {
  margin: 16px 0 18px;
  text-align: start;
}
#order-create_cart .crf-summary .total-due-today .amt {
  display: block;
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.1;
}
#order-create_cart .crf-summary .total-due-today span:last-child { color: rgba(255, 255, 255, .8); font-size: .85rem; }
#order-create_cart .crf-summary .crb-order { width: 100%; border: 0; cursor: pointer; }

/* ---------- shared restyle for inherited flow pages ---------- */
.crx-flow .cart-sidebar,
.crx-flow .sidebar-categories-collapsed { display: none !important; }
.crx-flow .cart-body { width: 100% !important; float: none !important; padding: 0 !important; }
.crx-flow .header-lined {
  border: 0 !important;
  text-align: center;
  margin-bottom: 26px;
}
.crx-flow .header-lined h1 {
  font-family: var(--cr-f-disp, sans-serif) !important;
  font-weight: 800;
  color: var(--cr-heading, #2B0930);
  font-size: clamp(1.7rem, 3.6vw, 2.3rem) !important;
  border: 0 !important;
}
.crx-flow .sub-heading span {
  font-family: var(--cr-f-mono, monospace) !important;
  font-size: .7rem !important;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cr-magenta, #BB1F55) !important;
  background: var(--cr-bg, #FBF6FA) !important;
}
.crx-flow .sub-heading { border-color: var(--cr-line, #EEE1EB) !important; }

/* cart items */
.crx-flow .view-cart-items { border-radius: 18px; overflow: hidden; }
.crx-flow .view-cart-items .item {
  background: var(--cr-surface, #fff);
  border: 1px solid var(--cr-line, #EEE1EB);
  border-radius: 18px;
  margin-bottom: 14px;
  box-shadow: 0 14px 36px -30px rgba(54, 11, 58, .4);
}
.crx-flow .view-cart-items .item-title {
  font-family: var(--cr-f-disp, sans-serif);
  color: var(--cr-heading, #2B0930);
}
.crx-flow .view-cart-summary { border-radius: 18px; }

/* order summary panels on cart/checkout */
.crx-flow .order-summary {
  background: var(--cr-grad, linear-gradient(135deg, #360B3A 0%, #5F1B45 55%, #BB1F55 100%)) !important;
  border: 0 !important;
  border-radius: 22px 22px 0 0;
  color: #fff !important;
  padding: 22px 24px !important;
}
.crx-flow .order-summary h2 { color: #fff !important; font-family: var(--cr-f-disp, sans-serif); font-size: 1.3rem; }
.crx-flow .summary-container { color: rgba(255, 255, 255, .92); }
.crx-flow .total-due-today .amt { color: #fff; font-family: var(--cr-f-disp, sans-serif); font-weight: 800; }

/* checkout panels */
.crx-flow fieldset,
.crx-flow .fieldset {
  background: var(--cr-surface, #fff);
  border: 1px solid var(--cr-line, #EEE1EB);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 16px;
}
.crx-flow .already-registered .btn-info {
  background: var(--cr-surface, #fff);
  border: 1px solid var(--cr-line, #EEE1EB);
  color: var(--cr-plum, #360B3A);
}
.crx-flow .payment-methods { border-radius: 14px; }

/* complete page */
.crx-complete { text-align: center; }
.crx-complete .crx-done { margin: 6px auto 10px; }
.crx-complete .crx-done h2 {
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  color: var(--cr-heading, #2B0930);
  margin-top: 14px;
}
.crx-complete .crx-done-ring {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: crx-draw 1s cubic-bezier(.22, .61, .28, 1) forwards;
}
.crx-complete .crx-done-check {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: crx-draw .6s .7s cubic-bezier(.22, .61, .28, 1) forwards;
}
@keyframes crx-draw { to { stroke-dashoffset: 0; } }
.crx-complete .order-confirmation {
  background: rgba(18, 168, 112, .08) !important;
  border: 1px solid rgba(18, 168, 112, .3) !important;
  color: #0B7A51 !important;
  border-radius: 14px;
  font-family: var(--cr-f-mono, monospace);
}

@media (prefers-reduced-motion: reduce) {
  .crx-complete .crx-done-ring,
  .crx-complete .crx-done-check { animation: none; stroke-dashoffset: 0; }
}

/* ---------- viewcart specifics ---------- */
.crx-flow .view-cart-items-header {
  background: var(--cr-plum, #360B3A) !important;
  border-radius: 14px 14px 0 0;
  color: #fff;
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 700;
}
.crx-flow .empty-cart .btn-link { color: var(--cr-magenta, #BB1F55) !important; background: transparent !important; }
.crx-flow .view-cart-tabs .nav-tabs { border-color: var(--cr-line, #EEE1EB); }
.crx-flow .view-cart-tabs .nav-link.active {
  color: var(--cr-magenta, #BB1F55);
  border-color: var(--cr-line, #EEE1EB) var(--cr-line, #EEE1EB) transparent;
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 700;
}
.crx-flow .view-cart-tabs .nav-link { color: var(--cr-muted, #8A7C88); }

/* viewcart/checkout summary: kill inner white box, keep gradient panel */
.crx-flow .order-summary { border-radius: 22px !important; box-shadow: 0 26px 56px -26px rgba(187, 31, 85, .55); }
.crx-flow .order-summary .summary-container {
  background: transparent !important;
  border: 0 !important;
  color: rgba(255, 255, 255, .92) !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}
.crx-flow .order-summary .summary-container .subtotal,
.crx-flow .order-summary .summary-container .recurring-totals,
.crx-flow .order-summary .summary-container .bordered-totals { color: rgba(255, 255, 255, .92); border-color: rgba(255, 255, 255, .2) !important; }
.crx-flow .order-summary .summary-container .recurring-charges,
.crx-flow .order-summary .summary-container .cost { color: #fff; }
.crx-flow .order-summary .total-due-today {
  background: rgba(255, 255, 255, .1) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 14px;
  margin: 16px 0;
  padding: 14px 16px !important;
  text-align: start;
}
.crx-flow .order-summary .total-due-today .amt {
  display: block;
  font-size: 2rem;
  line-height: 1.15;
  color: #fff !important;
}
.crx-flow .order-summary .total-due-today span:last-child { color: rgba(255, 255, 255, .85); font-size: .85rem; }

/* checkout / continue buttons inside summary */
.crx-flow .order-summary .btn-checkout,
.crx-flow .order-summary .btn-success {
  display: block;
  width: 100%;
  background: #fff !important;
  border: 0 !important;
  color: var(--cr-plum, #360B3A) !important;
  font-family: var(--cr-f-disp, sans-serif);
  font-weight: 800;
  border-radius: 14px;
  padding: 13px 20px;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .4);
  transition: .25s;
  text-align: center;
}
.crx-flow .order-summary .btn-checkout:hover { transform: translateY(-2px); color: var(--cr-magenta, #BB1F55) !important; }
.crx-flow .order-summary .btn-continue-shopping { color: rgba(255, 255, 255, .85) !important; width: 100%; text-align: center; margin-top: 8px; }
.crx-flow .order-summary .btn-continue-shopping:hover { color: #fff !important; }
.crx-flow .order-summary .text-right { text-align: center !important; }

/* promo tab panel */
.crx-flow .view-cart-tabs .tab-content {
  background: var(--cr-surface, #fff);
  border: 1px solid var(--cr-line, #EEE1EB);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  padding: 16px;
}

/* ---------- RTL: field icons sit on the right, text padded away ---------- */
[dir="rtl"] #order-standard_cart .prepend-icon .field-icon,
[dir="rtl"] .crx-flow .prepend-icon .field-icon {
  right: 0;
  left: auto;
}
[dir="rtl"] #order-standard_cart .prepend-icon .field,
[dir="rtl"] #order-standard_cart .prepend-icon .form-control,
[dir="rtl"] .crx-flow .prepend-icon .field,
[dir="rtl"] .crx-flow .prepend-icon .form-control {
  padding-left: 12px;
  padding-right: 52px;
}
/* phone input (intl-tel-input) keeps its own LTR layout */
[dir="rtl"] .crx-flow .iti { direction: ltr; }
[dir="rtl"] .crx-flow input[type="tel"] { text-align: right; }


/* ============================================================
   Create Grid — card-grid product showcase (append)
   Reuses #order-create_cart shared styles (chips/head/steps).
   Cards live under .crg-mode so they never clash with the
   configurator (.crb-*) variant.
   ============================================================ */

/* --- per-card billing cycle switch --- */
#order-create_cart.crg-mode .crg-card-cycle {
  display: flex; gap: 4px; padding: 4px;
  margin: 0 0 6px; width: 100%;
  background: var(--cr-surface-2, #F6EEF4);
  border: 1px solid var(--cr-line, #EEE1EB);
  border-radius: 12px;
}
#order-create_cart.crg-mode .crg-card-cycle button {
  flex: 1 1 0; text-align: center;
  font-family: var(--cr-f-disp, sans-serif); font-weight: 700; font-size: .8rem;
  color: var(--cr-plum, #360B3A); background: transparent;
  border: 0; border-radius: 9px; padding: 7px 6px; cursor: pointer;
  transition: .2s var(--cr-ease, ease);
}
#order-create_cart.crg-mode .crg-card-cycle button.on {
  background: var(--cr-grad, linear-gradient(135deg, #360B3A, #BB1F55));
  color: #fff; box-shadow: 0 8px 20px -12px rgba(187, 31, 85, .55);
}

/* --- responsive card grid --- */
#order-create_cart.crg-mode .crg-grid {
  display: grid; gap: 22px; align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1180px; margin: 0 auto;
}

/* --- card --- */
#order-create_cart.crg-mode .crg-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--cr-surface, #fff);
  border: 1px solid var(--cr-line, #EEE1EB);
  border-radius: 22px; padding: 30px 26px 28px;
  box-shadow: 0 18px 44px -30px rgba(43, 9, 48, .30);
  transition: transform .25s var(--cr-ease, ease), box-shadow .25s var(--cr-ease, ease), border-color .25s;
}
#order-create_cart.crg-mode .crg-card:hover {
  transform: translateY(-6px);
  border-color: var(--cr-magenta, #BB1F55);
  box-shadow: 0 30px 60px -30px rgba(187, 31, 85, .40);
}
#order-create_cart.crg-mode .crg-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--cr-surface, #fff), var(--cr-surface, #fff)) padding-box,
    var(--cr-grad, linear-gradient(135deg, #360B3A, #BB1F55)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 28px 56px -28px rgba(187, 31, 85, .45);
}
@media (min-width: 992px) {
  #order-create_cart.crg-mode .crg-card.featured { transform: scale(1.035); }
  #order-create_cart.crg-mode .crg-card.featured:hover { transform: scale(1.035) translateY(-6px); }
}

/* --- ribbon --- */
#order-create_cart.crg-mode .crg-ribbon {
  position: absolute; top: 16px; inset-inline-end: 16px;
  font-family: var(--cr-f-disp, sans-serif); font-weight: 800; font-size: .66rem;
  letter-spacing: .04em; text-transform: uppercase;
  color: #fff; background: var(--cr-grad, linear-gradient(135deg, #360B3A, #BB1F55));
  padding: 5px 12px; border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(187, 31, 85, .6);
}

/* --- name --- */
#order-create_cart.crg-mode .crg-card-head { margin-bottom: 14px; }
#order-create_cart.crg-mode .crg-name {
  font-family: var(--cr-f-disp, sans-serif); font-weight: 800;
  font-size: 1.32rem; color: var(--cr-heading, #2B0930); margin: 0;
}

/* --- price --- */
#order-create_cart.crg-mode .crg-price-wrap {
  padding: 16px 0 20px; margin-bottom: 20px;
  border-bottom: 1px solid var(--cr-line, #EEE1EB);
}
#order-create_cart.crg-mode .crg-from {
  display: block; font-family: var(--cr-f-mono, monospace);
  font-size: .7rem; letter-spacing: .06em; color: var(--cr-muted, #8A7C88); margin-bottom: 2px;
}
#order-create_cart.crg-mode .crg-price-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; }
#order-create_cart.crg-mode .crg-price {
  font-family: var(--cr-f-disp, sans-serif); font-weight: 800;
  font-size: 1.9rem; line-height: 1.1; color: var(--cr-magenta, #BB1F55);
}
#order-create_cart.crg-mode .crg-cycle-lbl { font-size: .82rem; color: var(--cr-muted, #8A7C88); font-weight: 600; }
#order-create_cart.crg-mode .crg-setup {
  display: block; margin-top: 6px; font-size: .74rem; color: var(--cr-muted, #8A7C88);
}

/* --- order button --- */
#order-create_cart.crg-mode .crg-order {
  display: block; text-align: center; text-decoration: none;
  font-family: var(--cr-f-disp, sans-serif); font-weight: 700; font-size: .95rem;
  color: var(--cr-plum, #360B3A);
  background: var(--cr-surface, #fff);
  border: 1.5px solid var(--cr-plum, #360B3A);
  border-radius: 14px; padding: 12px 18px;
  transition: .2s var(--cr-ease, ease);
}
#order-create_cart.crg-mode .crg-order:hover {
  background: var(--cr-grad, linear-gradient(135deg, #360B3A, #BB1F55));
  color: #fff; border-color: transparent;
  box-shadow: 0 16px 32px -16px rgba(187, 31, 85, .55);
  transform: translateY(-2px);
}
#order-create_cart.crg-mode .crg-card.featured .crg-order {
  background: var(--cr-grad, linear-gradient(135deg, #360B3A, #BB1F55));
  color: #fff; border-color: transparent;
}
#order-create_cart.crg-mode .crg-card.featured .crg-order:hover { filter: brightness(1.07); }

/* --- "this plan includes" title --- */
#order-create_cart.crg-mode .crg-feats-title {
  display: block; margin: 22px 0 12px;
  font-family: var(--cr-f-mono, monospace);
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cr-muted, #8A7C88);
}

/* --- feature grid: each feature in its own shadowed box --- */
#order-create_cart.crg-mode .crg-feats {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(135px, 1fr)); gap: 10px;
}
#order-create_cart.crg-mode .crg-feats li {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 13px; border-radius: 12px;
  background: var(--cr-surface-2, #F7EEF4);
  border: 1px solid var(--cr-line, #EEE1EB);
  box-shadow: 0 6px 16px -12px rgba(43, 9, 48, .45);
  font-size: .86rem; color: var(--cr-body, #4A3C48); line-height: 1.35;
}
#order-create_cart.crg-mode .crg-feats svg {
  flex: 0 0 auto; width: 16px; height: 16px;
  color: var(--cr-magenta, #BB1F55);
}
/* single-feature-per-row on very narrow cards */
@media (max-width: 360px) {
  #order-create_cart.crg-mode .crg-feats { grid-template-columns: 1fr; }
}

/* --- RTL: ribbon already logical via inset-inline-end --- */
