/* ─────────────────────────────────────────────────────────
   Checkout page  (/checkout/)
   Brands the WooCommerce checkout form to the LION Digital 2026 theme.
   ───────────────────────────────────────────────────────── */

/* ── HERO ──────────────────────────────────────────── */
.ck-hero {
  position: relative;
  padding: 64px 48px 72px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,44,85,0.18) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(255,44,85,0.08) 0%, transparent 50%),
    var(--black);
  color: var(--white);
  overflow: hidden;
}

.ck-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 80%);
}

.ck-hero-watermark {
  position: absolute;
  bottom: -34px;
  right: -24px;
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.ck-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Anchor the order meta panel to the top-right of the hero on desktop */
.ck-hero-inner > .ck-hero-meta {
  position: absolute;
  top: 0;
  right: 0;
}

.ck-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}

.ck-hero-h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--white);
  text-transform: uppercase;
}
.ck-hero-h1 em { font-style: normal; color: var(--red); font-weight: 900; }

.ck-hero-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  max-width: 620px;
}

/* Progress steps */
.ck-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  align-items: center;
  width: fit-content;
  max-width: 100%;
}

.ck-steps li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  position: relative;
}

/* Connector line between pills */
.ck-steps li + li::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  display: inline-block;
  margin-right: 14px;
  margin-left: 4px;
  vertical-align: middle;
}

.ck-steps li span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

.ck-steps li span svg { width: 14px; height: 14px; }

/* DONE — green-tinted hollow ring with a check icon */
.ck-steps li.is-done { color: rgba(255,255,255,0.78); }
.ck-steps li.is-done span {
  background: transparent;
  border-color: #4ADE80;
  color: #4ADE80;
}

/* ACTIVE — solid red filled pill */
.ck-steps li.is-active { color: var(--white); }
.ck-steps li.is-active span {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,44,85,0.45);
}

/* Order meta strip — sits on its own line below the step indicator */
.ck-hero-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 18px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  width: fit-content;
  max-width: 100%;
}

.ck-hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.ck-hero-meta-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ck-hero-meta-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.ck-hero-meta-value .amount,
.ck-hero-meta-value .woocommerce-Price-amount { color: var(--red); }

/* ── BODY ──────────────────────────────────────────── */
.ck-body {
  padding: 72px 48px 96px;
  background: var(--bg);
}

.ck-body-inner {
  max-width: 1200px;
  margin: 0 auto 56px;
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

/* Empty / no-WC fallback */
.ck-empty { text-align: center; padding: 48px 24px; }
.ck-empty-h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--black);
  text-transform: uppercase;
}
.ck-empty p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 24px; }

/* ── WooCommerce checkout form override ─────────── */
.ck-body .woocommerce { font-family: inherit; color: var(--black); }
.ck-body .woocommerce-info,
.ck-body .woocommerce-notice {
  padding: 16px 22px 16px 56px;
  background: #FFF7F8;
  border-left: 4px solid var(--red);
  border-radius: 4px;
  font-size: 15px;
  color: var(--black);
  margin: 0 0 24px;
  position: relative;
}
.ck-body .woocommerce-info::before,
.ck-body .woocommerce-notice::before {
  content: "i";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
}
.ck-body .woocommerce-info a,
.ck-body .woocommerce-notice a { color: var(--red); text-decoration: underline; font-weight: 600; }

/* Checkout columns — left: billing + additional info stacked, right: review wrapper pinned */
.ck-body form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 0 48px;
  align-items: start;
}

.ck-body #customer_details { grid-column: 1; grid-row: 1; margin: 0; padding: 0; }

/* The .ck-review-wrap div is injected by JS to wrap heading + review together */
.ck-body .ck-review-wrap {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

/* Pre-JS fallback: heading + review still render in column 2 separately */
.ck-body > * #order_review_heading,
.ck-body form.checkout > #order_review_heading { grid-column: 2; grid-row: 1; }
.ck-body > * #order_review,
.ck-body form.checkout > #order_review { grid-column: 2; grid-row: 2; }

.ck-body #order_review_heading  {
  margin: 0 0 22px;
  padding-top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.ck-body #order_review          { margin: 0; padding: 0; transition: opacity 0.2s; }
.ck-body #order_review.is-loading { opacity: 0.5; pointer-events: none; }

/* "Edit cart →" inline link inside the review heading */
.ck-body .ck-edit-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s, gap 0.18s;
}
.ck-body .ck-edit-cart svg { width: 11px; height: 11px; transition: transform 0.18s; }
.ck-body .ck-edit-cart:hover {
  color: var(--black);
  border-bottom-color: var(--black);
  gap: 9px;
}
.ck-body .ck-edit-cart:hover svg { transform: translateX(2px); }

