/* ═══════════════════════════════════════════════════════════
   LAROCHE · GRAND TOUR — checkout / cart skin
   Tokens aligned with Landingpage-Samstag/laroche-tokens.css
   (Georg editorial update 29.08.2026):
   - Titles: Jost 800, uppercase (not Cormorant)
   - Cormorant only for rare quotes
   - Self-hosted fonts via grand-tour-fonts.css (no Google CDN)
   Navy #17365D, wine #5C2A5D, sky #E8F1F7, square UI.
   ═══════════════════════════════════════════════════════════ */
:root {
  --navy: #17365D;
  --navy-deep: #0F2543;
  --red: #5C2A5D;
  --red-deep: #3D1A42;
  --red-soft: #B98AC0;
  --sky: #E8F1F7;
  --ink: #232A31;
  --muted: #6E7781;
  --paper: #FFFFFF;
  --ivory: #FAF8F3;
  --hairline: rgba(23, 54, 93, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --header-h: 68px;
  --shadow: 0 18px 50px rgba(23, 54, 93, .10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--navy); color: var(--paper); }
img { display: block; max-width: 100%; height: auto; }
/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.3rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--navy); color: var(--paper); }
.btn--primary:hover { background: var(--navy-deep); }
.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: var(--paper); }
.btn--light { background: var(--paper); color: var(--navy); }
.btn--light:hover { background: var(--sky); }
.btn--ghost { border-color: rgba(255, 255, 255, .65); color: var(--paper); background: transparent; }
.btn--ghost:hover { background: var(--paper); color: var(--navy); }
.btn--block { display: block; width: 100%; }
/* ── Cart page ──────────────────────────────────────────── */
.gw-cart-page {
  display: grid;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media (min-width: 960px) {
  .gw-cart-page {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
    align-items: start;
    gap: 2.5rem;
  }
}
.gw-cart-page__title {
  font-family: var(--sans);
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.04;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  color: var(--navy);
  margin: 0 0 1.25rem;
}
.gw-cart-page__continue {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.25rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
}
.gw-cart-page__continue:hover { color: var(--red); }
.gw-cart-page__summary {
  border: 1px solid var(--hairline);
  padding: 1.5rem;
  background: var(--ivory, var(--paper));
}
.gw-cart-page__summary .btn { width: 100%; text-align: center; }

.cart-items { list-style: none; margin: 0; padding: 0; }
.cart-item {
  border-bottom: 1px solid var(--hairline);
  padding: 1.25rem 0;
}
.product-line-grid {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem 1.1rem;
  align-items: start;
}
@media (min-width: 720px) {
  .product-line-grid {
    grid-template-columns: 88px minmax(0, 1fr) auto;
  }
}
.product-line-grid .product-image img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}
@media (min-width: 720px) {
  .product-line-grid .product-image img { width: 88px; height: 88px; }
}
.product-line-info .label {
  font-family: var(--sans);
  font-weight: 700;
  font-style: normal;
  font-size: 1.05rem;
  color: var(--navy);
  text-decoration: none;
}
.product-line-info .label:hover { color: var(--red); }
.product-line-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.2rem;
  grid-column: 1 / -1;
}
@media (min-width: 720px) {
  .product-line-actions {
    grid-column: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 1rem 1.25rem;
  }
}
.product-line-actions .js-cart-line-product-quantity {
  width: 4.5rem;
  padding: 0.55rem 0.4rem;
  border: 1px solid var(--hairline);
  font-family: var(--sans);
  text-align: center;
}
.product-line-actions .product-price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--navy);
}
.product-line-grid-body .product-line-info.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin-top: 0.35rem;
  font-family: var(--sans);
  font-size: 0.9rem;
}
.product-line-grid-body .product-discount {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}
.product-line-grid-body .regular-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.85rem;
}
.product-line-grid-body .discount {
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.product-line-grid-body .current-price .price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
}
.product-line-grid-body .unit-price-cart {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--muted);
}
.remove-from-cart {
  color: var(--muted);
  text-decoration: none;
}
.remove-from-cart:hover { color: var(--red); }

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.55rem 0;
  font-size: 0.9rem;
}
.cart-summary-line.cart-total {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
}

