:root {
  --commerce-border: #e3e7ec;
  --commerce-soft: #f5f7f9;
  --commerce-soft-orange: #fff5ef;
  --commerce-green: #198754;
  --commerce-shadow: 0 18px 48px rgba(17, 23, 34, .08);
}

.site-header--inner .header-cart {
  background: rgba(246, 90, 0, .18);
  border-color: rgba(246, 90, 0, .9);
}

.commerce-page {
  background: #f7f8fa;
}

.commerce-shell {
  width: min(100% - 48px, 1460px);
  margin-inline: auto;
}

.commerce-hero {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  color: #111722;
  background: #fff;
  border-bottom: 1px solid #e7eaee;
}

.commerce-hero--compact {
  min-height: 255px;
}
.commerce-breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 32px;
  color: #7b8491;
  font-size: 13px;
  font-weight: 650;
}

.commerce-breadcrumb a {
  color: #4f5968;
  text-decoration: none;
}

.commerce-breadcrumb a:hover,
.commerce-breadcrumb a:focus-visible {
  color: var(--orange);
}

.commerce-hero__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 44px 0 46px;
}

.commerce-eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.commerce-hero h1 {
  margin: 0;
  color: #101620;
  font-size: clamp(36px, 3.7vw, 54px);
  font-weight: 830;
  line-height: 1;
  letter-spacing: -.045em;
}

.commerce-hero__row > div > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: #626b78;
  font-size: 17px;
  line-height: 1.6;
}

.checkout-progress {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 380px;
  margin: 0 0 5px;
  padding: 0;
  list-style: none;
}

.checkout-progress li {
  position: relative;
  display: grid;
  min-width: 126px;
  justify-items: center;
  gap: 8px;
  color: #9aa2ad;
  font-size: 12px;
}

.checkout-progress li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 1px;
  background: #d8dde4;
}

.checkout-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #7c8591;
  background: #fff;
  border: 1px solid #d9dee5;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.checkout-progress strong {
  font-weight: 750;
}

.checkout-progress .is-active,
.checkout-progress .is-complete {
  color: #111722;
}

.checkout-progress .is-active span,
.checkout-progress .is-complete span {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.checkout-progress .is-complete:not(:last-child)::after {
  background: var(--orange);
}

.cart-section,
.checkout-section {
  padding: 58px 0 72px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(340px, .72fr);
  align-items: start;
  gap: 34px;
}

.cart-panel,
.order-summary,
.checkout-card,
.checkout-summary {
  background: #fff;
  border: 1px solid var(--commerce-border);
  box-shadow: 0 10px 34px rgba(17, 23, 34, .055);
}

.cart-panel {
  min-width: 0;
}

.cart-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--commerce-border);
}

.cart-panel__head h2,
.order-summary h2,
.checkout-summary h2 {
  margin: 0;
  color: #111722;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.cart-panel__head p {
  margin: 5px 0 0;
  color: #7b8491;
  font-size: 13px;
}

.text-button {
  padding: 6px 0;
  color: #69727f;
  background: none;
  border: 0;
  border-bottom: 1px solid #cbd1d8;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.text-button:hover,
.text-button:focus-visible {
  color: #c63f00;
  border-color: #c63f00;
}

.cart-list {
  padding: 0 28px;
}

.cart-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid #edf0f3;
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item__image {
  display: block;
  width: 132px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef1f4;
  border: 1px solid #e0e4e8;
}

.cart-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__info {
  min-width: 0;
}

.cart-item__category {
  margin: 0 0 5px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cart-item__info h3 {
  margin: 0 0 8px;
  color: #171c25;
  font-size: 17px;
  line-height: 1.32;
}

.cart-item__info h3 a {
  color: inherit;
  text-decoration: none;
}

.cart-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin: 0;
  color: #727b87;
  font-size: 12px;
}

.cart-item__unit-price {
  margin-top: 12px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
}

.quantity-control {
  display: grid;
  grid-template-columns: 36px 44px 36px;
  height: 40px;
  overflow: hidden;
  border: 1px solid #cfd5dc;
  background: #fff;
}

.quantity-control button {
  display: grid;
  place-items: center;
  padding: 0;
  color: #202630;
  background: #f5f7f9;
  border: 0;
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
}

.quantity-control button:hover,
.quantity-control button:focus-visible {
  color: var(--orange);
  background: #fff2eb;
}

.quantity-control input {
  width: 44px;
  padding: 0;
  color: #101620;
  background: #fff;
  border: 0;
  border-inline: 1px solid #d7dce2;
  text-align: center;
  font-size: 14px;
  font-weight: 750;
  appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.cart-item__price {
  min-width: 116px;
  text-align: right;
}

.cart-item__price strong {
  display: block;
  color: #121721;
  font-size: 18px;
}

.cart-item__price del {
  display: block;
  margin-top: 4px;
  color: #959da7;
  font-size: 12px;
}

.cart-item__remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  padding: 0;
  color: #8a929c;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 12px;
}

.cart-item__remove svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-item__remove:hover,
.cart-item__remove:focus-visible {
  color: #c23821;
}

.cart-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 21px 28px;
  background: #fafbfc;
  border-top: 1px solid var(--commerce-border);
}

.continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a2029;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.continue-shopping svg,
.cart-help svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.continue-shopping:hover,
.continue-shopping:focus-visible {
  color: var(--orange);
}

.cart-help {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #737c88;
  font-size: 12px;
}

.cart-help svg {
  color: var(--orange);
}

.cart-help a {
  color: #262d37;
  font-weight: 750;
}

.empty-cart {
  padding: 72px 28px;
  text-align: center;
}

.empty-cart__icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--orange);
  background: #fff4ee;
  border-radius: 50%;
}

.empty-cart__icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.empty-cart h2 {
  margin: 0;
  font-size: 26px;
}

.empty-cart p {
  margin: 10px 0 24px;
  color: #707986;
}

.order-summary,
.checkout-summary {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  padding: 28px;
}

.order-summary__header,
.checkout-summary__head {
  padding-bottom: 21px;
  border-bottom: 1px solid var(--commerce-border);
}

.summary-lines {
  display: grid;
  gap: 15px;
  margin: 23px 0;
}

.summary-lines > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  color: #646d79;
  font-size: 14px;
}

.summary-lines dt,
.summary-lines dd {
  margin: 0;
}

.summary-lines dd {
  color: #272e38;
  font-weight: 700;
  text-align: right;
}

.summary-lines .summary-savings dd {
  color: var(--commerce-green);
}

.summary-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 22px;
  border-top: 1px solid #dfe4e9;
}

.summary-total span {
  color: #252c35;
  font-size: 15px;
  font-weight: 750;
}

.summary-total strong {
  color: var(--orange);
  font-size: 25px;
  line-height: 1;
}

.summary-note {
  margin: -6px 0 18px;
  color: #7d8590;
  font-size: 11px;
  line-height: 1.5;
}

.commerce-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.commerce-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commerce-button--primary {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.commerce-button--primary:hover,
.commerce-button--primary:focus-visible {
  color: #fff;
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-1px);
}

.commerce-button--secondary {
  color: #1c222c;
  background: #fff;
  border-color: #cfd5dc;
}

.commerce-button--full {
  width: 100%;
}

.commerce-button[aria-disabled="true"],
.commerce-button:disabled {
  opacity: .45;
  pointer-events: none;
}

.summary-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: #747d88;
  font-size: 11px;
  text-align: center;
}

.summary-secure svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--commerce-green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bulk-callout {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 13px;
  margin-top: 24px;
  padding: 17px;
  background: #f7f8fa;
  border-left: 3px solid var(--orange);
}

.bulk-callout__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--orange);
  background: #fff;
  border: 1px solid #e5e8ec;
}

.bulk-callout__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bulk-callout strong {
  display: block;
  color: #202731;
  font-size: 13px;
}

.bulk-callout p {
  margin: 5px 0 8px;
  color: #727b86;
  font-size: 11px;
  line-height: 1.45;
}

.bulk-callout a {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.commerce-assurance {
  padding: 0 0 72px;
}

.commerce-assurance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--commerce-border);
}

.commerce-assurance article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 24px 28px;
}

.commerce-assurance article:not(:last-child) {
  border-right: 1px solid var(--commerce-border);
}

.commerce-assurance article > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--orange);
  background: #fff4ed;
}

.commerce-assurance svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commerce-assurance strong {
  display: block;
  color: #1b212b;
  font-size: 14px;
}

.commerce-assurance p {
  margin: 5px 0 0;
  color: #747d89;
  font-size: 12px;
  line-height: 1.5;
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, .65fr);
  align-items: start;
  gap: 34px;
}