/* Per-line "×" remove button inside the review table */
.ck-body .ck-item-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--muted) !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  vertical-align: middle;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.ck-body .ck-item-remove:hover {
  background: var(--red);
  color: var(--white) !important;
  transform: rotate(90deg);
}

/* When inside the order review (which uses .shop_table), align cleanly */
.ck-body .shop_table .product-quantity { white-space: nowrap; }

.ck-body #customer_details,
.ck-body .col2-set { display: block; width: 100%; }

.ck-body #customer_details .col-1,
.ck-body #customer_details .col-2 {
  width: 100%;
  float: none;
  display: block;
  margin: 0 0 36px;
  padding: 0;
}

.ck-body #customer_details .col-2:last-child { margin-bottom: 0; }

/* Strip any margin/padding on the WC wrapper divs and h3s so the first
   heading on each side starts at the same Y as its sibling on the other side. */
.ck-body .woocommerce-billing-fields,
.ck-body .woocommerce-additional-fields {
  margin: 0;
  padding: 0;
}

.ck-body .woocommerce-billing-fields h3,
.ck-body .woocommerce-additional-fields h3,
.ck-body #order_review_heading {
  margin-top: 0;
  padding-top: 0;
  line-height: 1.2;
}

/* Section headings inside WC form */
.ck-body .woocommerce-billing-fields h3,
.ck-body .woocommerce-additional-fields h3,
.ck-body #order_review_heading {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--rule);
  position: relative;
}

.ck-body .woocommerce-billing-fields h3::after,
.ck-body .woocommerce-additional-fields h3::after,
.ck-body #order_review_heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 56px;
  height: 2px;
  background: var(--red);
}

/* Form rows */
.ck-body .form-row {
  margin: 0 0 18px;
  padding: 0;
}

.ck-body .form-row.form-row-first,
.ck-body .form-row.form-row-last {
  width: calc(50% - 9px);
  display: inline-block;
}
.ck-body .form-row.form-row-first { margin-right: 12px; }

.ck-body .form-row label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 8px;
}

.ck-body .form-row label .required,
.ck-body .form-row abbr.required {
  color: var(--red);
  text-decoration: none;
  margin-left: 4px;
  font-weight: 900;
}

.ck-body .form-row .input-text,
.ck-body .form-row select,
.ck-body .select2-selection {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.4;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--rule);
  border-radius: 0;
  transition: border-color 0.16s, box-shadow 0.16s;
  -webkit-appearance: none;
  appearance: none;
  height: auto;
}

.ck-body .form-row .input-text:focus,
.ck-body .form-row select:focus,
.ck-body .form-row textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,44,85,0.16);
}

.ck-body .form-row textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--rule);
  resize: vertical;
}

.ck-body .select2-container .select2-selection--single {
  height: 50px;
  display: flex;
  align-items: center;
}
.ck-body .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 1.4;
  padding: 0;
  color: var(--black);
}
.ck-body .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
}

/* Order review table */
.ck-body .woocommerce-checkout-review-order {
  background: #FBFBFB;
  padding: 32px 28px;
  border: 1px solid var(--rule);
  position: sticky;
  top: 32px;
}

.ck-body .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 14.5px;
}

.ck-body .shop_table thead { display: none; }

.ck-body .shop_table th,
.ck-body .shop_table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

.ck-body .shop_table .product-name {
  color: var(--black);
  font-weight: 700;
}

.ck-body .shop_table .product-name strong { font-weight: 700; }

.ck-body .shop_table .product-total {
  text-align: right;
  font-weight: 700;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}

.ck-body .shop_table .cart-subtotal,
.ck-body .shop_table .tax-rate,
.ck-body .shop_table .tax-total,
.ck-body .shop_table .shipping,
.ck-body .shop_table .fee,
.ck-body .shop_table .order-total {
  font-size: 14px;
}