.product-variants-item {
  margin-bottom: 1rem;
}
.product-variants-item .control-label {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.product-variants-item select {
  width: 100%;
  max-width: 280px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hairline);
  background: var(--paper);
  font-family: var(--sans);
}
.product-variants-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-quantity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin: 0.75rem 0 1rem;
}
.product-quantity .qty input,
#quantity_wanted {
  width: 4.5rem;
  padding: 0.85rem 0.5rem;
  border: 1px solid var(--hairline);
  font-family: var(--sans);
  text-align: center;
}
.product-add-to-cart .control-label {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.pdp__actions .add-to-cart {
  /* match static primary CTA */
}

/* ── Checkout — simple Genusswelt shell ─────────────────── */
body#checkout.gw-checkout,
body.gw-checkout {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  margin: 0;
  min-height: 100vh;
}

body#checkout .header-banner,
body#checkout .header-nav,
body#checkout .header-top,
body#checkout .gw-staging-bar {
  display: none !important;
}

.gw-checkout__header {
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}
.gw-checkout__bar {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.gw-checkout__logo img {
  height: 36px;
  width: auto;
  display: block;
}
.gw-checkout__back {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy) !important;
  text-decoration: none !important;
}
.gw-checkout__back:hover { color: var(--red) !important; }

.gw-checkout__main {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.gw-checkout__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 960px) {
  .gw-checkout__grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
    gap: 2.5rem;
  }
}

.gw-checkout__summary {
  border: 1px solid var(--hairline);
  background: var(--ivory, #f7f3eb);
  padding: 1.5rem 1.35rem;
  position: sticky;
  top: 1rem;
}
.gw-checkout__summary-kicker {
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
}

.gw-checkout__footer {
  border-top: 1px solid var(--hairline);
  padding: 1.5rem 1rem 2.5rem;
  text-align: center;
}
.gw-checkout__legal {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* Steps */
body#checkout .checkout-step {
  border: 1px solid var(--hairline) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: var(--paper) !important;
  padding: 0 !important;
  margin: 0 0 1rem !important;
  color: var(--ink) !important;
}
body#checkout .checkout-step .step-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 1.1rem 1.35rem;
  font-family: var(--sans) !important;
  font-weight: 800 !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: -.01em !important;
  line-height: 1.1 !important;
  font-size: 1.05rem !important;
  color: var(--navy) !important;
  background: transparent;
  border-bottom: 1px solid transparent;
  cursor: default;
}
body#checkout .checkout-step.-reachable:not(.-current) .step-title {
  cursor: pointer;
}
body#checkout .checkout-step.-current .step-title,
body#checkout .checkout-step.js-current-step .step-title {
  border-bottom-color: var(--hairline);
}
body#checkout .checkout-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--navy);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}
body#checkout .checkout-step.-complete .step-number {
  background: var(--navy);
  color: var(--paper);
}
body#checkout .checkout-step .step-heading {
  flex: 1;
}
body#checkout .checkout-step .step-edit {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
body#checkout .checkout-step .step-edit .material-icons {
  display: none;
}

/* GT checkout does not load Material Icons — hide stray icon glyphs */
body#checkout .material-icons {
  display: none !important;
}
body#checkout .bootstrap-touchspin .material-icons {
  display: inline-block !important;
  font-family: "Material Icons", sans-serif;
}

/* Address selector — native radios instead of ThemeVolty fake circles */
body#checkout .address-item .custom-radio {
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  margin-right: 0;
}
body#checkout .address-item .custom-radio input[type="radio"] {
  opacity: 1 !important;
  position: static !important;
}
body#checkout .address-item .custom-radio span {
  display: none !important;
}
body#checkout .address-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 0.65rem 1.1rem 0.85rem;
  font-size: 0.82rem;
}
body#checkout .address-footer a {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
body#checkout .add-address a {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
body#checkout .ps-hidden-by-js {
  display: none !important;
}
body#checkout section.checkout-step .content,
body#checkout .checkout-step .content {
  display: none;
  padding: 1.35rem 1.35rem 1.5rem 1.75rem !important;
}
body#checkout section.checkout-step.-current .content,
body#checkout section.checkout-step.js-current-step .content,
body#checkout .checkout-step.-current .content,
body#checkout .checkout-step.js-current-step .content {
  display: block;
}

/* Guest/login tabs + sub-headings — slight extra inset inside step body */
body#checkout section.checkout-step .content > .nav.nav-inline,
body#checkout section.checkout-step .content > .gw-tabs__list,
body#checkout section.checkout-step .content .gw-checkout-optional-account,
body#checkout section.checkout-step .content .identity {
  padding-left: 0.15rem;
}

