/* ==========================================================================
   Arkan Cart page — matches pages/Arkan Cart.dc.html
   Class prefix: ct-. All money rendered by WooCommerce; layout by these rules.
   ========================================================================== */

.arkan-main { background: var(--cream); }

/* Shared side padding (mirrors the prototype's .ct-pad) */
.ct-pad { padding-left: 48px; padding-right: 48px; }

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.ct-crumbs-wrap {
  width: 100%;
  background: var(--cream);
  padding-top: 24px;
  padding-bottom: 0;
}
.ct-crumbs {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--body-2);
}
.ct-crumbs a { color: var(--body-2); transition: color 0.2s; }
.ct-crumbs a:hover { color: var(--burgundy); }
.ct-crumbs__sep { opacity: 0.5; }
.ct-crumbs__current { color: var(--burgundy); font-weight: 500; }

/* --------------------------------------------------------------------------
   Page header
   -------------------------------------------------------------------------- */
.ct-header {
  background: var(--cream);
  padding-top: 46px;
  padding-bottom: 34px;
  text-align: center;
}
.ct-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ct-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.ct-header .arkan-divider { margin: 26px 0 20px; }
.ct-header .arkan-divider__line { width: 64px; }
.ct-sublead {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--body);
}

/* --------------------------------------------------------------------------
   Free-delivery progress card
   -------------------------------------------------------------------------- */
.ct-progress-wrap {
  background: var(--cream);
  padding-top: 6px;
  padding-bottom: 30px;
}
.ct-progress-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(45, 10, 18, 0.07);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(45, 10, 18, 0.05);
  padding: 22px 30px;
}
.ct-progress-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}
.ct-progress-ico { flex-shrink: 0; }
.ct-progress-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--body);
}
.ct-progress-text strong { font-weight: 600; color: var(--burgundy); }
.ct-progress-text--done { font-weight: 500; color: var(--ink); }
.ct-progress-track {
  height: 6px;
  border-radius: 6px;
  background: #eadfd2;
  overflow: hidden;
}
.ct-progress-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #c9a24a, #6b1d2c);
  transition: width 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Cart body grid
   -------------------------------------------------------------------------- */
.ct-body-wrap {
  background: var(--cream);
  padding-top: 8px;
  padding-bottom: 90px;
}
.ct-body {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 36px;
  align-items: start;
}

/* --------------------------------------------------------------------------
   LEFT — item table card
   -------------------------------------------------------------------------- */
.ct-table-card {
  background: var(--surface);
  border: 1px solid rgba(45, 10, 18, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* Column headers */
.ct-head {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.2fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 30px;
  border-bottom: 1px solid rgba(26, 22, 20, 0.09);
}
.ct-col {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--burgundy);
  text-transform: uppercase;
}
.ct-col--price { text-align: center; }
.ct-col--qty { text-align: center; }
.ct-col--sub { text-align: right; }

/* Item row */
.ct-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.2fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid rgba(26, 22, 20, 0.07);
}
.ct-cell--product {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.ct-thumb {
  width: 74px;
  height: 92px;
  border-radius: 10px;
  background-color: var(--well);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  display: block;
}
.ct-name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.ct-name a { color: inherit; }
.ct-name a:hover { color: var(--burgundy); }
.ct-scent {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--body-2);
  margin-top: 4px;
}
.ct-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}
.ct-meta p { margin: 0; }
.ct-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 9px;
}
.ct-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.ct-action--remove { color: #a08a72; }
.ct-action--remove:hover { color: var(--burgundy); }
.ct-action--save { color: var(--muted); }
.ct-action--save:hover { color: var(--burgundy); }
.ct-action__div {
  width: 1px;
  height: 12px;
  background: rgba(26, 22, 20, 0.15);
}

/* Unit price */
.ct-price {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--body);
  text-align: center;
}
.ct-price .amount,
.ct-price bdi { font-weight: 400; color: var(--body); }

