:root {
  --bg: #eef2ea;
  --panel: #fbf8f1;
  --line: #dde3d7;
  --text: #24312d;
  --muted: #657364;
  --accent: #95a98b;
  --accent-dark: #72846a;
  --shadow: 0 16px 32px rgba(74, 91, 68, 0.08);
  --danger: #b42318;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #e6ecdf 0%, #f1f4eb 24%, #f7f4ed 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  width: 100%;
  background: #f8f7f4;
  border-bottom: 1px solid var(--line);
}

.header-main {
  min-height: 104px;
  display: grid;
  grid-template-columns: 190px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 146px;
  height: auto;
  display: block;
}

.purchase-progress {
  padding: 10px 0 8px;
}

.progress-copy {
  margin: 0 0 8px;
  color: #59645b;
  font-size: 0.95rem;
}

.progress-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  min-height: 52px;
  padding-top: 10px;
}

.progress-track::before {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  top: 20px;
  height: 4px;
  border-radius: 999px;
  background: #dfded5;
}

.progress-fill {
  position: absolute;
  left: 36px;
  top: 20px;
  width: 48%;
  max-width: calc(100% - 72px);
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.progress-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.step-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid #d6d3c9;
  background: #fff;
  color: var(--accent-dark);
  font-size: 0.72rem;
}

.progress-step.reached .step-icon {
  background: #e9eee4;
  border-color: #cbd7c4;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-cart-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 40;
  width: 430px;
  display: none;
  padding: 48px 18px 18px;
  max-height: calc(100vh - 110px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(74, 91, 68, 0.18);
}

.mini-cart-dropdown::before {
  content: "";
  position: absolute;
  top: -9px;
  right: 46px;
  width: 16px;
  height: 16px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: #fff;
  transform: rotate(45deg);
}

.mini-cart-dropdown::after {
  content: "";
  position: absolute;
  top: -18px;
  right: 0;
  width: 100%;
  height: 18px;
}

.header-actions.is-mini-cart-open .mini-cart-dropdown {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 84px;
  z-index: 45;
  width: 230px;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(74, 91, 68, 0.18);
}

.account-dropdown::before {
  content: "";
  position: absolute;
  top: -9px;
  right: 30px;
  width: 16px;
  height: 16px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: #fff;
  transform: rotate(45deg);
}

.header-actions.is-account-open .account-dropdown {
  display: grid;
  gap: 6px;
}

.account-dropdown a,
.account-dropdown button {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #4e5d50;
  font: inherit;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
  background: #f5f3ed;
}

.account-dropdown-note {
  margin: 4px 8px 2px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.mobile-account-section {
  display: none;
}

.mini-cart-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: #f5f3ed;
  color: var(--text);
  cursor: pointer;
}

.mini-cart-items {
  display: grid;
  gap: 12px;
  min-height: 0;
  max-height: min(52vh, 430px);
  margin-bottom: 14px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
}

.mini-cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.mini-cart-item.is-unavailable {
  padding: 8px;
  border: 1px solid #ead7b8;
  border-radius: 8px;
  background: #fffaf0;
}

.mini-cart-item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.mini-cart-title {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.25;
}

.mini-cart-item .cart-builder-snapshot {
  margin: 7px 0 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.82rem;
}

.mini-cart-item .cart-builder-snapshot-group + .cart-builder-snapshot-group {
  margin-top: 6px;
}

.mini-cart-item .cart-builder-snapshot strong {
  display: block;
  margin-bottom: 3px;
}

.mini-cart-item .cart-builder-snapshot ul {
  margin: 0;
  padding-left: 16px;
}

.mini-cart-item .cart-builder-snapshot li {
  line-height: 1.35;
}

.mini-cart-controls {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.mini-cart-controls button,
.mini-cart-controls span {
  width: 34px;
  height: 34px;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--text);
}

.mini-cart-controls button {
  cursor: pointer;
}

.mini-cart-controls button:disabled {
  color: #9aa295;
  cursor: not-allowed;
  background: #f5f3ed;
}

.mini-cart-remove {
  color: var(--danger) !important;
  border-left: 1px solid var(--line) !important;
}

.mini-cart-warning {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f7e7c5;
  color: #7a4d00;
  font-size: 0.76rem;
  font-weight: 700;
}

.mini-cart-price {
  display: grid;
  gap: 2px;
  justify-items: end;
  font-weight: 700;
  white-space: nowrap;
}

.mini-cart-price span,
.cart-price-breakdown span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.mini-cart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0 14px;
  border-top: 1px solid var(--line);
}