/* Horizontal form rows — label column breathing room */
body#checkout section.checkout-step .content .form-group.row > .form-control-label,
body#checkout section.checkout-step .content .form-group.row > label.col-md-3 {
  padding-left: 0.15rem;
}

/* Tabs (guest / sign in) — no Bootstrap */
body#checkout .gw-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin: 0 0 1.4rem;
  padding: 0;
  border: 0;
}
body#checkout .gw-tabs__tab {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0.35rem 0;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}
body#checkout .gw-tabs__tab.is-active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
body#checkout .gw-tabs__panel:not(.is-active),
body#checkout .gw-tabs__panel[hidden] {
  display: none !important;
}
body#checkout .gw-tabs__panel.is-active:not([hidden]) {
  display: block;
}

/* Disclose (summary details / promo / gift) */
body#checkout .gw-disclose[hidden] {
  display: none !important;
}
body#checkout .gw-disclose.is-open {
  display: block;
}

body#checkout .gw-checkout-optional-account {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--ink);
}
body#checkout .gw-checkout-optional-account span {
  color: var(--muted);
  font-size: 0.82rem;
}

body#checkout .gw-checkout-promo {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
}
body#checkout .gw-checkout-promo__toggle,
body#checkout .gw-checkout-promo__close {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
}
body#checkout .gw-checkout-promo__form {
  display: flex;
  gap: 0.5rem;
  margin: 0.75rem 0;
  flex-wrap: wrap;
}
body#checkout .gw-checkout-promo__form .promo-input {
  flex: 1 1 8rem;
  min-width: 0;
}
body#checkout .gw-checkout-promo__hint {
  margin: 0.85rem 0 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}

body#checkout .gw-alert {
  margin: 0.75rem 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--hairline);
  font-size: 0.85rem;
}
body#checkout .gw-alert--danger {
  border-color: rgba(139, 46, 46, 0.35);
  color: var(--red, #8b2e2e);
  background: rgba(139, 46, 46, 0.04);
}
body#checkout .gw-alert--warning {
  border-color: rgba(138, 109, 42, 0.35);
  color: #6b5420;
  background: rgba(138, 109, 42, 0.06);
}
body#checkout .gw-muted {
  color: var(--muted) !important;
}

/* Forms */
body#checkout .form-group,
body#checkout .form-fields,
body#checkout .form__field {
  margin-bottom: 1rem;
}
body#checkout label,
body#checkout .form-control-label,
body#checkout .form__label {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
body#checkout input[type="text"],
body#checkout input[type="email"],
body#checkout input[type="password"],
body#checkout input[type="tel"],
body#checkout input[type="date"],
body#checkout input[type="number"],
body#checkout select,
body#checkout textarea,
body#checkout .form-control {
  width: 100%;
  max-width: 100%;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--hairline) !important;
  border-radius: 0 !important;
  background: var(--paper) !important;
  color: var(--ink);
  box-shadow: none !important;
}
body#checkout input:focus,
body#checkout select:focus,
body#checkout textarea:focus,
body#checkout .form-control:focus {
  outline: 1px solid var(--navy);
  outline-offset: 1px;
  border-color: var(--navy) !important;
}
body#checkout .form-control-comment,
body#checkout .form-text,
body#checkout small {
  font-size: 0.74rem;
  color: var(--muted);
}
body#checkout .radio-inline,
body#checkout .custom-radio,
body#checkout .form__check {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.45;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
}
body#checkout .form__check input[type="checkbox"],
body#checkout .form__check input[type="radio"],
body#checkout .form__field input[type="checkbox"],
body#checkout .form__field input[type="radio"],
body#checkout input[type="checkbox"],
body#checkout input[type="radio"] {
  width: 1.1rem !important;
  height: 1.1rem !important;
  min-width: 1.1rem !important;
  max-width: 1.1rem !important;
  margin: 0.2rem 0 0 !important;
  padding: 0 !important;
  flex: 0 0 auto;
  accent-color: var(--navy);
}
body#checkout .form__grid--date {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 28rem;
}
body#checkout .form__date-part {
  width: 100%;
}