.checkout-form {
  display: grid;
  gap: 22px;
}

.checkout-card {
  padding: 28px;
}

.checkout-card__header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin-bottom: 25px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--commerce-border);
}

.checkout-card__header > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 850;
}

.checkout-card__header h2 {
  margin: 0;
  color: #171d26;
  font-size: 22px;
  letter-spacing: -.02em;
}

.checkout-card__header p {
  margin: 5px 0 0;
  color: #78818d;
  font-size: 12px;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field > span {
  color: #343b45;
  font-size: 12px;
  font-weight: 750;
}

.field b {
  color: var(--orange);
}

.field input,
.field select,
.field textarea,
.phone-input {
  width: 100%;
  min-height: 48px;
  color: #151b24;
  background: #fff;
  border: 1px solid #cfd5dc;
  border-radius: 3px;
  outline: none;
  font-size: 14px;
  transition: border-color .17s ease, box-shadow .17s ease;
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.phone-input:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246, 90, 0, .1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.phone-input.is-invalid {
  border-color: #c63d2e;
  box-shadow: 0 0 0 3px rgba(198, 61, 46, .08);
}

.phone-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
}

.phone-input > span {
  display: grid;
  height: 100%;
  place-items: center;
  padding: 0 12px;
  color: #4e5764;
  background: #f4f6f8;
  border-right: 1px solid #d7dce2;
  font-size: 13px;
  font-weight: 750;
}

.phone-input input {
  min-height: 46px;
  padding: 10px 12px;
  border: 0;
  box-shadow: none !important;
}

.choice-group {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 12px;
  color: #343b45;
  font-size: 12px;
  font-weight: 800;
}

.choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid #d7dce2;
  cursor: pointer;
  transition: border-color .17s ease, background .17s ease;
}

.choice-card.is-selected {
  background: #fff8f4;
  border-color: var(--orange);
}

.choice-card input,
.payment-method-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--orange);
  background: #fff2eb;
}

.choice-card__icon svg,
.payment-method-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-card__copy strong,
.choice-card__copy small {
  display: block;
}

.choice-card__copy strong {
  color: #20262f;
  font-size: 14px;
}

.choice-card__copy small {
  margin-top: 4px;
  color: #78818d;
  font-size: 11px;
}

.choice-card > b {
  color: #1e252e;
  font-size: 13px;
}

.payment-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.payment-method-card {
  position: relative;
  display: grid;
  grid-template-columns: 20px 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 17px;
  background: #fff8f4;
  border: 1px solid var(--orange);
  cursor: pointer;
}

.payment-method-card__check {
  width: 19px;
  height: 19px;
  border: 5px solid var(--orange);
  border-radius: 50%;
}

.payment-method-card__icon {
  display: grid;
  width: 52px;
  min-height: 38px;
  place-items: center;
  color: var(--orange);
  background: #fff;
  border: 1px solid #ffd6c1;
}

.payment-method-card__copy strong,
.payment-method-card__copy small { display: block; }
.payment-method-card__copy strong { color: #1d242d; font-size: 14px; }
.payment-method-card__copy small { margin-top: 4px; color: #68717d; font-size: 11px; line-height: 1.45; }

.checkout-consent {
  padding: 3px 4px 0;
}

.checkout-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #606975;
  font-size: 12px;
  line-height: 1.55;
}

.checkout-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--orange);
}

.checkout-consent a {
  color: #1d242d;
  font-weight: 750;
}

.form-error {
  margin: 12px 0 0;
  padding: 10px 12px;
  color: #9d281c;
  background: #fff0ee;
  border-left: 3px solid #c63d2e;
  font-size: 12px;
}

.checkout-summary__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.checkout-summary__head a {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.checkout-items {
  display: grid;
  gap: 15px;
  padding: 21px 0;
  border-bottom: 1px solid var(--commerce-border);
}

.checkout-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
}

.checkout-item__image {
  position: relative;
  width: 58px;
  height: 52px;
  overflow: visible;
  background: #edf0f3;
  border: 1px solid #e0e4e8;
}

.checkout-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item__image span {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  color: #fff;
  background: #252c35;
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 800;
}

.checkout-item h3 {
  margin: 0;
  color: #252c35;
  font-size: 12px;
  line-height: 1.35;
}

.checkout-item p {
  margin: 4px 0 0;
  color: #828a95;
  font-size: 10px;
}