/* Qty stepper */
.ct-qtywrap { display: flex; justify-content: center; }
.ct-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(26, 22, 20, 0.16);
  border-radius: 9px;
  overflow: hidden;
}
.ct-step {
  width: 36px;
  height: 40px;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
}
.ct-step:hover { background: #f3ede4; }
.ct-step:disabled { opacity: 0.35; cursor: default; }
.ct-step:disabled:hover { background: transparent; }
.ct-qty {
  width: 34px;
  text-align: center;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}

/* Line subtotal */
.ct-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}
.ct-sub .amount,
.ct-sub bdi { font-weight: 600; color: var(--ink); }

/* Table footer */
.ct-table-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
}
.ct-continue {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid rgba(26, 22, 20, 0.2);
  border-radius: 30px;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.ct-continue:hover { border-color: var(--burgundy); color: var(--burgundy); }
.ct-clear {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.ct-clear:hover { color: var(--burgundy); }

/* Saved For Later */
.ct-saved {
  border-top: 1px solid rgba(26, 22, 20, 0.09);
  padding: 24px 30px;
}
.ct-saved--empty {
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--surface);
  border: 1px solid rgba(45, 10, 18, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}
.ct-saved__head {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ct-saved__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}
.ct-saved__thumb {
  width: 54px;
  height: 66px;
  border-radius: 8px;
  background-color: var(--well);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.ct-saved__info { flex: 1; }
.ct-saved__name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.ct-saved__price {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--body-2);
  margin-top: 2px;
}
.ct-saved__move {
  background: transparent;
  border: 1.5px solid rgba(26, 22, 20, 0.2);
  border-radius: 26px;
  padding: 9px 18px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.ct-saved__move:hover { border-color: var(--burgundy); color: var(--burgundy); }

/* --------------------------------------------------------------------------
   RIGHT — order summary
   -------------------------------------------------------------------------- */
.ct-summary {
  background: var(--surface);
  border: 1px solid rgba(45, 10, 18, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow-lift);
  padding: 32px 30px;
  position: sticky;
  top: 96px;
}
.ct-summary__title {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Promo */
.ct-promo { margin-bottom: 20px; }
.ct-promo__row { display: flex; gap: 8px; }
.ct-promo__input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid rgba(26, 22, 20, 0.16);
  border-radius: 9px;
  padding: 12px 13px;
  font-family: var(--sans);
  font-size: 12px;
  color: #2c2420;
  background: var(--surface);
  outline: none;
}
.ct-promo__input:focus { border-color: var(--burgundy); }
.ct-promo__apply {
  border: 1.5px solid var(--burgundy);
  background: transparent;
  color: var(--burgundy);
  border-radius: 9px;
  padding: 0 20px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.ct-promo__apply:hover { background: var(--burgundy); color: #fff; }
.ct-promo__err {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--err);
  margin-top: 8px;
}
.ct-promo__err strong { font-weight: 600; }

/* Applied coupon chip */
.ct-coupon-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f6f2;
  border: 1px solid rgba(47, 143, 91, 0.35);
  border-radius: 9px;
  padding: 11px 14px;
  margin-bottom: 20px;
}
.ct-coupon-chip__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: #2f8f5b;
}
.ct-coupon-remove { margin: 0; }
.ct-coupon-remove__btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s;
}
.ct-coupon-remove__btn:hover { color: var(--burgundy); }

/* Totals list */
.ct-totals {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.ct-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ct-total-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--body);
}
.ct-total-value {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.ct-total-value .amount,
.ct-total-value bdi { font-weight: 500; color: inherit; }
.ct-total-label--ok { color: #2f8f5b; }
.ct-total-value--ok { color: #2f8f5b; font-weight: 600; }
.ct-total-value--ok .amount,
.ct-total-value--ok bdi { color: #2f8f5b; font-weight: 600; }
.ct-total-value--muted {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
}

.ct-summary__div {
  height: 1px;
  background: rgba(26, 22, 20, 0.1);
  margin-bottom: 20px;
}

/* Total row */
.ct-total-final {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
}
.ct-total-final__label {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
}
.ct-total-final__value {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--burgundy);
}
.ct-total-final__value .amount,
.ct-total-final__value bdi {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--burgundy);
}

/* Gift options */
.ct-gift__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1.5px solid rgba(107, 29, 44, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.ct-gift__toggle:hover { border-color: var(--burgundy); }
.ct-gift__ico { flex-shrink: 0; }
.ct-gift__label {
  flex: 1;
  text-align: left;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink);
}
.ct-gift__chev {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.ct-gift__toggle[aria-expanded='true'] .ct-gift__chev { transform: rotate(180deg); }
.ct-gift__note {
  width: 100%;
  border: 1.5px solid rgba(26, 22, 20, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: #2c2420;
  background: var(--surface);
  outline: none;
  resize: vertical;
  margin-bottom: 12px;
  line-height: 1.6;
}
.ct-gift__note:focus { border-color: var(--burgundy); }
.ct-gift__wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1.5px solid rgba(107, 29, 44, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.ct-gift__wrap:hover { border-color: var(--burgundy); }
.ct-gift__box {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1.5px solid rgba(26, 22, 20, 0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-gift__check { opacity: 0; }
.ct-gift__wrap.is-checked .ct-gift__box {
  border-color: var(--burgundy);
  background: var(--burgundy);
}
.ct-gift__wrap.is-checked .ct-gift__check { opacity: 1; }
.ct-gift__wraplabel {
  flex: 1;
  text-align: left;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink);
}
.ct-gift__price {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--burgundy);
}

/* Checkout */
.ct-checkout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--burgundy);
  color: #fff;
  border: none;
  border-radius: 10px;
  height: 54px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  cursor: pointer;
  transition: background 0.25s;
}
.ct-checkout:hover { background: var(--burgundy-dark); }

/* Express divider */
.ct-express-div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ct-express-div__line { flex: 1; height: 1px; background: rgba(26, 22, 20, 0.1); }
.ct-express-div__text {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Express buttons */
.ct-express {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.ct-express__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1.5px solid rgba(26, 22, 20, 0.16);
  border-radius: 9px;
  background: var(--surface);
  padding: 11px 0;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  transition: border-color 0.2s;
}
.ct-express__btn:hover { border-color: var(--burgundy); }
.ct-express__btn svg { display: block; }

/* Delivery estimate */
.ct-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.ct-delivery__text {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--body);
}
.ct-delivery__text strong { color: var(--ink); font-weight: 600; }

/* Continue shopping (full-width secondary) */
.ct-continue-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(26, 22, 20, 0.25);
  border-radius: 10px;
  height: 50px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.ct-continue-full:hover { border-color: var(--burgundy); color: var(--burgundy); }

/* Assurance mini-grid */
.ct-assurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 22, 20, 0.08);
}
.ct-assurance__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}
.ct-assurance__label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--body-2);
  text-transform: uppercase;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Empty state
   -------------------------------------------------------------------------- */
