:root {
  --checkout-bg: #f6f5f3;
  --checkout-ink: #0f0f0f;
  --checkout-muted: #72706b;
  --checkout-soft: #ffffff;
  --checkout-line: #dedbd5;
  --checkout-line-dark: #161616;
  --checkout-gold: #a7792d;
  --checkout-cream: #fff7e5;
  --checkout-green: #dff7eb;
  --checkout-green-ink: #368457;
}

body.checkout-page-mode {
  background: var(--checkout-bg);
  color: var(--checkout-ink);
}

.checkout-marquee {
  height: 30px;
  background: #ead8cf;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.checkout-marquee .promo-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: checkout-marquee 34s linear infinite;
  font-size: 13px;
  font-weight: 700;
  color: #181512;
  white-space: nowrap;
  will-change: transform;
}

.checkout-marquee .promo-group {
  height: 100%;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 30px;
  padding-right: 30px;
}

.checkout-marquee span {
  flex: 0 0 auto;
}

.checkout-marquee span::before {
  content: "♥";
  margin-right: 14px;
  color: #bd4d47;
}

@keyframes checkout-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

body.checkout-page-mode .checkout-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff !important;
  border-bottom: 1px solid #ece9e2;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.04) !important;
}

.checkout-header-inner {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 42px minmax(220px, 320px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 0 48px;
  background: #fff;
}

.checkout-menu-button {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
}

.checkout-menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  background: #111;
}

body.checkout-page-mode .checkout-header .brand {
  gap: 14px;
}

body.checkout-page-mode .checkout-header .logo {
  width: 58px;
  height: 58px;
  border-width: 2px;
  box-shadow: none;
}

body.checkout-page-mode .checkout-header .brand-name {
  font-size: 27px;
  line-height: 1;
}

body.checkout-page-mode .checkout-header .brand-tagline {
  color: #9d7331;
  font-size: 13px;
  font-weight: 700;
}

body.checkout-page-mode .checkout-header .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-width: 0;
}

body.checkout-page-mode .checkout-header .main-nav a {
  color: #101010;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.checkout-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.checkout-return-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #e2d4bc;
  background: #fff8ec;
  color: #161616;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.checkout-shell {
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 54px 32px 58px;
}

.checkout-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 44px;
}

.checkout-progress-line {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 1px;
  background: #cfcfcf;
  z-index: 0;
}

.checkout-step {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #9a9893;
  cursor: pointer;
  font-family: inherit;
}

.checkout-step:disabled {
  cursor: default;
}

.checkout-step span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #dedede;
  background: #fff;
  color: #121212;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.checkout-step strong {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

.checkout-step.is-active span,
.checkout-step.is-complete span {
  background: #050505;
  border-color: #050505;
  color: #fff;
}

.checkout-step.is-active strong {
  color: #111;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 46px;
}

.checkout-main {
  min-width: 0;
}

.checkout-panel {
  display: none;
}

.checkout-panel.is-active {
  display: block;
}

.checkout-panel-head {
  position: relative;
  margin-bottom: 20px;
}

.checkout-kicker {
  margin: 0 0 6px;
  color: var(--checkout-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-panel h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.98;
  font-weight: 800;
}

.checkout-count {
  display: inline-flex;
  margin-top: 9px;
  color: var(--checkout-muted);
  font-weight: 800;
  font-size: 14px;
}

.checkout-products-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #e7e4dd;
}

.checkout-stock-blocker {
  margin: 0 0 14px;
  padding: 13px 15px;
  border: 1px solid #f7c6c2;
  background: #fff1f0;
  color: #b42318;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.checkout-product {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 108px 128px 34px;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #e7e4dd;
}

.checkout-product-image {
  width: 86px;
  height: 86px;
  background: #fff;
  border: 1px solid #ede9e0;
  display: grid;
  place-items: center;
}

.checkout-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.checkout-product-info h2 {
  margin: 0 0 6px;
  color: #101010;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.checkout-product-info p {
  margin: 4px 0 0;
  color: #77736d;
  font-size: 12px;
  font-weight: 600;
}

.checkout-product-info .checkout-stock-note,
.checkout-product-info .checkout-stock-warning {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
}

.checkout-product-info .checkout-stock-note {
  color: #4f6f52;
}

.checkout-product-info .checkout-stock-warning {
  color: #b42318;
}

.checkout-qty {
  display: inline-grid;
  grid-template-columns: 32px 38px 32px;
  height: 38px;
  border: 1px solid #dedbd5;
  background: #fff;
  justify-self: center;
}

.checkout-qty button {
  border: 0;
  background: transparent;
  font-size: 16px;
  cursor: pointer;
  color: #111;
}

.checkout-qty button:disabled {
  cursor: not-allowed;
  color: #b7b1a8;
}