/* Summary rows (Subtotal / Tax / Shipping / Fees) — uniform muted caps style */
.ck-body .shop_table .cart-subtotal th,
.ck-body .shop_table .cart-subtotal td,
.ck-body .shop_table .tax-rate th,
.ck-body .shop_table .tax-rate td,
.ck-body .shop_table .tax-total th,
.ck-body .shop_table .tax-total td,
.ck-body .shop_table .shipping th,
.ck-body .shop_table .shipping td,
.ck-body .shop_table .fee th,
.ck-body .shop_table .fee td {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
}

.ck-body .shop_table .cart-subtotal td,
.ck-body .shop_table .tax-rate td,
.ck-body .shop_table .tax-total td,
.ck-body .shop_table .shipping td,
.ck-body .shop_table .fee td {
  text-align: right;
  letter-spacing: 0; /* numbers don't need caps tracking */
  font-weight: 700;
  color: var(--black);
}

.ck-body .shop_table .order-total th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--black);
  padding-top: 22px;
}

.ck-body .shop_table .order-total td {
  text-align: right;
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  padding-top: 22px;
  letter-spacing: -0.02em;
}

/* Payment methods */
.ck-body #payment {
  background: transparent;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.ck-body #payment .payment_methods {
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent;
}

.ck-body #payment .wc_payment_method {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 16px 18px;
  margin-bottom: 12px;
  border-radius: 4px;
  list-style: none;
}

.ck-body #payment .wc_payment_method > label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.ck-body #payment .payment_box {
  background: transparent !important;
  border: none !important;
  padding: 18px 0 0 !important;
  margin-top: 14px !important;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  border-radius: 0 !important;
  position: relative;
  box-shadow: none !important;
}

/* Subtle separator above the Stripe form */
.ck-body #payment .payment_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--rule);
  position: absolute;
  top: 0;
  left: 0;
}

/* Kill the default arrow caret WC paints above the payment box */
.ck-body #payment .payment_box::before { display: none !important; }

/* Stripe Elements field wrappers (the divs WC Stripe injects around each iframe) */
.ck-body #payment .wc-stripe-elements-field,
.ck-body #payment .StripeElement {
  width: 100% !important;
  padding: 14px 16px !important;
  margin: 0 !important;
  background: var(--white) !important;
  border: 1px solid var(--rule) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  min-height: 50px;
  display: flex;
  align-items: center;
  transition: border-color 0.16s, box-shadow 0.16s;
}

.ck-body #payment .wc-stripe-elements-field--focus,
.ck-body #payment .StripeElement--focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(255,44,85,0.16) !important;
}

.ck-body #payment .wc-stripe-elements-field--invalid,
.ck-body #payment .StripeElement--invalid { border-color: #EF4444 !important; }

/* Labels above each Stripe split field */
.ck-body #payment .form-row label,
.ck-body #payment .wc-stripe-payment-fields label {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
}

/* Force the payment box wrapper and inner form to fill all available width */
.ck-body #payment .payment_box,
.ck-body #payment .payment_box > div,
.ck-body #payment .payment_box > fieldset {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

/* NUCLEAR — kill every border/background on every wrapper inside payment_box.
   We restore borders explicitly on the actual input fields below. */
.ck-body #payment .payment_box,
.ck-body #payment .payment_box *:not(input):not(button):not(.StripeElement):not(.wc-stripe-elements-field):not(.wc-credit-card-form-card-number):not(.wc-credit-card-form-card-expiry):not(.wc-credit-card-form-card-cvc):not(.input-text) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Specifically target known WC Stripe wrappers (in case the :not() chain misses) */
.ck-body #payment .payment_box fieldset,
.ck-body #payment .payment_box .wc-payment-form,
.ck-body #payment .payment_box .wc-stripe-payment-element-container,
.ck-body #payment .payment_box .wc-stripe-card-fields,
.ck-body #payment .payment_box .stripe-payment-element-container,
.ck-body #payment .payment_box .payment-element,
.ck-body #payment .payment_box #payment-element,
.ck-body #payment .payment_box #wc-stripe-cc-form {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

/* Restore the visible border on each actual input field */
.ck-body #payment .wc-stripe-elements-field,
.ck-body #payment .StripeElement,
.ck-body #payment .wc-credit-card-form-card-number,
.ck-body #payment .wc-credit-card-form-card-expiry,
.ck-body #payment .wc-credit-card-form-card-cvc,
.ck-body #payment input.input-text {
  border: 1px solid var(--rule) !important;
  background: var(--white) !important;
  border-radius: 4px !important;
}