/* Buttons */
body#checkout .btn--primary,
body#checkout .continue,
body#checkout button[type="submit"],
body#checkout #payment-confirmation button,
body#checkout .btn-primary,
body#checkout a.btn--primary {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy) !important;
  border: 1px solid var(--navy) !important;
  color: var(--paper) !important;
  border-radius: 0 !important;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.5rem;
  min-height: 44px;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: none !important;
}
body#checkout .btn--primary:hover,
body#checkout .continue:hover,
body#checkout button[type="submit"]:hover,
body#checkout a.btn--primary:hover {
  background: var(--navy-deep, #0f2543) !important;
  color: var(--paper) !important;
}
body#checkout .btn--primary:disabled,
body#checkout .btn--primary[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Action rows — flex instead of ThemeVolty float/clearfix */
body#checkout .gw-checkout-actions,
body#checkout .form-footer,
body#checkout section.checkout-step .form-footer {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 0.25rem;
  text-align: right !important;
}
body#checkout .form-footer::after,
body#checkout .clearfix::after {
  display: none !important;
  content: none !important;
}

/* Override ThemeVolty fixed-height / float button rules on checkout */
body#checkout .tvcmsaddress-process button.btn,
body#checkout .form-footer button,
body#checkout .form-footer .btn,
body#checkout .continue,
body#checkout button.continue,
body#checkout button[type="submit"].btn--primary,
body#checkout .gw-checkout-actions .btn--primary,
body#checkout .tvlogin-btn .btn--primary {
  float: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 44px !important;
  line-height: 1.35 !important;
  padding: 0.95rem 1.5rem !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}
body#checkout .cancel-address {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1px solid var(--hairline) !important;
  text-decoration: none !important;
}
body#checkout .cancel-address:hover {
  border-color: var(--navy) !important;
  color: var(--red) !important;
  background: transparent !important;
}

body#checkout .btn--block {
  display: flex;
  width: 100%;
}
body#checkout .btn-link,
body#checkout a:not(.btn--primary):not(.gw-checkout__back):not(.gw-checkout__logo) {
  color: var(--navy) !important;
}
body#checkout a:not(.btn--primary):hover {
  color: var(--red) !important;
}

/* Carrier / payment options */
body#checkout .delivery-options,
body#checkout .payment-options {
  display: grid;
  gap: 0.75rem;
}
body#checkout .delivery-option,
body#checkout .gw-delivery-option,
body#checkout .payment-option,
body#checkout .address-item {
  border: 1px solid var(--hairline);
  padding: 0;
  background: var(--paper);
}
body#checkout .gw-delivery-option {
  padding: 0;
}
body#checkout .delivery-option:hover,
body#checkout .gw-delivery-option:hover,
body#checkout .payment-option:hover,
body#checkout .address-item:hover {
  border-color: rgba(23, 54, 93, 0.35);
}
body#checkout .gw-delivery-option__label {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 0.75rem 1rem;
  align-items: center;
  margin: 0;
  padding: 0.95rem 1.1rem;
  cursor: pointer;
}
body#checkout .gw-delivery-option__label input {
  width: 1.1rem !important;
  height: 1.1rem !important;
  min-width: 1.1rem !important;
  max-width: 1.1rem !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: none;
  accent-color: var(--navy);
}
body#checkout .gw-delivery-option__logo {
  width: 48px;
  height: auto;
  object-fit: contain;
}
body#checkout .gw-delivery-option__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
body#checkout .gw-delivery-option__name {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
body#checkout .gw-delivery-option__delay {
  font-size: 0.82rem;
  color: var(--muted);
}
body#checkout .gw-delivery-option__price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--navy);
  white-space: nowrap;
}
body#checkout .carrier-extra-content {
  padding: 0 1.1rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}
body#checkout .gw-delivery-extras {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
}
@media (max-width: 640px) {
  body#checkout .gw-delivery-option__label {
    grid-template-columns: auto 1fr;
  }
  body#checkout .gw-delivery-option__logo { display: none; }
  body#checkout .gw-delivery-option__price {
    grid-column: 2;
    justify-self: start;
  }
}