.checkout-black-button:disabled,
.checkout-black-button.is-disabled,
.btn-checkout-submit:disabled,
.btn-checkout-submit.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.checkout-qty span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #efede8;
  border-right: 1px solid #efede8;
  font-weight: 800;
}

.checkout-product-price {
  display: grid;
  justify-items: end;
  gap: 5px;
  font-weight: 800;
}

.checkout-unit-new {
  display: inline-flex;
  padding: 3px 7px;
  background: #fff3cd;
  color: #222;
  font-size: 14px;
}

.checkout-unit-old {
  color: #87837c;
  text-decoration: line-through;
  font-size: 13px;
}

.checkout-product-price em {
  display: inline-flex;
  padding: 2px 6px;
  background: #f6f1df;
  color: #111;
  font-style: normal;
  font-size: 11px;
}

.checkout-product-actions button {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 22px;
  cursor: pointer;
}

.checkout-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.checkout-black-button,
.checkout-link-button,
.btn-checkout-submit,
.checkout-back-button,
.checkout-primary-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid #111;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
}

.checkout-link-button,
.checkout-back-button {
  background: transparent;
  color: #111;
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.checkout-primary-link {
  margin-top: 20px;
}

.form-grid {
  display: grid;
  gap: 20px 22px;
  margin-bottom: 20px;
}

.form-grid--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #151515;
  font-size: 13px;
  font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 0 15px;
}

.form-group textarea {
  min-height: 108px;
  padding-top: 15px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid #111;
  outline-offset: -2px;
}

.checkout-check-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 26px;
  font-weight: 800;
  font-size: 14px;
}

.checkout-check-row input,
.checkout-agreement input {
  width: 20px;
  height: 20px;
  accent-color: #000;
}

.checkout-user-type {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 14px;
}

.checkout-user-type span {
  margin-right: 12px;
  color: #111;
}

.checkout-user-type label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkout-user-type input {
  width: 18px;
  height: 18px;
  accent-color: #000;
}

.checkout-cargo-box {
  width: min(100%, 480px);
  min-height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border: 2px solid #111;
  background: #fff;
  margin: 18px 0 24px;
}

.checkout-cargo-box div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cargo-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 5px solid #000;
}

.checkout-cargo-box em {
  padding: 3px 7px;
  background: #fff4cf;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.cargo-icon {
  color: #777;
  font-size: 28px;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.payment-option {
  min-height: 72px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border: 1px solid transparent;
  background: #fff;
  cursor: pointer;
}

.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #c8c8c8;
  display: inline-block;
  position: relative;
}

.payment-option.is-selected {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}

.payment-option.is-selected .payment-radio {
  border-color: #111;
}

.payment-option.is-selected .payment-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111;
  position: absolute;
  top: 3px;
  left: 3px;
}

.payment-copy {
  display: grid;
  gap: 4px;
}

.payment-copy strong {
  font-size: 15px;
  color: #111;
}

.payment-copy small {
  color: #77736d;
  font-weight: 700;
  font-size: 12px;
}

.payment-brand {
  font-weight: 900;
  color: #234fa4;
  font-size: 15px;
}

.payment-option:not(.is-paypal) .payment-brand {
  color: var(--checkout-gold);
}

.payment-detail {
  display: none;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #e8e2d6;
  margin-bottom: 24px;
}

.payment-detail.is-active {
  display: block;
}

.payment-detail h2,
.checkout-contract-box h2 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #111;
}

.payment-detail p,
.checkout-contract-box p {
  margin: 0 0 16px;
  color: #66635d;
  line-height: 1.6;
  font-weight: 600;
}