/* Stripe form layout: Card Number full-width, then Expiry + CVC as a 2-col row */
.ck-body #payment #wc-stripe-cc-form,
.ck-body #payment .wc-stripe-payment-fields {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px 14px !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  margin: 0 !important;
}

/* Every form-row inside the payment box is block by default, filling its grid cell */
.ck-body #payment .payment_box .form-row {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  display: block !important;
}

/* Card Number always spans both grid columns */
.ck-body #payment .form-row.form-row-wide,
.ck-body #payment .form-row.wc-stripe-card-number,
.ck-body #payment .wc-credit-card-form-card-number-wrap,
.ck-body #payment .form-row[class*="card-number"] {
  grid-column: 1 / -1 !important;
}

/* Expiry stays in col 1, CVC in col 2 — both auto-placed via grid */
.ck-body #payment .form-row.form-row-first,
.ck-body #payment .form-row.wc-stripe-card-expiry,
.ck-body #payment .form-row[class*="card-expiry"] { grid-column: 1; }

.ck-body #payment .form-row.form-row-last,
.ck-body #payment .form-row.wc-stripe-card-cvc,
.ck-body #payment .form-row[class*="card-cvc"] { grid-column: 2; }

/* Tighter spacing inside the payment box */
.ck-body #payment .payment_box p { margin: 0 0 12px; }
.ck-body #payment .payment_box p:last-child { margin-bottom: 0; }
.ck-body #payment .payment_box fieldset { border: 0; padding: 0; margin: 0; }

/* Place Order button */
.ck-body #place_order,
.ck-body button[name="woocommerce_checkout_place_order"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px 28px;
  margin-top: 22px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 10px 28px rgba(255,44,85,0.22);
}

.ck-body #place_order:hover {
  background: var(--black);
  transform: translateY(-2px);
}

/* Terms checkbox */
.ck-body .woocommerce-terms-and-conditions-wrapper {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.ck-body .woocommerce-form__label-for-checkbox {
  display: inline-flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--black);
}
.ck-body .woocommerce-form__input-checkbox { accent-color: var(--red); margin-top: 3px; }

/* ── TRUST SIDEBAR ─────────────────────────────── */
.ck-trust { margin-top: 40px; }
.ck-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ck-trust-card {
  padding: 24px 24px 22px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
}

.ck-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255,44,85,0.1);
  color: var(--red);
  margin-bottom: 14px;
}
.ck-trust-icon svg { width: 22px; height: 22px; }

.ck-trust-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
  color: var(--black);
}

.ck-trust-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.ck-trust-card a { color: var(--red); text-decoration: none; border-bottom: 1px solid var(--red); }
.ck-trust-card a:hover { color: var(--black); border-color: var(--black); }

/* ── BUTTONS ───────────────────────────────────── */
.ck-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s, transform 0.22s;
}
.ck-btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(255,44,85,0.22);
}
.ck-btn--primary:hover { background: var(--black); transform: translateY(-2px); }
.ck-btn svg { width: 14px; height: 14px; }

/* ── MOBILE ────────────────────────────────────── */
@media (max-width: 960px) {
  .ck-body form.checkout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ck-body #customer_details,
  .ck-body .ck-review-wrap { grid-column: 1; grid-row: auto; }
  .ck-body .woocommerce-checkout-review-order { position: static; }
  .ck-trust-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .ck-hero-inner > .ck-hero-meta {
    position: static;
    margin-top: 32px;
  }
}

@media (max-width: 640px) {
  .ck-hero { padding: 48px 24px 56px; }
  .ck-hero-watermark { display: none; }
  .ck-body { padding: 48px 16px 64px; }
  .ck-body-inner { padding: 28px 22px; border-radius: 6px; }
  .ck-body .form-row.form-row-first,
  .ck-body .form-row.form-row-last { width: 100%; margin-right: 0; }
  .ck-hero-meta { width: 100%; gap: 18px; padding: 16px 18px; }
}

/* ─────────────────────────────────────────────────────────
   WooCommerce CART page (/cart/)
   ───────────────────────────────────────────────────────── */