/* Order summary panel */
.gw-checkout-summary__count {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--ink);
}
.gw-checkout-summary__toggle {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  margin-bottom: 0.85rem;
}
.gw-checkout-summary__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  border-top: 1px solid var(--hairline);
}
.gw-checkout-summary__list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.85rem;
}
body#checkout .cart-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.45rem 0;
  font-size: 0.88rem;
}
body#checkout .cart-summary-line.cart-total {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--hairline);
}
body#checkout .promo-code,
body#checkout .cart-voucher,
body#checkout .gw-checkout-promo {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
}
body#checkout .promo-code a,
body#checkout .cart-voucher a {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
}

/* Kill leftover Bootstrap card chrome inside checkout */
body#checkout .card,
body#checkout .card-block,
body#checkout .card-body {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body#checkout #content,
body#checkout #wrapper {
  max-width: none !important;
  width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}


/* ── Order confirmation ── */
.gw-order-confirm {
  max-width: 52rem;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.gw-order-confirm__title {
  font-family: var(--sans);
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.04;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  color: var(--navy);
  margin: 0 0 1rem;
}
.gw-order-confirm__lead {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 1.5rem;
}
.gw-order-confirm__h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 1.75rem 0 0.85rem;
}
.gw-order-confirm__details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gw-order-confirm__details li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.92rem;
}
.page-order-confirmation table {
  width: 100%;
  border-collapse: collapse;
}
.page-order-confirmation table th,
.page-order-confirmation table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  font-size: 0.9rem;
}

/* ── Payment-step order review ── */
body#checkout .gw-order-review {
  margin-top: 1.75rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--hairline);
}
body#checkout .gw-order-review__intro {
  font-family: var(--sans) !important;
  font-weight: 800 !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: -.01em !important;
  font-size: 1.05rem !important;
  color: var(--navy) !important;
  margin: 0 0 1.5rem !important;
}
body#checkout .gw-order-review__block {
  margin-bottom: 1.75rem;
}
body#checkout .gw-order-review__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  font-family: var(--sans) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy) !important;
  margin: 0 0 0.85rem !important;
}
body#checkout .gw-order-review__edit {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}
body#checkout .gw-order-review__edit:hover {
  color: var(--red);
}
body#checkout .gw-order-review__addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 720px) {
  body#checkout .gw-order-review__addresses {
    grid-template-columns: 1fr;
  }
}
body#checkout .gw-order-review__address {
  border: 1px solid var(--hairline);
  padding: 1rem 1.1rem;
  background: var(--paper);
}
body#checkout .gw-order-review__address-title {
  font-family: var(--sans) !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted) !important;
  margin: 0 0 0.55rem !important;
}
body#checkout .gw-order-review__address-body {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
}
body#checkout .gw-order-review__carrier {
  border: 1px solid var(--hairline);
  padding: 0.95rem 1.1rem;
  background: var(--paper);
  line-height: 1.45 !important;
}
body#checkout .gw-order-review__carrier-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.75rem 1rem;
  align-items: center;
}
body#checkout .gw-order-review__carrier-logo img {
  width: 48px;
  height: auto;
  object-fit: contain;
}
body#checkout .gw-order-review__carrier-name {
  font-size: 0.92rem;
  color: var(--ink);
}
body#checkout .gw-order-review__carrier-delay {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: right;
}
body#checkout .gw-order-review__carrier-price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  white-space: nowrap;
}
@media (max-width: 640px) {
  body#checkout .gw-order-review__carrier-inner {
    grid-template-columns: auto 1fr;
  }
  body#checkout .gw-order-review__carrier-delay,
  body#checkout .gw-order-review__carrier-price {
    text-align: left;
  }
}