.ct-empty-wrap {
  background: var(--cream);
  padding-top: 8px;
  padding-bottom: 90px;
}
.ct-empty {
  max-width: 1320px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(45, 10, 18, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 90px 40px;
  text-align: center;
}
.ct-empty__disc {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}
.ct-empty__title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.ct-empty__copy {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--body-2);
  margin-bottom: 32px;
}
.ct-empty__cta {
  display: inline-block;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 42px;
  border-radius: 30px;
  transition: background 0.25s;
}
.ct-empty__cta:hover { background: var(--burgundy-dark); }

/* Guard: stock WooCommerce empty-cart block output.
   The Cart page currently holds the stock wp:woocommerce/cart block rather than
   [woocommerce_cart], so WooCommerce renders its own empty state and the theme's
   cart/cart-empty.php never loads. That stock markup ships a "New in store"
   product grid whose .wc-block-grid__products carries margin: 0 -8px, pushing the
   page 8px past the viewport at every width. Neutralise the negative margins so
   the grid stays inside the page while the block markup is still present.
   Harmless once the page is switched to the shortcode: the selector stops matching. */
.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   "Complete Your Selection" upsell
   -------------------------------------------------------------------------- */
.ct-upsell-wrap {
  background: var(--surface);
  padding-top: 88px;
  padding-bottom: 88px;
}
.ct-upsell-intro {
  max-width: 1320px;
  margin: 0 auto 52px;
  text-align: center;
}
.arkan-divider--sm {
  margin: 0 auto 20px;
  gap: 14px;
}
.arkan-divider--sm .arkan-divider__line {
  width: 46px;
  background: linear-gradient(to right, transparent, rgba(107, 29, 44, 0.45));
}
.arkan-divider--sm .arkan-divider__line--r {
  background: linear-gradient(to left, transparent, rgba(107, 29, 44, 0.45));
}
.arkan-divider--sm .arkan-divider__gem { width: 8px; height: 8px; }
.ct-upsell-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ct-upsell-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--body-2);
}
.ct-upsell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ct-addon {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(45, 10, 18, 0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(45, 10, 18, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ct-addon:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(45, 10, 18, 0.1);
}
.ct-addon__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--well);
}
.ct-addon__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.ct-addon:hover .ct-addon__img { transform: scale(1.05); }
.ct-addon__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  background: var(--burgundy);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.ct-addon__body {
  padding: 26px 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ct-addon__name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.ct-addon__tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 16px;
}
.ct-addon__price {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 22px;
  margin-top: auto;
}
.ct-addon__add {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--burgundy);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s;
}
.ct-addon__add:hover { background: var(--burgundy-dark); }