/* Cart body — items full-width on row 1, totals card stacked below on row 2 */
.ck-body--cart .ck-body-inner {
  max-width: 1100px;
  padding: 36px;
}

.ck-body--cart .woocommerce-cart-form { margin-bottom: 32px; }

.ck-body--cart .cart-collaterals {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.ck-body--cart .cart-collaterals > * {
  width: 100%;
  max-width: 420px;
}

/* Main cart table */
.ck-body .woocommerce-cart-form__contents,
.ck-body .shop_table.cart {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 32px;
  font-size: 15px;
}

.ck-body .shop_table.cart thead { display: table-header-group; }

.ck-body .shop_table.cart thead th {
  text-align: left;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 14px;
  border-bottom: 2px solid var(--rule);
}

.ck-body .shop_table.cart tbody td {
  padding: 18px 14px;
  vertical-align: middle;
  border-bottom: 1px solid var(--rule);
}

.ck-body .shop_table.cart tbody tr:last-child td { border-bottom: 1px solid var(--rule); }

/* Product thumbnail column */
.ck-body .shop_table.cart .product-thumbnail { width: 90px; }
.ck-body .shop_table.cart .product-thumbnail img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--rule);
}

/* Product name */
.ck-body .shop_table.cart .product-name a {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px;
}
.ck-body .shop_table.cart .product-name a:hover { color: var(--red); }

.ck-body .shop_table.cart .variation { margin: 6px 0 0; font-size: 13px; color: var(--muted); }
.ck-body .shop_table.cart .variation dt { display: inline; margin-right: 4px; font-weight: 700; }
.ck-body .shop_table.cart .variation dd { display: inline; margin-right: 12px; }

/* Price + subtotal columns */
.ck-body .shop_table.cart .product-price,
.ck-body .shop_table.cart .product-subtotal {
  font-weight: 700;
  color: var(--black);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ck-body .shop_table.cart .product-subtotal { color: var(--red); font-size: 16px; }

/* Quantity stepper with − / + buttons */
.ck-body .shop_table.cart .product-quantity { width: 150px; }
.ck-body .shop_table.cart .product-quantity .quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}

.ck-body .shop_table.cart .qty {
  width: 50px;
  padding: 10px 4px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  border: none;
  background: transparent;
  color: var(--black);
  -moz-appearance: textfield;
  appearance: textfield;
}
.ck-body .shop_table.cart .qty::-webkit-outer-spin-button,
.ck-body .shop_table.cart .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ck-body .shop_table.cart .qty:focus {
  outline: none;
  background: rgba(255,44,85,0.06);
}

/* − / + buttons */
.ck-body .ck-qty-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  flex-shrink: 0;
  user-select: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* Reset to white whenever the button is NOT being hovered, even after click/focus */
.ck-body .ck-qty-btn,
.ck-body .ck-qty-btn:focus,
.ck-body .ck-qty-btn:active {
  background: var(--white);
  color: var(--black);
}

/* Subtle hover — just a soft grey wash + red icon, not a full red fill */
.ck-body .ck-qty-btn:hover {
  background: #F4F4F4;
  color: var(--red);
}

/* Keyboard focus ring only (not mouse) */
.ck-body .ck-qty-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.ck-body .ck-qty-btn--down { border-right: 1px solid var(--rule); }
.ck-body .ck-qty-btn--up   { border-left:  1px solid var(--rule); }

/* Remove (×) button column */
.ck-body .shop_table.cart .product-remove { width: 40px; padding-right: 0; }
.ck-body .shop_table.cart .product-remove .remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  color: var(--muted) !important;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.ck-body .shop_table.cart .product-remove .remove:hover {
  background: var(--red) !important;
  color: var(--white) !important;
  transform: rotate(90deg);
}

/* Coupon + Update Cart row */
.ck-body .shop_table.cart .actions {
  background: #FBFBFB;
  padding: 18px 16px !important;
}