/* Order lines table */
body#checkout .gw-order-items,
body.page-order-confirmation .gw-order-items {
  width: 100%;
}
body#checkout .gw-order-items__head,
body.page-order-confirmation .gw-order-items__head {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 6.5rem 4.5rem 6.5rem;
  gap: 0.75rem 1rem;
  align-items: end;
  padding: 0 0 0.65rem;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 0.25rem;
}
body#checkout .gw-order-items__title,
body.page-order-confirmation .gw-order-items__title {
  grid-column: 1 / 3;
  font-family: var(--sans) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy) !important;
  margin: 0 !important;
}
body#checkout .gw-order-items__edit-link,
body.page-order-confirmation .gw-order-items__edit-link {
  margin-left: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
body#checkout .gw-order-items__edit-link:hover,
body.page-order-confirmation .gw-order-items__edit-link:hover {
  color: var(--red);
}
body#checkout .gw-order-items__col,
body.page-order-confirmation .gw-order-items__col {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
body#checkout .gw-order-items__col--unit,
body.page-order-confirmation .gw-order-items__col--unit {
  grid-column: 3;
}
body#checkout .gw-order-items__col--qty,
body.page-order-confirmation .gw-order-items__col--qty {
  grid-column: 4;
}
body#checkout .gw-order-items__col--total,
body.page-order-confirmation .gw-order-items__col--total {
  grid-column: 5;
}
body#checkout .gw-order-items__body,
body.page-order-confirmation .gw-order-items__body {
  border: 1px solid var(--hairline);
  padding: 0.85rem 1rem 1rem;
  background: var(--paper);
}
body#checkout .gw-order-line,
body.page-order-confirmation .gw-order-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 6.5rem 4.5rem 6.5rem;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hairline);
  margin: 0 !important;
}
body#checkout .gw-order-line:last-of-type,
body.page-order-confirmation .gw-order-line:last-of-type {
  border-bottom: 0;
}
body#checkout .gw-order-line__image img,
body.page-order-confirmation .gw-order-line__image img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid var(--hairline);
  background: #fff;
}
body#checkout .gw-order-line__details,
body.page-order-confirmation .gw-order-line__details {
  margin: 0 !important;
  min-width: 0;
}
body#checkout .gw-order-line__name,
body.page-order-confirmation .gw-order-line__name {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink);
}
body#checkout .gw-order-line__details a,
body.page-order-confirmation .gw-order-line__details a {
  color: var(--navy);
  text-decoration: none;
}
body#checkout .gw-order-line__unit,
body#checkout .gw-order-line__qty,
body#checkout .gw-order-line__total,
body.page-order-confirmation .gw-order-line__unit,
body.page-order-confirmation .gw-order-line__qty,
body.page-order-confirmation .gw-order-line__total {
  margin: 0 !important;
  padding: 0 !important;
  text-align: right !important;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink);
  white-space: nowrap;
}
body#checkout .gw-order-line__total,
body.page-order-confirmation .gw-order-line__total {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--navy);
  font-weight: 500;
}
body#checkout .gw-order-items__divider,
body.page-order-confirmation .gw-order-items__divider {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 0.5rem 0 0.85rem;
}
body#checkout .gw-order-totals,
body.page-order-confirmation .gw-order-totals {
  width: 100%;
  margin-left: auto;
  max-width: 24rem;
  border-collapse: collapse;
}
body#checkout .gw-order-totals td,
body.page-order-confirmation .gw-order-totals td {
  padding: 0.45rem 0;
  border: 0;
  font-size: 0.88rem;
  vertical-align: top;
}
body#checkout .gw-order-totals td:last-child,
body.page-order-confirmation .gw-order-totals td:last-child {
  text-align: right;
  white-space: nowrap;
}
body#checkout .gw-order-totals__grand td,
body.page-order-confirmation .gw-order-totals__grand td {
  padding-top: 0.65rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}
body#checkout .gw-order-totals__tax td,
body.page-order-confirmation .gw-order-totals__tax td {
  font-size: 0.78rem;
  color: var(--muted);
}
@media (max-width: 820px) {
  body#checkout .gw-order-items__head,
  body.page-order-confirmation .gw-order-items__head {
    display: none;
  }
  body#checkout .gw-order-line,
  body.page-order-confirmation .gw-order-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.85rem;
    align-items: flex-start;
  }
  body#checkout .gw-order-line__image,
  body.page-order-confirmation .gw-order-line__image {
    flex: 0 0 56px;
  }
  body#checkout .gw-order-line__details,
  body.page-order-confirmation .gw-order-line__details {
    flex: 1 1 calc(100% - 72px);
    min-width: 0;
  }
  body#checkout .gw-order-line__unit,
  body#checkout .gw-order-line__qty,
  body#checkout .gw-order-line__total,
  body.page-order-confirmation .gw-order-line__unit,
  body.page-order-confirmation .gw-order-line__qty,
  body.page-order-confirmation .gw-order-line__total {
    flex: 0 0 auto;
    text-align: left !important;
    font-size: 0.82rem;
  }
  body#checkout .gw-order-totals,
  body.page-order-confirmation .gw-order-totals {
    max-width: none;
  }
}