.paypal-sim-card {
  display: grid;
  gap: 8px;
  width: min(100%, 380px);
  padding: 18px;
  background: linear-gradient(135deg, #123a78, #0c5db8);
  color: #fff;
}

.paypal-sim-card span {
  font-size: 18px;
  font-weight: 900;
}

.paypal-sim-card strong {
  font-size: 28px;
}

.paypal-sim-card small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.bank-card {
  width: min(100%, 430px);
  display: grid;
  background: #fff;
  border: 1px solid #e0ddd6;
}

.bank-card label {
  display: grid;
  gap: 8px;
  padding: 15px 18px;
  border-bottom: 1px solid #e0ddd6;
}

.bank-card label:last-child {
  border-bottom: 0;
}

.bank-card span {
  color: #8a8580;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.bank-card strong {
  color: #111;
  font-size: 16px;
  line-height: 1.35;
}

.copy-iban {
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #111;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.bank-transfer-method {
  display: grid;
  gap: 3px;
  margin: 0 0 12px;
}

.bank-transfer-method span,
.bank-transfer-data span {
  color: #777167;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bank-transfer-method strong { font-size: 16px; }

.bank-transfer-card {
  display: grid;
  gap: 0;
  width: min(100%, 640px);
  overflow: hidden;
  border: 1px solid #ded8ce;
  border-radius: 8px;
  background: #fff;
}

.bank-transfer-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid #e5dfd4;
  background: #f9f6f0;
}

.bank-transfer-card-head img { width: 34px; height: 34px; object-fit: contain; }
.bank-transfer-card-head strong { font-size: 15px; }
.bank-transfer-data { display: grid; gap: 5px; padding: 12px 14px; border-bottom: 1px solid #e5dfd4; }
.bank-transfer-data strong { overflow-wrap: anywhere; font-size: 14px; line-height: 1.45; }
.bank-transfer-card p { margin: 0; padding: 12px 14px; color: #5c5851; font-size: 12px; font-weight: 700; line-height: 1.45; }

.checkout-contract-box {
  border-top: 1px solid #dedbd5;
  padding-top: 22px;
}

.checkout-side {
  position: sticky;
  top: 112px;
}

.order-card {
  background: #fff;
  padding: 26px;
  border: 1px solid #ece8df;
  display: grid;
  gap: 15px;
}

.order-card h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1;
  color: #050505;
}

.checkout-summary-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0 0 13px;
  border-bottom: 1px solid #dfddd7;
}

.checkout-summary-list li,
.checkout-meta-row,
.checkout-summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.checkout-summary-list li span,
.checkout-meta-row span,
.checkout-summary-total span {
  color: #42403c;
  font-size: 13px;
  font-weight: 700;
}

.checkout-summary-list li strong,
.checkout-meta-row strong,
.checkout-summary-total span:last-child {
  color: #111;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.checkout-meta-row {
  padding-bottom: 12px;
  border-bottom: 1px solid #dfddd7;
}

.checkout-meta-row.is-highlight strong {
  padding: 3px 7px;
  background: #fff4cf;
}

.checkout-summary-total {
  padding-top: 2px;
}

.checkout-summary-total span {
  color: #111;
  font-size: 16px;
  font-weight: 900;
}

.checkout-payment-obligation {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid #dfddd7;
  color: #625d55;
  font-size: 12px;
  line-height: 1.5;
}

.checkout-payment-obligation strong {
  color: #24211d;
}

.checkout-agreement {
  display: none;
  align-items: flex-start;
  gap: 12px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.btn-checkout-submit {
  width: 100%;
  border-color: #000;
}

.btn-checkout-submit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.checkout-back-button {
  width: 100%;
  min-height: 40px;
  padding: 0;
}

.checkout-side-links {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-top: 2px;
}

.checkout-side-links a {
  color: #8b8984;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-side-links a:hover {
  color: #111;
}

.checkout-safe-box {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0 12px;
  align-items: center;
  margin: 8px -26px -26px;
  padding: 18px 26px;
  background: var(--checkout-green);
}

.checkout-safe-box span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4fbd76;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.checkout-safe-box strong {
  color: var(--checkout-green-ink);
  font-size: 15px;
  font-weight: 900;
}

.checkout-safe-box small {
  color: #6d8b76;
  font-weight: 700;
  line-height: 1.35;
  font-size: 12px;
}

.checkout-empty-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.checkout-empty {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 56px;
  background: #fff;
  border: 1px solid #ebe7de;
}

.checkout-empty-icon,
.checkout-confirm-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7bd82;
  color: var(--checkout-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 800;
}

.checkout-empty h1,
.checkout-confirmation h1 {
  margin: 18px 0 8px;
  color: #111;
  font-size: 42px;
}

.checkout-empty p,
.checkout-confirmation p {
  color: #6b6760;
  font-weight: 700;
  line-height: 1.55;
}

.checkout-confirmation {
  max-width: 700px;
  background: #fff;
  border: 1px solid #ebe7de;
  padding: 44px;
}

.checkout-confirm-icon {
  background: #111;
  border-color: #111;
  color: #fff;
  font-family: inherit;
}

.checkout-order-number,
.checkout-bank-after-order {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  background: #f9f7f1;
  border: 1px solid #e6dfd1;
}

.checkout-order-number span,
.checkout-bank-after-order span,
.checkout-bank-after-order small {
  color: #776f61;
  font-weight: 800;
}

.checkout-order-number strong,
.checkout-bank-after-order strong {
  color: #111;
  font-size: 20px;
}

.checkout-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid #e2d5c3;
  background: #fff8ec;
  color: #5c3f15;
  font-weight: 800;
}

.checkout-message-error {
  border-color: #e5b0a8;
  background: #fff0ee;
  color: #9e271c;
}

@media (max-width: 1180px) {
  .checkout-header-inner {
    grid-template-columns: 38px minmax(220px, 280px) minmax(0, 1fr) auto;
    gap: 20px;
    padding: 0 28px;
  }

  body.checkout-page-mode .checkout-header .main-nav {
    gap: 20px;
  }

  body.checkout-page-mode .checkout-header .main-nav a {
    font-size: 13px;
  }

  .checkout-shell {
    padding-left: 22px;
    padding-right: 22px;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .checkout-side {
    position: static;
  }
}

@media (max-width: 860px) {
  .checkout-header-inner {
    min-height: 74px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 0 16px;
  }

  body.checkout-page-mode .checkout-header .main-nav {
    display: none;
  }

  body.checkout-page-mode .checkout-header .logo {
    width: 46px;
    height: 46px;
  }

  body.checkout-page-mode .checkout-header .brand {
    gap: 10px;
  }

  body.checkout-page-mode .checkout-header .brand-name {
    font-size: 22px;
  }

  body.checkout-page-mode .checkout-header .brand-tagline {
    font-size: 12px;
  }

  .checkout-return-link {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .checkout-shell {
    padding-top: 36px;
  }

  .checkout-progress {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 34px;
  }

  .checkout-step strong {
    font-size: 11px;
    text-align: center;
  }

  .checkout-product {
    grid-template-columns: 86px 1fr;
    gap: 14px;
  }

  .checkout-product-image {
    width: 86px;
    height: 86px;
  }

  .checkout-qty,
  .checkout-product-price,
  .checkout-product-actions {
    grid-column: 2;
    justify-self: start;
  }

  .form-grid--split,
  .form-grid--triple,
  .payment-options {
    grid-template-columns: 1fr;
  }

  .order-card {
    padding: 24px;
  }

  .checkout-safe-box {
    margin: 10px -24px -24px;
    padding: 20px 24px;
  }
}

@media (max-width: 560px) {
  .checkout-marquee {
    height: 28px;
  }

  .checkout-header-inner {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    min-height: 66px;
    padding: 0 12px;
  }

  body.checkout-page-mode .checkout-header .logo {
    width: 40px;
    height: 40px;
  }

  body.checkout-page-mode .checkout-header .brand-name {
    font-size: 20px;
  }

  body.checkout-page-mode .checkout-header .brand-tagline {
    display: none;
  }

  .checkout-return-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .checkout-shell {
    padding: 30px 14px 52px;
  }

  .checkout-progress {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .checkout-progress-line {
    min-width: 560px;
  }

  .checkout-step {
    min-width: 140px;
  }

  .checkout-panel h1 {
    font-size: 34px;
  }

  .checkout-product {
    padding: 20px 0;
  }

  .payment-option {
    grid-template-columns: 24px 1fr;
  }

  .payment-brand {
    grid-column: 2;
  }

  .checkout-user-type {
    flex-wrap: wrap;
  }

  .checkout-cargo-box {
    align-items: flex-start;
    padding: 18px;
  }
}

/* Checkout layout refresh */
.checkout-panel:not(.checkout-panel-cart) .checkout-panel-head {
  margin-bottom: 16px;
}

.checkout-panel:not(.checkout-panel-cart) h1 {
  font-size: clamp(28px, 2.6vw, 38px);
}

.checkout-panel-cart .checkout-panel-head {
  margin-bottom: 16px;
}

.checkout-product {
  grid-template-columns: 72px minmax(0, 1fr) 96px 118px 32px;
  gap: 16px;
  padding: 18px 0;
}

.checkout-product-image {
  width: 72px;
  height: 72px;
}

.checkout-product-info h2 {
  font-size: 15px;
}

.checkout-form-section {
  margin-bottom: 14px;
  padding-bottom: 0;
}

.form-grid {
  gap: 14px 16px;
  margin-bottom: 14px;
}

.checkout-form-section h2 {
  margin: 0 0 10px;
  color: #111;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.checkout-form-section .form-grid:last-child {
  margin-bottom: 0;
}

.form-group label {
  margin-bottom: 6px;
  font-size: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
  min-height: 40px;
  border-color: #ded8ce;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 13px;
}

.form-group textarea {
  min-height: 74px;
  padding-top: 11px;
}

.checkout-check-row--compact {
  margin: -4px 0 10px;
  color: #4f4b45;
  font-size: 12px;
  font-weight: 700;
}

.checkout-check-row {
  gap: 10px;
  margin: 6px 0 18px;
  font-size: 13px;
}

.checkout-cargo-box--free {
  width: 100%;
  min-height: 50px;
  border-width: 1px;
  border-color: #d8e3d4;
  border-radius: 6px;
  margin-top: 8px;
  padding: 0 14px;
  background: #fcfdfb;
}

.checkout-cargo-box--free .cargo-icon {
  min-width: 30px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #5d7c57;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.payment-option {
  border-color: #e5dfd4;
  border-radius: 8px;
  min-height: 62px;
  gap: 10px;
  padding: 12px 14px;
}

.payment-options {
  gap: 12px;
  margin-bottom: 0;
}

.payment-copy strong {
  font-size: 14px;
}

.payment-copy small {
  font-size: 11px;
}

.payment-detail {
  padding: 16px 18px;
  margin-top: 16px;
  margin-bottom: 18px;
}

.payment-detail h2,
.checkout-contract-box h2 {
  margin-bottom: 8px;
  font-size: 17px;
}

.payment-detail p,
.checkout-contract-box p {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.paypal-sim-card {
  width: min(100%, 340px);
  gap: 6px;
  padding: 14px;
}

.paypal-sim-card span {
  font-size: 15px;
}

.paypal-sim-card strong {
  font-size: 24px;
}

.paypal-sim-card small {
  font-size: 12px;
}

.checkout-cargo-box--free .cargo-radio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #5d7c57;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.checkout-cargo-box--free .cargo-copy {
  display: grid;
  gap: 2px;
}

.checkout-cargo-box--free .cargo-copy strong {
  font-size: 13px;
  line-height: 1.25;
}

.checkout-cargo-box--free em {
  padding: 0;
  background: transparent;
  color: #71806c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.payment-logo {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.payment-logo-paypal {
  color: #234fa4;
}

.paypal-logo-img {
  display: block;
  max-width: none;
  object-fit: contain;
}

.payment-logo-bank {
  color: #e30613;
}

.bank-logo,
.bank-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bank-logo {
  min-width: 0;
  gap: 10px;
  color: #111;
  font-weight: 900;
}

.bank-logo-mark {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 8px;
  background: #e30613;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.bank-card .bank-logo span {
  color: #111;
  font-size: 13px;
  text-transform: none;
}

.bank-card .bank-logo .bank-logo-mark {
  color: #fff;
  font-size: 16px;
}

.bank-card-sepa {
  width: min(100%, 640px);
  overflow: hidden;
  border-color: #ded8ce;
  border-radius: 8px;
}

.bank-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #f9f6f0;
  border-bottom: 1px solid #e5dfd4;
}

.bank-card-badge {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.bank-card .bank-card-badge {
  color: #fff;
  text-transform: uppercase;
}

.bank-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bank-card .bank-data-grid label {
  min-width: 0;
  padding: 11px 14px;
  border-right: 1px solid #e5dfd4;
  border-bottom: 1px solid #e5dfd4;
}

.bank-card .bank-data-grid label:nth-child(2n),
.bank-card .bank-data-grid label.bank-data-wide {
  border-right: 0;
}

.bank-card .bank-data-grid label:last-child {
  border-bottom: 0;
}

.bank-data-wide {
  grid-column: 1 / -1;
}

.bank-card strong,
.bank-card .bank-data-wide strong {
  font-size: 14px;
  overflow-wrap: anywhere;
}

.bank-note {
  margin: 0;
  padding: 0 14px 11px;
  color: #5c5851;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.payment-detail .bank-note {
  margin: 0;
  color: #5c5851;
  line-height: 1.45;
}

.payment-detail .bank-note:first-of-type {
  padding-top: 11px;
}

.copy-iban {
  margin-top: 4px;
  border-radius: 6px;
  min-height: 30px;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .checkout-product {
    grid-template-columns: 72px minmax(0, 1fr) 92px 112px 32px;
    gap: 14px;
  }

  .order-card {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .checkout-product {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .checkout-product-image {
    width: 76px;
    height: 76px;
  }

  .checkout-qty,
  .checkout-product-price,
  .checkout-product-actions {
    grid-column: 2;
    justify-self: start;
  }

  .bank-data-grid {
    grid-template-columns: 1fr;
  }

  .bank-card .bank-data-grid label {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .payment-option {
    grid-template-columns: 20px minmax(0, 1fr) auto;
    min-height: 54px;
    padding: 10px 12px;
  }

  .payment-logo {
    grid-column: auto;
    justify-self: end;
    font-size: 11px;
  }

  .payment-logo .bank-logo-mark {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .checkout-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .checkout-panel h1 {
    font-size: 30px;
  }

  .checkout-progress-line {
    min-width: 496px;
  }

  .checkout-step {
    min-width: 124px;
  }

  .checkout-product {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  .checkout-product-image {
    width: 68px;
    height: 68px;
  }

  .payment-option {
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .payment-logo {
    grid-column: auto;
    justify-self: end;
  }

  .payment-detail {
    padding: 14px;
  }

  .bank-card-head {
    align-items: center;
    flex-direction: row;
    padding: 10px 12px;
  }

  .bank-logo {
    align-items: center;
    gap: 8px;
  }

  .bank-card .bank-logo span {
    font-size: 12px;
  }

  .bank-card .bank-data-grid label {
    gap: 5px;
    padding: 9px 12px;
  }

  .bank-card span {
    font-size: 11px;
  }

  .bank-card strong,
  .bank-card .bank-data-wide strong {
    font-size: 13px;
  }

  .bank-note {
    padding: 0 12px 9px;
    font-size: 11.5px;
  }

  .payment-detail .bank-note:first-of-type {
    padding-top: 9px;
  }

  .order-card {
    padding: 20px;
  }
}

/* Checkout header cleanup */
body.checkout-page-mode .checkout-header {
  border-bottom-color: #e8e2d8;
}

.checkout-header-inner {
  min-height: 74px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 0 clamp(18px, 3.5vw, 48px);
}

.checkout-menu-button,
body.checkout-page-mode .checkout-header .main-nav {
  display: none !important;
}

body.checkout-page-mode .checkout-header .brand {
  min-width: 0;
  max-width: 420px;
  gap: 12px;
}

body.checkout-page-mode .checkout-header .logo {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
}

body.checkout-page-mode .checkout-header .brand-text {
  min-width: 0;
}

body.checkout-page-mode .checkout-header .brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 25px;
}

body.checkout-page-mode .checkout-header .brand-tagline {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.1;
}

.checkout-header-actions {
  min-width: max-content;
}

.checkout-return-link {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #050505;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff 0 50%, #050505 50% 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  color: #fff;
  font-size: 14px;
  transition: background-position 0.75s ease, color 0.45s ease, border-color 0.45s ease;
}

.checkout-return-link:hover,
.checkout-return-link:focus-visible {
  background-position: 0 0;
  border-color: #050505;
  color: #050505;
}

.checkout-shell {
  padding-top: 42px;
}

.sparkasse-logo-img {
  display: block;
  max-width: none;
  object-fit: contain;
}

.payment-logo-paypal {
  width: 112px;
  height: 34px;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
}

.payment-logo-paypal .paypal-logo-img {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  transform: translateY(-39px);
}

.payment-logo-bank {
  width: 116px;
  height: 34px;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
  color: #e30613;
}

.payment-logo-bank .sparkasse-logo-img {
  width: 116px;
  height: 116px;
  flex: 0 0 116px;
  transform: translateY(-41px);
}

.bank-logo {
  width: 174px;
  height: 46px;
  align-items: flex-start;
  overflow: hidden;
}

.bank-logo .sparkasse-logo-img {
  width: 174px;
  height: 174px;
  flex: 0 0 174px;
  transform: translateY(-61px);
}

.bank-logo-mark {
  display: none;
}

.delivery-free {
  color: #168a4b !important;
}

@media (max-width: 860px) {
  .checkout-header-inner {
    min-height: 66px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0 16px;
  }

  body.checkout-page-mode .checkout-header .logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  body.checkout-page-mode .checkout-header .brand-name {
    font-size: 21px;
  }

  body.checkout-page-mode .checkout-header .brand-tagline {
    font-size: 11px;
  }

  .checkout-return-link {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .checkout-header-inner {
    gap: 12px;
    min-height: 60px;
    padding: 0 12px;
  }

  body.checkout-page-mode .checkout-header .brand {
    gap: 9px;
  }

  body.checkout-page-mode .checkout-header .logo {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  body.checkout-page-mode .checkout-header .brand-name {
    font-size: 18px;
  }

  body.checkout-page-mode .checkout-header .brand-tagline {
    display: none;
  }

  .checkout-return-link {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .sparkasse-logo-img {
    max-width: none;
  }

  .payment-logo-paypal {
    width: 88px;
    height: 30px;
  }

  .payment-logo-paypal .paypal-logo-img {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
    transform: translateY(-29px);
  }

  .payment-logo-bank {
    width: 94px;
    height: 30px;
  }

  .payment-logo-bank .sparkasse-logo-img {
    width: 94px;
    height: 94px;
    flex-basis: 94px;
    transform: translateY(-33px);
  }

  .bank-logo {
    width: 144px;
    height: 40px;
    align-items: flex-start;
  }

  .bank-logo .sparkasse-logo-img {
    width: 144px;
    height: 144px;
    flex-basis: 144px;
    transform: translateY(-51px);
  }
}

/* Checkout compact polish */
.checkout-panel:not(.checkout-panel-cart) .checkout-panel-head {
  margin-bottom: 12px;
}

.checkout-panel:not(.checkout-panel-cart) h1 {
  font-size: clamp(25px, 2.15vw, 34px);
  line-height: 1.02;
}

.checkout-kicker {
  margin-bottom: 4px;
  font-size: 11px;
}

.checkout-form-section {
  margin-bottom: 10px;
}

.form-grid {
  gap: 10px 12px;
  margin-bottom: 10px;
}

.form-group label {
  margin-bottom: 5px;
  font-size: 11px;
}

.form-group input,
.form-group textarea,
.form-group select {
  min-height: 36px;
  border-radius: 4px;
  padding: 0 10px;
  font-size: 12.5px;
}

.form-group textarea {
  min-height: 66px;
  padding-top: 9px;
}

.checkout-check-row {
  gap: 9px;
  margin: 4px 0 14px;
  font-size: 12px;
}

.checkout-check-row input,
.checkout-agreement input {
  width: 17px;
  height: 17px;
}

.checkout-cargo-box--free {
  min-height: 44px;
  margin: 6px 0 16px;
  padding: 0 12px;
}

.payment-options {
  gap: 10px;
}

.payment-option {
  min-height: 54px;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
}

.payment-radio {
  width: 16px;
  height: 16px;
}

.payment-option.is-selected .payment-radio::after {
  width: 6px;
  height: 6px;
  top: 3px;
  left: 3px;
}

.payment-copy {
  gap: 2px;
}

.payment-copy strong {
  font-size: 13.5px;
}

.payment-copy small {
  font-size: 10.5px;
}

.payment-logo-text {
  display: none;
  align-items: center;
  color: #003087;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.payment-logo-paypal {
  width: 116px;
  height: 30px;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.payment-logo-paypal .paypal-logo-img {
  width: 116px;
  height: auto;
  flex: 0 0 auto;
  transform: none;
}

.payment-logo-bank {
  width: 112px;
  height: 30px;
}

.payment-logo-bank .sparkasse-logo-img {
  width: 112px;
  height: 112px;
  flex-basis: 112px;
  transform: translateY(-39px);
}

.payment-detail[data-payment-detail="banka"] {
  max-width: 620px;
  padding: 0;
  margin-top: 14px;
  background: transparent;
  border: 0;
}

.payment-detail[data-payment-detail="banka"] h2 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: 0;
}

.bank-transfer-alert {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #f0dda0;
  background: #fff3c9;
  color: #4c4024;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 700;
}

.bank-card-sepa {
  width: min(100%, 560px);
  display: block;
  padding: 0 26px 18px;
  border: 1px solid #dddddd;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  overflow: visible;
}

.bank-card-sepa .bank-card-head {
  justify-content: flex-start;
  gap: 14px;
  padding: 24px 0 22px;
  border-bottom: 0;
  background: transparent;
}

.bank-card-sepa .bank-card-head::before {
  content: none;
}

.bank-card-sepa .bank-card-badge {
  display: none;
}

.bank-card-sepa .bank-logo {
  width: 170px;
  height: 44px;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.bank-card-sepa .bank-logo .sparkasse-logo-img {
  width: 170px;
  height: 170px;
  flex-basis: 170px;
  transform: translateY(-60px);
}

.bank-card-sepa .bank-data-grid {
  display: block;
}

.bank-card-sepa .bank-data-grid label {
  display: grid;
  gap: 8px;
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-right: 0;
  border-bottom: 1px solid #dddddd;
}

.bank-card-sepa .bank-data-grid label:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.bank-card-sepa span {
  color: #8c8c8c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bank-card-sepa strong,
.bank-card-sepa .bank-data-wide strong {
  color: #25282d;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.bank-card-sepa .copy-iban {
  justify-self: start;
  min-height: 30px;
  margin-top: 2px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 11.5px;
}

@media (max-width: 560px) {
  .checkout-panel:not(.checkout-panel-cart) h1 {
    font-size: 28px;
  }

  .payment-option {
    grid-template-columns: 18px minmax(0, 1fr) auto;
    min-height: 52px;
    padding: 9px 10px;
  }

  .payment-logo-paypal {
    width: 96px;
    height: 26px;
  }

  .payment-logo-paypal .paypal-logo-img {
    width: 96px;
  }

  .payment-logo-bank {
    width: 98px;
    height: 28px;
  }

  .payment-logo-bank .sparkasse-logo-img {
    width: 98px;
    height: 98px;
    flex-basis: 98px;
    transform: translateY(-34px);
  }

  .payment-detail[data-payment-detail="banka"] h2 {
    font-size: 22px;
  }

  .bank-card-sepa {
    padding: 0 20px 16px;
  }

  .bank-card-sepa .bank-logo {
    width: 148px;
    height: 40px;
  }

  .bank-card-sepa .bank-logo .sparkasse-logo-img {
    width: 148px;
    height: 148px;
    flex-basis: 148px;
    transform: translateY(-52px);
  }

  .bank-card-sepa strong,
  .bank-card-sepa .bank-data-wide strong {
    font-size: 14.5px;
  }
}

/* Legacy provider checkout styles */
.paypal-checkout-wrap {
  max-width: 620px;
  margin: 14px 0 18px;
  padding: 16px;
  border: 1px solid #ded8ce;
  border-radius: 8px;
  background: #fff;
}

.paypal-checkout-note {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.paypal-checkout-note strong {
  color: #111;
  font-size: 14px;
  font-weight: 900;
}

.paypal-checkout-note span {
  color: #68645e;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

#paypal-button-container {
  min-height: 48px;
}

.paypal-checkout-message {
  margin: 10px 0 0;
  color: #68645e;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.paypal-checkout-message.is-error {
  color: #b42318;
}

.paypal-checkout-message.is-success {
  color: #168a4b;
}

@media (max-width: 560px) {
  .paypal-checkout-wrap {
    padding: 13px;
  }
}


/* Nezihhan brand logo refresh */
body.checkout-page-mode .checkout-header .logo {
  width: 86px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.checkout-page-mode .checkout-header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}


/* Nezihhan refined mark logo */
.logo,
.auth-logo,
.collection-page .logo,
.km-product-page .brand .logo,
body.checkout-page-mode .checkout-header .logo {
  width: 54px !important;
  height: 54px !important;
  flex: 0 0 54px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.logo img,
.auth-logo img,
.collection-page .logo img,
.km-product-page .brand .logo img,
body.checkout-page-mode .checkout-header .logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}


/* Nezihhan readable mark polish */
.site-header .brand .logo,
.collection-page .brand .logo,
.km-product-page .brand .logo,
.auth-brand .auth-logo,
body.checkout-page-mode .checkout-header .logo {
  overflow: visible !important;
}

.site-header .brand .logo img,
.collection-page .brand .logo img,
.km-product-page .brand .logo img,
.auth-brand .auth-logo img,
body.checkout-page-mode .checkout-header .logo img {
  transform: scale(1.22) !important;
  transform-origin: center !important;
}

@media (max-width: 760px) {
  .site-header .brand .logo {
    width: 46px !important;
    height: 42px !important;
    flex: 0 0 46px !important;
  }

  .site-header .brand .logo img {
    transform: scale(1.18) !important;
  }
}

/* Nezihhan checkout copy polish */
.bank-transfer-alert {
  font-weight: 700;
  line-height: 1.55;
}

.thankyou-bank-note {
  margin: 12px 0 18px;
  color: #5d5142;
  font-weight: 700;
  line-height: 1.5;
}

/* Nezihhan approved brand mark */
.site-header .brand .logo,
.collection-page .brand .logo,
.km-product-page .brand .logo,
.auth-brand .auth-logo,
body.checkout-page-mode .checkout-header .logo,
.logo,
.logo.small {
  width: 62px !important;
  height: 62px !important;
  flex: 0 0 62px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.site-header .brand .logo img,
.collection-page .brand .logo img,
.km-product-page .brand .logo img,
.auth-brand .auth-logo img,
body.checkout-page-mode .checkout-header .logo img,
.logo img,
.logo.small img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  transform: none !important;
}

@media (max-width: 760px) {
  .site-header .brand .logo,
  .collection-page .brand .logo,
  .km-product-page .brand .logo,
  .auth-brand .auth-logo,
  body.checkout-page-mode .checkout-header .logo,
  .logo,
  .logo.small {
    width: 48px !important;
    height: 48px !important;
    flex-basis: 48px !important;
  }
}


/* Inner-page compact checkout header */
body.checkout-page-mode .checkout-marquee{display:none!important}body.checkout-page-mode .checkout-header.is-scrolled{top:0!important}

.checkout-final-agreements {
  display: grid;
  gap: 11px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 18, 14, .12);
}

.checkout-final-agreements[hidden] { display: none; }

.checkout-final-agreements .checkout-check-row {
  color: #625d55;
  font-size: 13px;
  font-weight: 500;
}

.checkout-final-agreements input {
  width: 18px;
  height: 18px;
  accent-color: #15120f;
}

.checkout-delivery-methods {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(124, 91, 43, .2);
  background: #fffaf2;
}

.checkout-delivery-methods h2 { margin: 0 0 2px; font-size: 1.05rem; }
.checkout-delivery-option { display: flex; gap: 12px; align-items: flex-start; padding: 13px; border: 1px solid rgba(124, 91, 43, .18); background: #fff; cursor: pointer; }
.checkout-delivery-option.is-selected { border-color: #8a6229; box-shadow: 0 0 0 1px #8a6229; }
.checkout-delivery-option input { margin-top: 3px; accent-color: #8a6229; }
.checkout-delivery-option strong, .checkout-delivery-option small { display: block; }
.checkout-delivery-option small { margin-top: 3px; color: #6d6255; line-height: 1.45; }
.checkout-pickup-location { margin: 0; padding: 12px; background: #f7efe1; color: #504333; line-height: 1.5; }
.checkout-pickup-location a { display: inline-flex; margin-top: 6px; color: #6f4d1e; font-weight: 700; }

body.is-checkout-agreement-gate .checkout-progress,
body.is-checkout-agreement-gate #checkoutEmpty,
body.is-checkout-agreement-gate #checkoutFormWrap,
body.is-checkout-agreement-gate .checkout-footer { display: none !important; }
.checkout-agreement-gate { max-width: 620px; margin: clamp(48px, 10vw, 110px) auto; background: #fff; padding: clamp(24px, 4vw, 40px); }
.checkout-agreement-gate h1 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(28px, 4vw, 42px); }
.checkout-agreement-gate p { margin: 8px 0; color: #625d55; }
.checkout-agreement-gate .btn-checkout-submit { width: 100%; margin-top: 12px; }