.ck-body .coupon {
  display: inline-flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.ck-body .coupon label { display: none; }
.ck-body .coupon #coupon_code {
  width: 220px;
  height: 46px;
  padding: 0 16px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  box-sizing: border-box;
  line-height: 46px;
}
.ck-body .coupon #coupon_code:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,44,85,0.16);
}
.ck-body .coupon button[name="apply_coupon"] {
  height: 46px;
  padding: 0 24px;
  background: var(--black);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ck-body .coupon button[name="apply_coupon"]:hover { background: var(--red); }

/* Update Cart — hidden in the UI because the +/- buttons auto-update the cart;
   the button is still in the DOM so the JS can programmatically click it. */
.ck-body button[name="update_cart"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Cart totals card — sits on its own row beneath the items, right-aligned */
.ck-body .cart_totals {
  margin: 0;
  background: #FBFBFB;
  border: 1px solid var(--rule);
  padding: 28px 32px 28px;
  border-radius: 6px;
  box-sizing: border-box;
  width: 100%;
}

/* Force the inner totals table to respect the card width */
.ck-body .cart_totals table.shop_table {
  width: 100% !important;
  max-width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  border: none;
}

.ck-body .cart_totals table.shop_table th { width: 1%; white-space: nowrap; }
.ck-body .cart_totals table.shop_table td { width: auto; text-align: right; }

.ck-body .cart_totals h2 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rule);
  position: relative;
}
.ck-body .cart_totals table.shop_table th,
.ck-body .cart_totals table.shop_table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--rule);
    vertical-align: middle;
    border: none;
}

/* Slight breathing room above the stacked TOTAL block (no border) */
.ck-body .cart_totals .order-total { margin: 0; }

.ck-body .cart_totals .tax-total,
.ck-body .cart_totals .cart-subtotal {
    border-bottom: 1px solid !important;
}

.ck-body .cart_totals .cart-subtotal th,
.ck-body .cart_totals .tax-rate th,
.ck-body .cart_totals .tax-total th,
.ck-body .cart_totals .shipping th,
.ck-body .cart_totals .fee th {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.ck-body .cart_totals .cart-subtotal td,
.ck-body .cart_totals .tax-rate td,
.ck-body .cart_totals .tax-total td,
.ck-body .cart_totals .shipping td,
.ck-body .cart_totals .fee td {
  text-align: right;
  font-weight: 700;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}
/* TOTAL row — single horizontal row: label left, big red price right */
.ck-body .cart_totals .order-total {
    display: table-row;
    padding: 10px 0 4px;
}
.ck-body .cart_totals .order-total th,
.ck-body .cart_totals .order-total th,
.ck-body .cart_totals .order-total td {
  display: table-cell;
  padding: 14px 0;
  border: 0;
  vertical-align: middle;
  white-space: nowrap;
}
.ck-body .cart_totals .order-total th {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
}
.ck-body .cart_totals .order-total td {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 900;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-align: right;
}

/* Proceed to checkout button — override WC default purple `.button.alt` styling */
.ck-body .wc-proceed-to-checkout {
  margin-top: 28px;
  padding-top: 0;
}
.ck-body .wc-proceed-to-checkout .checkout-button,
.ck-body .wc-proceed-to-checkout a.checkout-button,
.ck-body a.checkout-button,
.ck-body a.checkout-button.button,
.ck-body a.checkout-button.button.alt,
.ck-body a.checkout-button.button.alt.wc-forward {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box !important;
  padding: 16px 18px !important;
  background: var(--red) !important;
  background-color: var(--red) !important;
  background-image: none !important;
  color: var(--white) !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 10px 28px rgba(255,44,85,0.22) !important;
  text-shadow: none !important;
  white-space: nowrap !important;
}
.ck-body a.checkout-button:hover,
.ck-body a.checkout-button.button:hover,
.ck-body a.checkout-button.button.alt:hover {
  background: var(--black) !important;
  background-color: var(--black) !important;
  transform: translateY(-2px);
}

/* Empty cart state */
.ck-body .cart-empty,
.ck-body .woocommerce-cart .return-to-shop {
  text-align: center;
  padding: 48px 24px;
  font-size: 17px;
  color: var(--muted);
}
.ck-body .return-to-shop .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 16px 32px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s, transform 0.22s;
}
.ck-body .return-to-shop .button:hover { background: var(--black); transform: translateY(-2px); }

/* Cross-sells (recommended products) — hide by default to keep cart focused */
.ck-body .cross-sells { display: none; }