.checkout-item > strong {
  color: #242b35;
  font-size: 12px;
  white-space: nowrap;
}

.order-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.order-modal[hidden] {
  display: none;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, .75);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.order-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 42px;
  background: #fff;
  border-top: 5px solid var(--orange);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .35);
  text-align: center;
}

.order-modal__success {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 0 auto 20px;
  color: #fff;
  background: var(--commerce-green);
  border-radius: 50%;
}

.order-modal__success svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-modal h2 {
  margin: 0;
  color: #151b24;
  font-size: 31px;
  letter-spacing: -.035em;
}

.order-modal__card > p:not(.commerce-eyebrow) {
  margin: 15px auto 25px;
  color: #66707c;
  font-size: 14px;
  line-height: 1.7;
}

.order-modal__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 1120px) {
  .commerce-shell {
    width: min(100% - 40px, 1460px);
  }

  .commerce-hero__row {
    align-items: center;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
  }

  .cart-item {
    grid-template-columns: 110px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .cart-item__image {
    width: 110px;
  }

  .cart-item__price {
    grid-column: 2 / 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    padding-left: 0;
    text-align: left;
  }

  .cart-item__price del {
    display: inline;
    margin: 0 0 0 8px;
  }

  .cart-item__remove {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .commerce-hero {
    min-height: 310px;
  }

  .commerce-hero__row {
    display: block;
    padding-top: 34px;
  }

  .checkout-progress {
    width: min(100%, 440px);
    min-width: 0;
    margin-top: 30px;
  }

  .checkout-progress li {
    flex: 1 1 0;
    min-width: 0;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary,
  .checkout-summary {
    position: static;
  }

  .checkout-summary {
    grid-row: auto;
  }

  .commerce-assurance__grid {
    grid-template-columns: 1fr;
  }

  .commerce-assurance article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--commerce-border);
  }
}

@media (max-width: 650px) {
  .commerce-shell {
    width: min(100% - 28px, 1460px);
  }

  .commerce-hero {
    min-height: 300px;
  }
.commerce-breadcrumb {
    padding-top: 23px;
  }

  .commerce-hero__row {
    padding: 32px 0 36px;
  }

  .commerce-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .commerce-hero__row > div > p:last-child {
    margin-top: 13px;
    font-size: 15px;
  }

  .checkout-progress {
    margin-top: 25px;
  }

  .checkout-progress strong {
    font-size: 10px;
  }

  .cart-section,
  .checkout-section {
    padding: 34px 0 48px;
  }

  .cart-panel__head,
  .checkout-card,
  .order-summary,
  .checkout-summary {
    padding: 21px;
  }

  .cart-list {
    padding: 0 20px;
  }

  .cart-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .cart-item__image {
    width: 92px;
    align-self: start;
  }

  .cart-item__info h3 {
    font-size: 15px;
  }

  .cart-item__meta {
    display: none;
  }

  .quantity-control {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-top: -5px;
  }

  .cart-item__price {
    grid-column: 1 / -1;
    grid-row: 3;
    padding: 13px 0 0;
    border-top: 1px dashed #dfe3e8;
  }

  .cart-item__price strong {
    font-size: 16px;
  }

  .cart-panel__footer {
    display: grid;
    gap: 18px;
    padding: 18px 20px;
  }

  .cart-help {
    align-items: flex-start;
  }

  .form-grid--two {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .choice-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .choice-card > b {
    grid-column: 2;
  }

  .payment-method-card {
    grid-template-columns: 20px 46px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .payment-method-card__icon { width: 46px; }

  .commerce-assurance {
    padding-bottom: 48px;
  }

  .commerce-assurance article {
    padding: 20px;
  }

  .order-modal__card {
    padding: 32px 22px;
  }

  .order-modal h2 {
    font-size: 27px;
  }

  .order-modal__actions {
    display: grid;
  }
}

@media (max-width: 390px) {
  .commerce-shell {
    width: min(100% - 22px, 1460px);
  }

  .checkout-progress span {
    width: 32px;
    height: 32px;
  }

  .checkout-progress li:not(:last-child)::after {
    top: 15px;
  }

  .cart-item {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .cart-item__image {
    width: 78px;
  }

  .cart-panel__head h2,
  .order-summary h2,
  .checkout-summary h2 {
    font-size: 21px;
  }
}