/* Kill ThemeVolty payment-table offsets on GT checkout review */
body#checkout #order-summary-content .order-confirmation-table .order-line .details,
body#checkout #order-summary-content .order-confirmation-table .order-line .qty,
body#checkout #order-summary-content .order-confirmation-table .tvprocess-payment-price-text {
  margin-top: 0 !important;
  line-height: 1.45 !important;
}
body#checkout #order-summary-content .order-confirmation-table {
  padding: 0 !important;
  margin-bottom: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
body#checkout #order-summary-content #order-items {
  border-right: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

/* Cart page — tighter parity with checkout summary */
body#cart .gw-cart-page__summary,
body.page-cart .gw-cart-page__summary {
  position: sticky;
  top: calc(var(--header-h, 68px) + 1rem);
}
body#cart .cart-item .product-line-info a,
body.page-cart .cart-item .product-line-info a {
  color: var(--navy);
  text-decoration: none;
}
body#cart .cart-item .product-line-info a:hover,
body.page-cart .cart-item .product-line-info a:hover {
  color: var(--red);
}

/* Payment terms modal (no Bootstrap) */
body#checkout #modal.gw-modal:not([hidden]) {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 90;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
body#checkout #modal .modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 54, 93, 0.45);
}
body#checkout #modal .modal__panel {
  position: relative;
  z-index: 1;
  width: min(36rem, 100%);
  max-height: 85vh;
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 1.5rem;
}

/* ── Payment options ── */
.gw-payment-option {
  border: 1px solid var(--hairline);
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
  background: var(--paper);
}
.gw-payment-option__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  cursor: pointer;
  margin: 0;
}
.gw-payment-option__text {
  font-size: 0.92rem;
  color: var(--ink);
}
.gw-payment-option__logo {
  height: 28px;
  width: auto;
  margin-left: auto;
}
.gw-payment-option__info {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.gw-conditions {
  margin: 1.25rem 0;
}
.gw-conditions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gw-conditions__item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.5;
  cursor: pointer;
}
.gw-conditions__item input { margin-top: 0.25rem; }
#payment-confirmation {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
#payment-confirmation .btn--primary {
  width: auto;
  min-width: min(100%, 20rem);
  max-width: 100%;
}

/* ── Empty cart ── */
.gw-cart-empty {
  border: 1px solid var(--hairline);
  background: var(--paper);
  padding: 2rem 1.5rem;
  margin-bottom: 1.25rem;
}
.gw-cart-empty__lead {
  margin: 0 0 0.5rem;
  font-family: var(--sans);
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
  font-size: 1.35rem;
  color: var(--navy);
}
.gw-cart-empty__sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── ThemeVolty neutralize on cart / checkout ─────────────── */
body#cart,
body#checkout,
body.page-order-confirmation {
  font-family: var(--sans) !important;
  color: var(--ink) !important;
  background: var(--paper) !important;
}

body#cart .tvcms-loading-overlay,
body#checkout .tvcms-loading-overlay,
body#cart .tvcmsright-sticky,
body#checkout .tvcmsright-sticky,
body#cart .tvheader-top-info,
body#checkout .tvheader-top-info,
body#cart .tvcmsheader-top-menu,
body#checkout .tvcmsheader-top-menu,
body#cart .tvcmscustomization-block,
body#checkout .tvcmscustomization-block {
  display: none !important;
}

body#cart #wrapper,
body#checkout #wrapper,
body.page-order-confirmation #wrapper {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

body#cart #wrapper > .container,
body#cart .tvcms-box-layout,
body#cart .tvcms-full-layout {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body#cart #content-wrapper.gw-checkout__main,
body#cart main.gw-checkout__main,
body#checkout main.gw-checkout__main {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

/* Hide duplicate back link — header already has continue shopping */
body#cart .gw-cart-page__continue {
  display: none;
}