@media (max-width: 720px) {
  .ck-body .shop_table.cart thead { display: none; }
  .ck-body .shop_table.cart,
  .ck-body .shop_table.cart tbody,
  .ck-body .shop_table.cart tr,
  .ck-body .shop_table.cart td { display: block; width: 100%; }
  .ck-body .shop_table.cart tr {
    padding: 16px 14px;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 8px 14px;
    align-items: center;
  }
  .ck-body .shop_table.cart tbody td { padding: 0; border: none; }
  .ck-body .shop_table.cart .product-thumbnail { grid-row: 1 / span 3; }
  .ck-body .shop_table.cart .product-remove { grid-column: 3; grid-row: 1; }
  .ck-body .shop_table.cart .product-name { grid-column: 2; grid-row: 1 / span 2; }
  .ck-body .shop_table.cart .product-quantity { grid-column: 2; grid-row: 3; }
  .ck-body .shop_table.cart .product-subtotal { grid-column: 3; grid-row: 3; text-align: right; }
  .ck-body .shop_table.cart .product-price { display: none; }
  .ck-body .shop_table.cart .actions { display: block; grid-template-columns: none; padding: 16px !important; }
  .ck-body .coupon { width: 100%; }
  .ck-body .coupon #coupon_code { flex: 1; min-width: 0; }
  .ck-body .cart_totals { max-width: none; }
}

/* ─────────────────────────────────────────────────────────
   REVAMP — soft, airy, low-chrome checkout look
   Overrides the heavy dark borders applied earlier with a
   site-friendly hairline grey + whitespace-led layout.
   ───────────────────────────────────────────────────────── */
.ck-body {
  /* Soft hairline scoped to checkout/cart only — doesn't affect rest of site */
  --rule: #ECECEC;
}

/* Strip the outer wrapper box — let the form sit on the page bg */
.ck-body-inner {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 24px 0 !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  border-radius: 0 !important;
}

/* Section headings — quieter, no thick black underline */
.ck-body .woocommerce-billing-fields h3,
.ck-body .woocommerce-additional-fields h3,
.ck-body #order_review_heading {
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  border-bottom: 1px solid var(--rule) !important;
  padding-bottom: 14px !important;
}
.ck-body .woocommerce-billing-fields h3::after,
.ck-body .woocommerce-additional-fields h3::after,
.ck-body #order_review_heading::after {
  background: var(--red);
  width: 40px;
  height: 2px;
  bottom: -1px;
}

/* Inputs — soft hairline only, no heavy black ring */
.ck-body .form-row .input-text,
.ck-body .form-row select,
.ck-body .form-row textarea,
.ck-body .select2-selection {
  border: 1px solid var(--rule) !important;
  background: #FAFAFA !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  transition: background 0.16s, border-color 0.16s, box-shadow 0.16s !important;
}
.ck-body .form-row .input-text:hover,
.ck-body .form-row select:hover,
.ck-body .form-row textarea:hover { background: #fff !important; }

.ck-body .form-row .input-text:focus,
.ck-body .form-row select:focus,
.ck-body .form-row textarea:focus {
  background: #fff !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(255,44,85,0.08) !important;
}

/* Order review panel — flat card, no heavy border */
.ck-body .woocommerce-checkout-review-order,
.ck-body .ck-review-wrap {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
.ck-body #order_review {
  background: #FAFAFA !important;
  border: 1px solid var(--rule) !important;
  border-radius: 10px !important;
  padding: 28px 26px !important;
}

/* Order review item rows — light dividers */
.ck-body .shop_table,
.ck-body .shop_table th,
.ck-body .shop_table td { border-color: var(--rule) !important; }

.ck-body .shop_table .product-name,
.ck-body .shop_table .product-total { font-weight: 700; color: var(--black); }

/* Payment method tile — flat, soft border */
.ck-body #payment {
  background: transparent !important;
  border-top: 1px solid var(--rule) !important;
  margin-top: 22px !important;
  padding-top: 22px !important;
}
.ck-body #payment .wc_payment_method {
  background: #fff !important;
  border: 1px solid var(--rule) !important;
  border-radius: 10px !important;
  padding: 18px 20px !important;
  margin-bottom: 0 !important;
}

/* Credit card fields — soft border, no nested wrappers */
.ck-body #payment .wc-stripe-elements-field,
.ck-body #payment .StripeElement,
.ck-body #payment .wc-credit-card-form-card-number,
.ck-body #payment .wc-credit-card-form-card-expiry,
.ck-body #payment .wc-credit-card-form-card-cvc {
  background: #FAFAFA !important;
  border: 1px solid var(--rule) !important;
  border-radius: 8px !important;
  min-height: 48px !important;
  padding: 12px 14px !important;
}
.ck-body #payment .wc-stripe-elements-field--focus,
.ck-body #payment .StripeElement--focus {
  background: #fff !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(255,44,85,0.08) !important;
}