.mini-cart-total {
  display: flex;
  flex: 1 1 auto;
  gap: 16px;
  font-weight: 700;
}

.mini-cart-total span {
  color: var(--muted);
}

.mini-cart-button {
  width: auto;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
}

.mini-cart-button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.free-shipping-progress {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.free-shipping-progress--mini-cart,
.free-shipping-progress--cart-summary {
  padding: 12px;
  border: 1px solid #e6dbc2;
  border-radius: 8px;
  background: #fbf8ef;
}

.free-shipping-progress--mini-cart {
  margin-bottom: 12px;
}

.free-shipping-progress--cart-summary {
  margin-bottom: 2px;
}

.free-shipping-progress__copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.free-shipping-progress__copy strong,
.free-shipping-progress__copy span {
  overflow-wrap: anywhere;
}

.free-shipping-progress__copy strong {
  color: var(--text);
  line-height: 1.35;
}

.free-shipping-progress__copy span {
  color: var(--muted);
  font-weight: 700;
}

.free-shipping-progress__bar {
  position: relative;
  height: 12px;
  overflow: visible;
  border-radius: 999px;
  background: #e5dcc9;
}

.free-shipping-progress__threshold {
  justify-self: end;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.25;
  overflow-wrap: normal;
}

.free-shipping-progress__fill {
  display: block;
  height: 100%;
  max-width: 100%;
  border-radius: inherit;
  background: var(--accent-dark);
}

.free-shipping-progress__truck,
.free-shipping-progress__check {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}

.free-shipping-progress__truck {
  width: 26px;
  height: 26px;
  font-size: 1rem;
}

.free-shipping-progress__check {
  right: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  transform: translate(0, -50%);
}

.action-link,
.primary-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #4e5d50;
  font-weight: 700;
  font-size: 0.9rem;
}

.action-button {
  cursor: pointer;
}

.icon-action,
.action-button {
  position: relative;
}

.mobile-menu-button {
  display: none;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #4e5d50;
  cursor: pointer;
}

.account-state {
  display: none;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -5px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #c9ad5f;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.main-nav {
  background: #ebe8df;
  border-top: 1px solid var(--line);
}

.nav-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: #5e685f;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.main-nav a:hover {
  background: #f8f7f4;
  color: var(--text);
}

.nav-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #dfe8dc;
  color: var(--accent-dark);
  font-size: 0.8rem;
}