/* Reassurance line below upsell */
.ct-reassure-line {
  max-width: 1320px;
  margin: 46px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.ct-reassure-line__rule {
  flex: 1;
  max-width: 260px;
  height: 1px;
}
.ct-reassure-line__rule--l { background: linear-gradient(to right, transparent, rgba(107, 29, 44, 0.28)); }
.ct-reassure-line__rule--r { background: linear-gradient(to left, transparent, rgba(107, 29, 44, 0.28)); }
.ct-reassure-line__mid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--body);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.ct-trust-wrap {
  background: var(--cream-2);
  padding-top: 60px;
  padding-bottom: 60px;
}
.ct-trust {
  max-width: 1320px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(45, 10, 18, 0.06);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ct-trust__cell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 30px;
  border-right: 1px solid rgba(26, 22, 20, 0.08);
}
.ct-trust__cell:last-child { border-right: none; }
.ct-trust__ico { flex-shrink: 0; display: flex; }
.ct-trust__title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ct-trust__sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--body-2);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .ct-body { grid-template-columns: 1fr; gap: 26px; }
  .ct-summary { position: static; }
}

@media (max-width: 900px) {
  .ct-pad { padding-left: 20px; padding-right: 20px; }
  .ct-upsell { grid-template-columns: repeat(2, 1fr); }
  .ct-trust { grid-template-columns: repeat(2, 1fr); }
  .ct-trust__cell { border-right: none; }
}

@media (max-width: 680px) {
  .ct-head { display: none; }
  .ct-row { grid-template-columns: 1fr; gap: 12px; }
  .ct-price { display: none; }
  .ct-qtywrap { justify-content: flex-start; }
  .ct-sub { text-align: left; font-size: 16px; }
  .ct-upsell { grid-template-columns: 1fr; }
  .ct-trust { grid-template-columns: 1fr; }
  .ct-reassure-line__rule { display: none; }
  .ct-reassure-line__mid { white-space: normal; text-align: center; }
}

/* --------------------------------------------------------------------------
   RTL (Arabic) — mirror directional geometry: text alignment on the table
   columns, the summary/table-card sides, the addon badge and trust borders.
   -------------------------------------------------------------------------- */
html[dir='rtl'] .ct-col--sub { text-align: left; }
html[dir='rtl'] .ct-sub { text-align: left; }
html[dir='rtl'] .ct-gift__label,
html[dir='rtl'] .ct-gift__wraplabel { text-align: right; }
html[dir='rtl'] .ct-addon__badge { left: auto; right: 16px; }
html[dir='rtl'] .ct-trust__cell { border-right: none; border-left: 1px solid rgba(26, 22, 20, 0.08); }
html[dir='rtl'] .ct-trust__cell:last-child { border-left: none; }
html[dir='rtl'] .ct-progress-fill {
  background: linear-gradient(270deg, #c9a24a, #6b1d2c);
}
html[dir='rtl'] .ct-continue svg,
html[dir='rtl'] .ct-continue { }
html[dir='rtl'] .ct-continue svg { transform: scaleX(-1); }

@media (max-width: 680px) {
  html[dir='rtl'] .ct-sub { text-align: right; }
}