/* Coupon banner — no thick red side bar, just soft pink wash */
.ck-body .woocommerce-info,
.ck-body .woocommerce-notice {
  background: #FFF7F8 !important;
  border: 1px solid #FFE0E6 !important;
  border-left: 0 !important;
  border-radius: 8px !important;
  padding: 14px 18px 14px 50px !important;
}
.ck-body .woocommerce-info::before,
.ck-body .woocommerce-notice::before {
  left: 14px !important;
  width: 22px !important;
  height: 22px !important;
  font-size: 12px !important;
}

/* Place Order button radius softened */
.ck-body #place_order,
.ck-body button[name="woocommerce_checkout_place_order"] {
  border-radius: 8px !important;
}

/* Cart totals card — soft fill, no heavy border */
.ck-body .cart_totals {
  background: #FAFAFA !important;
  border: 1px solid var(--rule) !important;
  border-radius: 10px !important;
}

/* Cart table — light dividers between rows */
.ck-body .shop_table.cart thead th {
  border-bottom: 1px solid var(--rule) !important;
  color: #888 !important;
}
.ck-body .shop_table.cart tbody td { border-bottom: 1px solid var(--rule) !important; }
.ck-body .shop_table.cart .actions { background: transparent !important; }

/* ── COUPON ROW — match the revamp aesthetic + perfect alignment ── */
.ck-body .coupon {
  display: flex !important;
  align-items: stretch !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 520px !important;
}

.ck-body .coupon #coupon_code {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  height: 48px !important;
  padding: 0 16px !important;
  font-size: 13.5px !important;
  font-family: inherit !important;
  background: #FAFAFA !important;
  color: var(--black) !important;
  border: 1px solid var(--rule) !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-weight: 700 !important;
  line-height: 48px !important;
  box-sizing: border-box !important;
}

.ck-body .coupon #coupon_code:focus {
  outline: none !important;
  background: #fff !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(255,44,85,0.08) !important;
}

.ck-body .coupon button[name="apply_coupon"] {
  flex: 0 0 auto !important;
  height: 48px !important;
  padding: 0 22px !important;
  background: var(--black) !important;
  background-color: var(--black) !important;
  color: var(--white) !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  border: 0 !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: background 0.18s !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.ck-body .coupon button[name="apply_coupon"]:hover {
  background: var(--red) !important;
}

/* ── CHECKOUT COUPON FORM (.checkout_coupon) — matches cart's .coupon styling ── */
.ck-body .checkout_coupon {
  display: flex !important;
  align-items: stretch !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  margin: 0 0 24px !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

/* WC wraps the input and button in <p class="form-row form-row-*"> — flatten them */
.ck-body .checkout_coupon .form-row,
.ck-body .checkout_coupon p.form-row {
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  display: contents !important;
}

.ck-body .checkout_coupon #coupon_code,
.ck-body .checkout_coupon input.input-text {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  height: 48px !important;
  padding: 0 16px !important;
  font-size: 13.5px !important;
  font-family: inherit !important;
  background: #FAFAFA !important;
  color: var(--black) !important;
  border: 1px solid var(--rule) !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-weight: 700 !important;
  line-height: 48px !important;
  box-sizing: border-box !important;
}

.ck-body .checkout_coupon input.input-text:focus {
  outline: none !important;
  background: #fff !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(255,44,85,0.08) !important;
}

.ck-body .checkout_coupon button[name="apply_coupon"],
.ck-body .checkout_coupon button.button {
  flex: 0 0 auto !important;
  height: 48px !important;
  padding: 0 22px !important;
  background: var(--black) !important;
  background-color: var(--black) !important;
  background-image: none !important;
  color: var(--white) !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  border: 0 !important;
  border-radius: 8px !important;
  cursor: pointer;
  transition: background 0.18s !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-shadow: none !important;
}

.ck-body .checkout_coupon button[name="apply_coupon"]:hover,
.ck-body .checkout_coupon button.button:hover {
  background: var(--red) !important;
  background-color: var(--red) !important;
}