.primary-button {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.cart-page {
  padding: 34px 0 64px;
}

.cart-overview {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdfa;
  box-shadow: var(--shadow);
}

.cart-overview .section-head h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.cart-overview-items {
  margin-top: 0;
}

.cart-overview-summary {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 16px;
}

.back-link {
  font-weight: 700;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: start;
}

.cart-main,
.cart-summary,
.checkout-panel,
.cart-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.cart-main,
.cart-summary {
  padding: 28px;
  background: #fffdfa;
}

.cart-summary {
  position: static;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-head h1,
.cart-summary h2,
.checkout-panel h2,
.cart-products-head h2 {
  margin: 0;
  line-height: 1.08;
}

.section-head h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.cart-summary h2,
.checkout-panel h2,
.cart-products-head h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.cart-items,
.checkout-shell,
.summary-list {
  display: grid;
  gap: 14px;
}

.cart-items {
  margin-top: 14px;
}

.checkout-shell {
  margin-top: 18px;
}

.checkout-panel {
  padding: 24px;
  background: #fffdfa;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.fake-field {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #9aa39b;
  font-size: 1rem;
}

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

.note-field {
  min-height: 86px;
  align-items: flex-start;
  padding-top: 16px;
}

.delivery-options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.delivery-option {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.delivery-option input {
  align-self: center;
  margin: 0;
}

.delivery-option span,
.delivery-option small {
  display: block;
}

.delivery-option small {
  margin-top: 3px;
  color: var(--muted);
}

.consent-row {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #56615b;
}

.cart-products-head {
  margin-top: 22px;
}

.cart-item {
  padding: 14px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(150px, auto);
  gap: 12px;
  align-items: start;
  background: #ffffff;
}

.cart-item-unavailable {
  border: 1px solid #ead7b8;
  background: #fffaf0;
}

.cart-item-image {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #edf2e8 0%, #efe6d9 100%);
}

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

.cart-item-image,
.cart-item-title-link {
  color: inherit;
  text-decoration: none;
}

.cart-item-image:focus-visible,
.cart-item-title-link:focus-visible {
  outline: 3px solid rgba(149, 169, 139, 0.35);
  outline-offset: 3px;
}

.cart-item-title-link:hover {
  color: var(--accent-dark);
}

.cart-item-copy h3,
.cart-item-price strong {
  margin: 0;
}

.cart-item-copy h3 {
  margin-bottom: 6px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.25;
}

.cart-item-copy {
  min-width: 0;
  align-self: start;
}

.cart-item-copy p,
.summary-note {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-item-copy p:nth-of-type(2) {
  display: none;
}

.cart-item-warning {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f7e7c5;
  color: #7a4d00 !important;
  font-weight: 700;
  white-space: nowrap;
}

.cart-item-price {
  display: grid;
  justify-items: end;
  gap: 12px;
  align-self: end;
  text-align: right;
  font-size: 0.98rem;
  min-width: 0;
}

.cart-price-breakdown {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.cart-line-total {
  display: block;
}

.cart-quantity-block {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.cart-quantity-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.cart-item-controls button,
.cart-item-controls span {
  width: 32px;
  height: 34px;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--text);
}

.cart-item-controls button {
  cursor: pointer;
}

.cart-item-controls button:hover {
  background: #eef3ea;
}

.cart-item-controls button:disabled,
.cart-item-controls.is-disabled button:not(.remove-button) {
  color: #9aa295;
  cursor: not-allowed;
  background: #f5f3ed;
}

.cart-item-controls .remove-button {
  color: var(--danger);
  border-left: 1px solid var(--line);
}

.cart-item-controls.is-disabled .remove-button {
  cursor: pointer;
  background: #fff;
}

.cart-unavailable-warning,
.cart-checkout-helper {
  padding: 12px 14px;
  border: 1px solid #ead7b8;
  border-radius: 8px;
  background: #fffaf0;
  color: #6e4b13;
  font-weight: 700;
}

.cart-checkout-helper {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1rem;
}

.summary-stats-block {
  overflow: hidden;
  border: 1px solid #edf0e8;
  border-radius: 8px;
  background: #fff;
}

.summary-stats-block .summary-row {
  padding: 10px 12px;
  border-bottom: 1px solid #edf0e8;
}

.summary-stats-block .summary-row:last-child {
  border-bottom: 0;
}

.summary-row-subtotal,
.summary-row.total {
  padding: 12px;
  border-color: #cbd7c4;
  background: #f4f8f1;
  font-weight: 800;
}

.summary-button {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
}

.summary-button.is-disabled {
  pointer-events: none;
  opacity: 0.55;
  cursor: not-allowed;
}

.cart-summary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.secondary-button {
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent-dark);
  cursor: pointer;
}

.summary-note {
  font-size: 0.92rem;
}

.empty-cart {
  color: var(--muted);
}

footer {
  margin-top: 46px;
  padding: 34px 0;
  border-top: 0;
  background: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 24px;
}

.footer-brand .brand-logo {
  width: 118px;
}

footer h4 {
  margin: 0 0 14px;
}

footer p,
footer li {
  font-size: 0.92rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

@media (max-width: 980px) {
  .cart-layout,
  .header-main,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cart-layout {
    gap: 22px;
  }

  .header-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1240px, calc(100% - 24px));
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 30;
  }

  .site-header.is-menu-open {
    position: relative;
    top: auto;
  }

  .header-main {
    min-height: auto;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
  }

  .site-header.is-cart-empty .progress-track {
    display: none;
  }

  .site-header.is-cart-empty .purchase-progress {
    display: block;
  }

  .site-header.is-cart-empty .progress-copy {
    display: block;
    margin: 0;
    font-size: 0.82rem;
  }

  .brand-logo {
    width: 76px;
  }

  .purchase-progress {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    padding: 10px 0 4px;
  }

  .header-actions {
    justify-content: flex-end;
    gap: 6px;
  }

  .action-link {
    min-height: 36px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 0.78rem;
  }

  .action-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 999px;
  }

  .action-button span,
  .account-icon {
    display: none;
  }

  .account-trigger,
  .account-dropdown {
    display: none !important;
  }

  .mobile-menu-button {
    display: inline-flex;
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .mini-cart-dropdown {
    display: none !important;
  }

  .main-nav {
    display: none;
    position: static;
    width: 100%;
    z-index: auto;
  }

  .site-header.is-menu-open .main-nav {
    display: block;
    position: static;
  }

  .cart-item {
    grid-template-columns: 72px 1fr;
    align-items: start;
  }

  .cart-item-image {
    width: 72px;
    height: 72px;
  }

  .cart-item-price {
    text-align: left;
    grid-column: 2;
    align-self: start;
    justify-items: start;
    display: grid;
    gap: 10px;
  }

  .cart-item-controls {
    margin-top: 0;
    justify-self: start;
  }

  .nav-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 4px;
    padding: 8px 0 12px;
  }

  .mobile-account-section {
    display: grid;
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .mobile-account-section a,
  .mobile-account-section button {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    min-height: 36px;
    padding: 0 8px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #4e5d50;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-account-section a:hover,
  .mobile-account-section button:hover {
    background: #f5f3ed;
  }

  .main-nav a {
    justify-content: flex-start;
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.82rem;
  }

  .field-grid,
  .delivery-option {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .delivery-option b {
    grid-column: 2;
  }

  .cart-main,
  .cart-summary,
  .checkout-panel,
  .cart-overview {
    padding: 20px;
  }

  .cart-summary-actions {
    grid-template-columns: 1fr;
  }

  .free-shipping-progress__copy {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .free-shipping-progress__copy span {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 190px;
  }

  body:has(.site-header.is-menu-open) {
    padding-top: 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: #f8f7f4;
    box-shadow: 0 10px 24px rgba(57, 75, 54, 0.08);
  }

  .site-header.is-menu-open {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    box-shadow: none;
  }
}

/* Phase A: cart grouping and CTA hierarchy quick wins. */
.cart-summary {
  display: grid;
  gap: 18px;
}

.cart-summary .summary-list {
  gap: 14px;
}

.cart-summary .summary-row.total {
  margin-top: 4px;
  padding: 14px;
}

.cart-summary .summary-button:not(.secondary-button) {
  min-height: 52px;
}

.cart-summary .secondary-button,
.cart-summary .summary-button.secondary-button {
  border-color: #ded9cf;
  background: #fffdfa;
  color: var(--muted);
  box-shadow: none;
}

.mini-cart-footer {
  gap: 12px;
}