/* TouchSpin qty — Material Icons not loaded on GT cart/checkout */
body#cart .bootstrap-touchspin,
body#checkout .bootstrap-touchspin {
  display: inline-flex;
  align-items: stretch;
  max-width: none;
  float: none;
}
body#cart .bootstrap-touchspin input.form-control,
body#cart .bootstrap-touchspin input.input-group,
body#checkout .bootstrap-touchspin input.form-control,
body#checkout .bootstrap-touchspin input.input-group {
  width: 3.25rem;
  min-width: 3.25rem;
  height: auto;
  min-height: 2.5rem;
  padding: 0.55rem 0.35rem;
  border: 1px solid var(--hairline);
  border-radius: 0;
  font-family: var(--sans);
  text-align: center;
  float: none;
  box-shadow: none;
}
body#cart .bootstrap-touchspin .input-group-btn-vertical,
body#checkout .bootstrap-touchspin .input-group-btn-vertical {
  display: flex;
  flex-direction: column;
  float: none;
  width: 1.75rem;
}
body#cart .bootstrap-touchspin .btn-touchspin,
body#checkout .bootstrap-touchspin .btn-touchspin {
  flex: 1;
  width: 1.75rem;
  min-height: 1.25rem;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: 0;
  background: var(--paper);
  color: var(--navy);
  line-height: 1;
  box-shadow: none;
}
body#cart .bootstrap-touchspin .btn-touchspin:hover,
body#checkout .bootstrap-touchspin .btn-touchspin:hover {
  background: var(--sky);
}
body#cart .bootstrap-touchspin .material-icons,
body#checkout .bootstrap-touchspin .material-icons {
  display: none !important;
}
body#cart .bootstrap-touchspin .touchspin-up::after,
body#checkout .bootstrap-touchspin .touchspin-up::after {
  content: "+";
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
}
body#cart .bootstrap-touchspin .touchspin-down::after,
body#checkout .bootstrap-touchspin .touchspin-down::after {
  content: "−";
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
}
body#cart .bootstrap-touchspin .input-group-btn-vertical i,
body#checkout .bootstrap-touchspin .input-group-btn-vertical i {
  position: static;
  font-size: inherit;
}

body#cart .breadcrumb,
body#cart #left-column,
body#cart #right-column {
  display: none !important;
}

/* Map Bootstrap / ThemeVolty cart buttons to Grand Tour */
body#cart .btn-primary,
body#cart .btn.btn-primary,
body#cart a.btn--primary,
body#checkout a.btn--primary,
body#checkout button.btn--primary {
  display: inline-flex;
  font-family: var(--sans) !important;
  font-weight: 400 !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 1.05rem 2.3rem !important;
  border: 1px solid var(--navy) !important;
  border-radius: 0 !important;
  background: var(--navy) !important;
  color: var(--paper) !important;
  box-shadow: none !important;
}

body#cart .btn-primary:hover,
body#cart a.btn--primary:hover,
body#checkout a.btn--primary:hover {
  background: var(--navy-deep) !important;
  border-color: var(--navy-deep) !important;
  color: var(--paper) !important;
  transform: translateY(-2px);
}

body#cart .btn-primary .material-icons,
body#checkout .btn-primary .material-icons {
  display: none;
}

/* Cart CTA — override ThemeVolty custom.css fixed 40px height on .cart-grid-right */
body#cart .cart-detailed-actions a.btn,
body#cart .cart-detailed-actions button.btn,
body#cart .cart-grid-right .cart-detailed-actions a.btn,
body#cart .cart-grid-right .cart-detailed-actions button.btn,
body#cart .checkout.cart-detailed-actions a.btn,
body#cart .checkout.cart-detailed-actions button.btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: auto !important;
  min-height: 3.25rem !important;
  line-height: 1.35 !important;
  padding: 1.05rem 1.5rem !important;
  margin-top: 0.75rem;
  font-family: var(--sans) !important;
  font-weight: 400 !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: normal !important;
  border: 1px solid var(--navy) !important;
  border-radius: 0 !important;
  background: var(--navy) !important;
  color: var(--paper) !important;
  box-shadow: none !important;
  background-image: none !important;
  overflow: visible !important;
}
body#cart .cart-detailed-actions a.btn:hover,
body#cart .cart-grid-right .cart-detailed-actions a.btn:hover,
body#cart .checkout.cart-detailed-actions a.btn:hover {
  background: var(--navy-deep) !important;
  border-color: var(--navy-deep) !important;
  color: var(--paper) !important;
  transform: translateY(-2px);
}
body#cart .cart-detailed-actions a.btn i,
body#cart .cart-grid-right .cart-detailed-actions a.btn i {
  display: none !important;
}

.gw-alert {
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--hairline);
  font-size: 0.9rem;
}
.gw-alert--warning {
  background: var(--ivory);
  color: var(--navy);
  border-color: var(--red);
}
.gw-alert--danger {
  background: #f8ecec;
  color: var(--red);
}

