:root {
  --navy-950: #06162d;
  --navy-900: #081d38;
  --navy-800: #0d294a;
  --navy-700: #173858;
  --gold-500: #c99545;
  --gold-400: #d9ad69;
  --gold-200: #ead3aa;
  --ivory: #f8f5ef;
  --paper: #ffffff;
  --mist: #f2f3f4;
  --ink: #11243a;
  --muted: #637080;
  --line: #dedede;
  --success: #247453;
  --danger: #a94442;
  --shadow: 0 16px 35px rgba(10, 28, 48, 0.12);
  --edge: clamp(20px, 2vw, 44px);
  --page: calc(100% - clamp(40px, 4vw, 88px));
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

body.is-locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  opacity: 0;
  pointer-events: none;
  padding: 10px 14px;
  background: white;
  color: var(--navy-950);
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-950);
  color: white;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  width: var(--page);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  justify-self: start;
}

.brand__mark {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(217, 173, 105, 0.8);
  border-radius: 50%;
  background: white;
}

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

.brand__copy {
  display: grid;
  gap: 3px;
  white-space: nowrap;
}

.brand__copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand__copy small {
  color: var(--gold-400);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand__copy i {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 5px 2px;
  border-radius: 50%;
  background: currentColor;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 15px;
  left: 50%;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transition: right 160ms ease, left 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: white;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  right: 0;
  left: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.09);
}

.icon-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.7;
}

.icon-button--dark {
  color: var(--ink);
}

.icon-button--dark:hover {
  background: var(--mist);
}

.cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  min-width: 16px;
  height: 16px;
  padding-inline: 4px;
  place-items: center;
  border: 2px solid var(--navy-950);
  border-radius: 999px;
  background: var(--gold-500);
  color: white;
  font-size: 9px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button--navy {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: white;
}

.button--navy:hover {
  border-color: #123b65;
  background: #123b65;
}

.button--ghost {
  border-color: #d5dce3;
  background: white;
  color: var(--navy-900);
}

.button--ghost:hover {
  border-color: #b9c6d2;
  background: var(--mist);
}

.button:hover {
  transform: translateY(-1px);
}

.button--gold {
  border-color: var(--gold-500);
  background: var(--gold-500);
  color: white;
}

.button--gold:hover {
  border-color: var(--gold-400);
  background: var(--gold-400);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(7, 26, 51, 0.25);
  color: white;
}

.button--outline-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.09);
}

.header-quote-button {
  min-width: 168px;
  margin-left: 12px;
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  height: 306px;
  overflow: hidden;
  background: var(--navy-900);
  color: white;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("/assets/storefront/hero.webp");
  background-position: center 49%;
  background-size: cover;
}

.hero__shade {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(4, 20, 42, 0.94) 0%,
    rgba(4, 20, 42, 0.86) 22%,
    rgba(4, 20, 42, 0.62) 39%,
    rgba(4, 20, 42, 0.28) 57%,
    rgba(4, 20, 42, 0.07) 76%,
    rgba(4, 20, 42, 0) 100%
  );
}

.hero__content {
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-start;
  padding-top: 31px;
}

.hero__copy {
  width: 610px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.catalog-hero h1,
.product-detail h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 610px;
  font-size: 43px;
  line-height: 0.99;
}

.hero__lead {
  margin: 10px 0 13px;
  color: rgba(255, 255, 255, 0.91);
  font-size: 13px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 13px;
}

.hero-benefits {
  position: absolute;
  bottom: 0;
  left: var(--edge);
  display: flex;
  height: 48px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
}

.hero-benefits > div {
  display: flex;
  min-width: 185px;
  align-items: center;
  gap: 10px;
  padding-right: 26px;
  font-size: 10px;
}

.hero-benefits > div + div {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-benefits svg {
  width: 19px;
  color: var(--gold-400);
}

#homeView {
  display: flex;
  flex-direction: column;
}

.storefront-route-loader {
  display: none;
}

.storefront-js:not(.storefront-ready) #homeView,
.storefront-js:not(.storefront-ready) #catalogView,
.storefront-js:not(.storefront-ready) #productView,
.storefront-js:not(.storefront-ready) #customerAccountView {
  display: none !important;
}

.storefront-js.storefront-home-entry:not(.storefront-ready) #homeView {
  display: block !important;
}

.storefront-js.storefront-home-entry:not(.storefront-ready) .storefront-route-loader {
  display: none !important;
}

.storefront-js:not(.storefront-ready) .storefront-route-loader {
  display: flex;
  min-height: min(54vh, 520px);
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 700;
}

.storefront-route-loader__spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(7, 26, 51, 0.16);
  border-top-color: var(--gold-500);
  border-radius: 50%;
  animation: storefront-route-spin 700ms linear infinite;
}

@keyframes storefront-route-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .storefront-route-loader__spinner {
    animation: none;
  }
}

/* Checkout */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body[data-view="checkout"] {
  background: #f4f6f8;
}

body[data-view="checkout"] > .site-header,
body[data-view="checkout"] > .mobile-nav,
body[data-view="checkout"] > .site-footer {
  display: none !important;
}

.checkout-view {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  color: #11243a;
  background:
    linear-gradient(90deg, #f9fafb 0, #f9fafb 62%, #eef2f5 62%, #eef2f5 100%);
}

.checkout-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 12px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(17, 36, 58, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 7px 26px rgba(3, 24, 48, 0.07);
  backdrop-filter: blur(14px);
}

.checkout-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #092847;
}

.checkout-header__brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border: 1px solid #d8e0e7;
  border-radius: 8px;
  background: white;
}

.checkout-header__brand span {
  display: grid;
  gap: 3px;
}

.checkout-header__brand strong {
  font-size: 17px;
  letter-spacing: 0;
}

.checkout-header__brand small {
  color: #a9782d;
  font-size: 10px;
  font-weight: 800;
}

.checkout-header__cart {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid #d4dce4;
  border-radius: 6px;
  color: #14324f;
  background: white;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.checkout-header__cart svg {
  width: 18px;
}

.checkout-header__cart b {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  border-radius: 50%;
  color: white;
  background: #b68436;
  font-size: 11px;
}

.checkout-shell {
  display: grid;
  flex: 1 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(36px, 6vw, 92px);
  width: min(1440px, calc(100% - clamp(32px, 8vw, 120px)));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.checkout-flow,
.checkout-summary-panel,
.checkout-section,
.checkout-review {
  min-width: 0;
}

.checkout-flow {
  width: min(760px, 100%);
  margin-left: auto;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.checkout-steps span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 10px 12px;
  border-bottom: 2px solid #dce2e8;
  color: #738091;
  font-size: 12px;
  font-weight: 750;
}

.checkout-steps b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  color: #58687a;
  background: #e8edf1;
  font-size: 10px;
}

.checkout-steps span.is-active {
  border-color: #b68436;
  color: #092847;
}

.checkout-steps span.is-active b {
  color: white;
  background: #0d416b;
}

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

.checkout-section,
.checkout-review,
.checkout-empty {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #dce2e8;
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(4, 28, 52, 0.06);
}

.checkout-section--compact {
  padding-bottom: 24px;
}

.checkout-section__heading,
.checkout-review__heading,
.checkout-summary-panel__heading,
.checkout-login-panel__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.checkout-section__heading {
  margin-bottom: 19px;
}

.checkout-section__heading > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.checkout-section__heading h1,
.checkout-section__heading h2,
.checkout-review h1,
.checkout-summary-panel h2 {
  margin: 0;
  color: #0a2948;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.15;
}

.checkout-section__number {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(182, 132, 54, 0.38);
  border-radius: 50%;
  color: #8f6425;
  background: #fffaf0;
  font-size: 12px;
  font-weight: 850;
}

.checkout-login-toggle,
.checkout-summary-panel__heading button {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid #b68436;
  color: #835b20;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.checkout-account-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 11px 13px;
  border-left: 3px solid #2d8b72;
  color: #17634f;
  background: #edf8f4;
  font-size: 12px;
  font-weight: 700;
}

.checkout-account-note svg {
  width: 18px;
  flex: 0 0 18px;
}

.checkout-login-panel {
  display: grid;
  gap: 13px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid #cbd9e4;
  border-radius: 6px;
  background: #f3f8fb;
}

.checkout-login-panel__heading button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  color: #3d536a;
  background: transparent;
  cursor: pointer;
}

.checkout-login-panel__heading svg {
  width: 18px;
}

.checkout-login-fields,
.checkout-field-grid,
.checkout-schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-login-fields label,
.checkout-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #31465b;
  font-size: 12px;
  font-weight: 750;
}

.checkout-field small {
  color: #8190a0;
  font-weight: 500;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea,
.checkout-login-fields input {
  width: 100%;
  min-width: 0;
  border: 1px solid #ccd5dd;
  border-radius: 6px;
  color: #102a44;
  background: #fff;
  font: inherit;
  font-size: 14px;
  outline: 0;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.checkout-field input,
.checkout-field select,
.checkout-login-fields input {
  min-height: 48px;
  padding: 0 13px;
}

.checkout-field textarea {
  min-height: 92px;
  padding: 12px 13px;
  resize: vertical;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus,
.checkout-login-fields input:focus {
  border-color: #0e5b80;
  box-shadow: 0 0 0 3px rgba(14, 91, 128, 0.12);
}

.checkout-address-fields {
  display: grid;
  gap: 12px;
}

.checkout-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 13px;
  color: #405367;
  font-size: 12px;
  line-height: 1.45;
}

.checkout-check input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 1px 0 0;
  accent-color: #0e5b80;
}

.checkout-check--boxed,
.checkout-check--terms {
  padding: 14px;
  border: 1px solid #d5dce3;
  border-radius: 6px;
  background: #fafbfc;
}

.checkout-check--terms {
  margin: 0;
  background: white;
}

.checkout-segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 18px;
  padding: 3px;
  border: 1px solid #d5dce3;
  border-radius: 7px;
  background: #f0f3f5;
}

.checkout-segmented label {
  min-width: 0;
}

.checkout-segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-segmented span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #506175;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.checkout-segmented svg {
  width: 18px;
}

.checkout-segmented input:checked + span {
  border-color: #c7d1db;
  color: #0b3458;
  background: white;
  box-shadow: 0 2px 9px rgba(6, 37, 65, 0.08);
}

.checkout-pickup-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 13px;
  margin-bottom: 15px;
  padding: 16px;
  border: 1px solid #bad8cf;
  border-radius: 6px;
  color: #1c5147;
  background: #f0f8f5;
}

.checkout-pickup-panel > svg {
  width: 23px;
}

.checkout-pickup-panel div {
  display: grid;
  gap: 3px;
}

.checkout-pickup-panel span,
.checkout-pickup-panel small {
  color: #547268;
  font-size: 11px;
  line-height: 1.4;
}

.checkout-pickup-panel > b {
  color: #1c6b56;
  font-size: 11px;
}

.checkout-schedule {
  margin-top: 14px;
}

.checkout-delivery-quote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 13px 14px;
  border-left: 3px solid #b7c2cc;
  color: #5b6a7a;
  background: #f4f6f8;
  font-size: 12px;
  line-height: 1.45;
}

.checkout-delivery-quote svg {
  width: 19px;
  flex: 0 0 19px;
}

.checkout-delivery-quote span {
  display: grid;
  gap: 2px;
}

.checkout-delivery-quote small {
  color: inherit;
}

.checkout-delivery-quote.is-success {
  border-color: #2b8c70;
  color: #1d664f;
  background: #edf8f4;
}

.checkout-delivery-quote.is-warning {
  border-color: #c18731;
  color: #76521d;
  background: #fff8ea;
}

.checkout-section__intro {
  margin: -7px 0 16px;
  color: #6c7b8b;
  font-size: 12px;
  line-height: 1.5;
}

.checkout-payment-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 2px solid #0e5b80;
  border-radius: 7px;
  background: #f8fbfd;
}

.checkout-radio-dot {
  width: 17px;
  height: 17px;
  border: 5px solid #0e5b80;
  border-radius: 50%;
  background: white;
}

.checkout-payment-option > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.checkout-payment-option small {
  color: #637386;
  font-size: 11px;
}

.checkout-payment-option small.is-error {
  color: #a52f35;
}

.checkout-payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.checkout-payment-logos span {
  padding: 4px 6px;
  border: 1px solid #d1d9e0;
  border-radius: 3px;
  color: #263f57;
  background: white;
  font-size: 8px;
  font-weight: 850;
}

.checkout-primary-button {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

.checkout-primary-button svg {
  width: 18px;
}

.checkout-message {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid #b7393e;
  color: #8d2429;
  background: #fff1f1;
  font-size: 12px;
  line-height: 1.45;
}

.checkout-message.is-success {
  border-color: #2c8b70;
  color: #17634f;
  background: #edf8f4;
}

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

.checkout-review__heading h1 {
  margin-top: 4px;
  font-size: 30px;
}

.checkout-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #d9e0e6;
  border-radius: 7px;
  overflow: hidden;
}

.checkout-review-grid article {
  display: grid;
  align-content: start;
  gap: 5px;
  min-width: 0;
  padding: 17px;
}

.checkout-review-grid article:nth-child(odd) {
  border-right: 1px solid #e2e7eb;
}

.checkout-review-grid article:nth-child(-n + 2) {
  border-bottom: 1px solid #e2e7eb;
}

.checkout-review-grid span {
  color: #7c8997;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.checkout-review-grid strong,
.checkout-review-grid small {
  overflow-wrap: anywhere;
}

.checkout-review-grid strong {
  color: #142f4a;
  font-size: 14px;
}

.checkout-review-grid small {
  color: #667687;
  font-size: 11px;
  line-height: 1.5;
}

.checkout-secure-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: -7px 0 0;
  color: #607185;
  font-size: 11px;
  line-height: 1.5;
}

.checkout-secure-note svg {
  width: 17px;
  flex: 0 0 17px;
  color: #2c8069;
}

.checkout-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-block: 72px;
  text-align: center;
}

.checkout-empty > svg {
  width: 48px;
  height: 48px;
  color: #b68436;
}

.checkout-empty h1,
.checkout-empty p {
  margin: 0;
}

.checkout-empty h1 {
  color: #0a2948;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.checkout-empty p {
  color: #657587;
}

.checkout-summary-panel {
  position: sticky;
  top: 118px;
  align-self: start;
  width: min(570px, 100%);
  margin-right: auto;
  padding: 28px;
  border: 1px solid #d9e0e5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(5, 30, 54, 0.08);
}

.checkout-summary-panel__heading {
  margin-bottom: 21px;
}

.checkout-summary-panel h2 {
  font-size: 24px;
}

.checkout-summary-items {
  display: grid;
  gap: 14px;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.checkout-summary-item__image {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid #d8dfe5;
  border-radius: 7px;
  overflow: visible;
  color: #6b7b8c;
  background: #f7f8f9;
}

.checkout-summary-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.checkout-summary-item__image b {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  border-radius: 50%;
  color: white;
  background: #0d416b;
  font-size: 10px;
}

.checkout-summary-item > span:nth-child(2) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.checkout-summary-item strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #1c334b;
  font-size: 12px;
}

.checkout-summary-item small {
  overflow-wrap: anywhere;
  color: #788695;
  font-size: 10px;
}

.checkout-summary-discount {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 23px 0;
  padding-block: 20px;
  border-block: 1px solid #dfe4e8;
}

.checkout-summary-discount input,
.checkout-summary-discount button {
  min-width: 0;
  min-height: 43px;
  border: 1px solid #d4dbe1;
  border-radius: 5px;
  font: inherit;
  font-size: 11px;
}

.checkout-summary-discount input {
  padding: 0 12px;
}

.checkout-summary-discount button {
  padding: 0 14px;
  color: #929da8;
  background: #f2f4f5;
}

.checkout-totals {
  display: grid;
  gap: 12px;
  margin: 0;
}

.checkout-totals div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #485a6c;
  font-size: 12px;
}

.checkout-totals dt,
.checkout-totals dd {
  margin: 0;
}

.checkout-totals dd {
  color: #142f4a;
  font-weight: 750;
  text-align: right;
}

.checkout-totals__total {
  align-items: end;
  margin-top: 5px;
  padding-top: 14px;
  border-top: 1px solid #dfe4e8;
  color: #0b2c4b !important;
  font-size: 16px !important;
  font-weight: 850;
}

.checkout-totals__total dd {
  font-size: 23px;
}

.checkout-summary-assurances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 24px;
}

.checkout-summary-assurances span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #607184;
  font-size: 10px;
  line-height: 1.35;
}

.checkout-summary-assurances svg {
  width: 17px;
  flex: 0 0 17px;
  color: #2b8069;
}

.checkout-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 24px clamp(20px, 5vw, 76px) 34px;
  border-top: 1px solid #d9e0e5;
  color: #647487;
  background: #f8f9fa;
  font-size: 10px;
}

.checkout-footer a {
  color: #8b6226;
  font-weight: 800;
}

.checkout-processing {
  position: fixed;
  z-index: 250;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4, 23, 42, 0.68);
  backdrop-filter: blur(5px);
}

.checkout-processing > div {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(430px, 100%);
  padding: 32px;
  border-top: 4px solid #b68436;
  border-radius: 8px;
  color: #18324c;
  background: white;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 11, 24, 0.32);
}

.checkout-processing strong {
  color: #092847;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.checkout-processing > div > span:not(.checkout-processing__spinner, .checkout-processing__bar) {
  color: #647487;
  font-size: 12px;
}

.checkout-processing__spinner {
  width: 38px;
  height: 38px;
  border: 3px solid #dde5eb;
  border-top-color: #0e5b80;
  border-radius: 50%;
  animation: checkout-spin 750ms linear infinite;
}

.checkout-processing__bar {
  width: 100%;
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
  background: #e6ebef;
}

.checkout-processing__bar i {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0d416b, #b68436);
  animation: checkout-progress 1.2s ease-in-out infinite;
}

@keyframes checkout-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes checkout-progress {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(250%);
  }
}

@media (max-width: 1040px) {
  .checkout-view {
    background: #f5f7f9;
  }

  .checkout-shell {
    grid-template-columns: minmax(0, 1fr);
    width: min(820px, calc(100% - 40px));
    gap: 24px;
    padding-top: 30px;
  }

  .checkout-flow,
  .checkout-summary-panel {
    width: 100%;
    margin: 0;
  }

  .checkout-summary-panel {
    position: static;
    order: -1;
  }
}

@media (max-width: 680px) {
  .checkout-header {
    min-height: 70px;
    padding: 9px 14px;
  }

  .checkout-header__brand {
    gap: 8px;
  }

  .checkout-header__brand img {
    width: 46px;
    height: 46px;
  }

  .checkout-header__brand strong {
    font-size: 13px;
  }

  .checkout-header__brand small {
    font-size: 8px;
  }

  .checkout-header__cart {
    padding: 0 10px;
  }

  .checkout-header__cart > span {
    display: none;
  }

  .checkout-shell {
    width: min(100% - 24px, 620px);
    padding: 18px 0 42px;
  }

  .checkout-summary-panel,
  .checkout-section,
  .checkout-review,
  .checkout-empty {
    padding: 19px;
  }

  .checkout-steps span {
    justify-content: center;
    padding-inline: 4px;
    font-size: 10px;
  }

  .checkout-steps b {
    display: none;
  }

  .checkout-section__heading h1,
  .checkout-section__heading h2 {
    font-size: 22px;
  }

  .checkout-login-fields,
  .checkout-field-grid,
  .checkout-schedule,
  .checkout-review-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-review-grid article,
  .checkout-review-grid article:nth-child(odd),
  .checkout-review-grid article:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #e2e7eb;
  }

  .checkout-review-grid article:last-child {
    border-bottom: 0;
  }

  .checkout-payment-option {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .checkout-payment-logos {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 30px;
  }

  .checkout-summary-item {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

  .checkout-summary-item__image {
    width: 54px;
    height: 54px;
  }

  .checkout-summary-assurances {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-processing > div {
    padding: 26px 20px;
  }
}

@media (max-width: 420px) {
  .checkout-header__brand span {
    display: none;
  }

  .checkout-section__number {
    width: 27px;
    height: 27px;
  }

  .checkout-login-toggle {
    font-size: 11px;
  }

  .checkout-summary-item {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .checkout-summary-item > strong {
    grid-column: 2;
  }
}

.category-band {
  min-height: 180px;
  padding: 17px 0;
  background: var(--paper);
}

.category-band__grid {
  display: grid;
  grid-template-columns: clamp(220px, 13vw, 260px) minmax(0, 1fr);
  gap: 24px;
}

.section-intro {
  min-width: 0;
}

.section-intro h2,
.reviews-intro h2,
.about-band h2,
.final-cta strong,
.quote-modal h2,
.empty-state h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.section-intro h2,
.reviews-intro h2 {
  position: relative;
  padding-bottom: 9px;
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-intro h2::after,
.reviews-intro h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--gold-500);
  content: "";
}

.section-intro p {
  margin: 11px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ad7b31;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-cta {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(7, 26, 51, 0.9);
  border-radius: 5px;
  background: var(--navy-900);
  color: white;
  box-shadow: 0 7px 16px rgba(5, 19, 38, 0.1);
  font-size: 11px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.section-cta:hover {
  border-color: #153f69;
  background: #153f69;
  color: white;
  box-shadow: 0 10px 22px rgba(5, 19, 38, 0.16);
  transform: translateY(-1px);
}

.furniture-cards {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.image-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 7px;
  background: white;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.image-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.strip-image {
  display: block;
  width: 100%;
  background-color: #ece8df;
  background-position-y: center;
  background-repeat: no-repeat;
}

.furniture-image {
  height: auto;
  aspect-ratio: 16 / 9;
  background-image: url("/assets/storefront/furniture-strip.webp");
  background-size: 500% auto;
}

.furniture-image--1 { background-position-x: 0%; }
.furniture-image--2 { background-position-x: 25%; }
.furniture-image--3 { background-position-x: 50%; }
.furniture-image--4 { background-position-x: 75%; }
.furniture-image--5 { background-position-x: 100%; }

.image-card__body {
  position: relative;
  display: grid;
  min-height: 48px;
  align-content: center;
  padding: 5px 25px 5px 10px;
}

.image-card__body strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.image-card__body small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.image-card__body b {
  position: absolute;
  right: 10px;
  bottom: 11px;
  color: var(--gold-500);
  font-size: 16px;
  font-weight: 400;
}

.showcase-band {
  display: grid;
  min-height: 190px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.showcase-half {
  display: grid;
  min-width: 0;
  grid-template-columns: clamp(195px, 11vw, 230px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px var(--edge);
}

.showcase-half--inspiration {
  padding-right: 20px;
  padding-left: var(--edge);
}

.showcase-half--balloons {
  padding-right: var(--edge);
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.section-intro--compact h2 {
  font-size: 20px;
  overflow-wrap: break-word;
}

.section-intro--compact p {
  margin-bottom: 13px;
  font-size: 13.5px;
}

.inspiration-grid,
.balloon-grid {
  display: grid;
  min-width: 0;
  gap: 9px;
}

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

.inspiration-image {
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 7px;
  background-image: url("/assets/storefront/inspiration-strip.webp");
  background-size: 300% auto;
}

.inspiration-image--1 { background-position-x: 0%; }
.inspiration-image--2 { background-position-x: 50%; }
.inspiration-image--3 { background-position-x: 100%; }

.balloon-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.balloon-grid a {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e4e0d8;
  border-radius: 7px;
  background: white;
  box-shadow: 0 6px 14px rgba(5, 19, 38, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.balloon-grid a:hover {
  box-shadow: 0 10px 22px rgba(5, 19, 38, 0.13);
  transform: translateY(-2px);
}

.balloon-image {
  height: auto;
  aspect-ratio: 4 / 3;
  background-image: url("/assets/storefront/balloon-strip.webp");
  background-size: 400% auto;
}

.balloon-image--1 { background-position-x: 0%; }
.balloon-image--2 { background-position-x: 33.333%; }
.balloon-image--3 { background-position-x: 66.667%; }
.balloon-image--4 { background-position-x: 100%; }

.balloon-grid strong {
  display: grid;
  min-height: 38px;
  padding: 8px 7px;
  place-items: center;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.reviews-band {
  min-height: 126px;
  padding: 17px 0;
  background: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 210px repeat(3, minmax(0, 1fr)) 190px;
  align-items: center;
}

.reviews-intro,
.reviews-grid blockquote,
.review-score {
  min-height: 91px;
  margin: 0;
  padding: 3px 24px;
  border-right: 1px solid var(--line);
}

.reviews-intro {
  padding-left: 0;
}

.reviews-intro h2 {
  font-size: 19px;
}

.stars {
  color: var(--gold-500);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
}

.reviews-grid blockquote p {
  margin: 5px 0 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13.5px;
  line-height: 1.42;
}

.reviews-grid blockquote cite {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
}

.review-score {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  border: 0;
}

.review-score__g {
  grid-row: span 2;
  margin-right: 9px;
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 700;
}

.review-score strong {
  align-self: end;
  font-size: 18px;
}

.review-score small {
  color: var(--muted);
  font-size: 9px;
}

.about-band {
  order: 6;
  padding: 70px 0;
  background: var(--ivory);
  text-align: center;
}

.about-band__inner {
  max-width: 780px;
}

.about-band h2 {
  margin-bottom: 15px;
  font-size: 38px;
}

.about-band p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  order: 5;
  width: min(1464px, calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto 18px;
  background: var(--navy-950);
  color: white;
}

.final-cta__inner {
  display: grid;
  min-height: 86px;
  grid-template-columns: auto 1.3fr auto auto 1fr 1fr;
  align-items: center;
  gap: 22px;
}

.final-cta__inner > svg {
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-400);
}

.final-cta__inner > div:nth-child(2) {
  display: grid;
  gap: 5px;
}

.final-cta__inner > div:nth-child(2) strong {
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.final-cta__inner > div:nth-child(2) span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
}

.final-cta .button {
  min-height: 46px;
}

.final-cta .button--outline-light span {
  display: grid;
  text-align: left;
  text-transform: none;
}

.final-cta .button--outline-light small {
  color: var(--gold-400);
  font-size: 8px;
  text-transform: uppercase;
}

.cta-promise {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-promise > svg {
  width: 30px;
  color: var(--gold-400);
}

.cta-promise span {
  display: grid;
}

.cta-promise strong {
  font-family: inherit;
  font-size: 10px;
}

.cta-promise small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
}

.site-footer {
  order: 7;
  padding: 45px 0 18px;
  background: #051326;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
}

.brand--footer .brand__mark {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer__grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__grid > div > strong {
  margin-bottom: 5px;
  color: var(--gold-400);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer__grid a,
.site-footer__grid button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 12px;
}

.site-footer__grid a:hover,
.site-footer__grid button:hover {
  color: white;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
}

.catalog-view,
.product-view {
  min-height: 70vh;
  background: var(--mist);
}

.catalog-hero {
  min-height: 200px;
  padding: 48px 0;
  background: var(--navy-900);
  color: white;
}

.catalog-hero h1 {
  font-size: 46px;
}

.catalog-hero p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 28px;
  padding-block: 32px 70px;
}

.catalog-filters {
  align-self: start;
  padding: 20px;
  border: 1px solid #e1e3e4;
  border-radius: 6px;
  background: white;
}

.catalog-filters__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.catalog-filters__heading strong {
  font-size: 17px;
}

.catalog-filters__heading button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #a87630;
  cursor: pointer;
  font-size: 11px;
}

.catalog-filters > label,
.catalog-filters legend {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-field {
  position: relative;
  margin-bottom: 24px;
}

.search-field svg {
  position: absolute;
  top: 11px;
  left: 10px;
  width: 17px;
  color: var(--muted);
}

.search-field input {
  width: 100%;
  height: 40px;
  padding: 0 10px 0 34px;
  border: 1px solid #ccd1d4;
  border-radius: 3px;
}

.catalog-filters fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.catalog-filters fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.catalog-toolbar {
  display: flex;
  min-height: 57px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.catalog-toolbar > div {
  display: grid;
}

.catalog-toolbar span {
  color: var(--muted);
  font-size: 11px;
}

.catalog-toolbar strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.catalog-toolbar label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
}

.catalog-toolbar select {
  min-width: 160px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #ccd1d4;
  border-radius: 3px;
  background: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e3e4;
  border-radius: 6px;
  background: white;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.product-card__image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__image.is-fallback {
  background-image: url("/assets/storefront/furniture-strip.webp");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 500% auto;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 3px;
  background: rgba(6, 22, 45, 0.9);
  color: white;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card__body {
  display: grid;
  gap: 7px;
  padding: 15px;
}

.product-card__body small {
  color: #a87630;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card__body h3 {
  min-height: 42px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-card__price {
  display: grid;
}

.product-card__price strong {
  font-size: 14px;
}

.product-card__price del {
  color: var(--muted);
  font-size: 10px;
}

.mini-cart-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--navy-900);
  border-radius: 50%;
  background: var(--navy-900);
  color: white;
  cursor: pointer;
}

.mini-cart-button svg {
  width: 16px;
}

.empty-state {
  display: grid;
  min-height: 360px;
  place-items: center;
  align-content: center;
  padding: 45px;
  border: 1px solid #e1e3e4;
  background: white;
  text-align: center;
}

.empty-state > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  color: var(--gold-500);
}

.empty-state h2 {
  font-size: 30px;
}

.empty-state p {
  max-width: 480px;
  margin: 10px 0 24px;
  color: var(--muted);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  padding-block: 55px 80px;
}

.product-detail__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: var(--ivory);
}

.product-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__media.is-fallback {
  background-image: url("/assets/storefront/furniture-strip.webp");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 500% auto;
}

.product-detail__copy {
  align-self: center;
}

.product-detail h1 {
  font-size: 46px;
  line-height: 1.05;
}

.product-detail__description {
  margin: 19px 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-detail__badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(201, 149, 69, 0.45);
  border-radius: 3px;
  background: #fff9ee;
  color: #9b6a24;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail__features {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 18px 20px 18px 38px;
  border: 1px solid #e1e3e4;
  border-radius: 5px;
  background: white;
  color: var(--muted);
  font-size: 12px;
}

.product-detail__price {
  margin: 20px 0;
  font-size: 22px;
  font-weight: 800;
}

.product-detail__availability {
  margin-bottom: 20px;
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
}

.product-detail__actions {
  display: flex;
  gap: 12px;
}

.product-detail__actions input {
  width: 70px;
  border: 1px solid #ccd1d4;
  border-radius: 2px;
  text-align: center;
}

.customer-account-view {
  min-height: calc(100vh - 70px);
  padding: 46px 0 64px;
  background: #eef1f3;
}

.customer-account-layout {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(380px, 0.92fr) minmax(520px, 1.08fr);
  overflow: hidden;
  border: 1px solid #dfe4e8;
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 70px rgba(5, 19, 38, 0.12);
}

.customer-account-visual {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(34px, 4vw, 66px);
  background:
    linear-gradient(180deg, rgba(5, 19, 38, 0.08) 20%, rgba(5, 19, 38, 0.93) 100%),
    url("/assets/storefront/hero.webp") 59% center / cover no-repeat;
  color: white;
}

.customer-account-visual > div {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.customer-account-visual h1,
.customer-account-panel h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.customer-account-visual h1 {
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
}

.customer-account-visual > div > p:not(.eyebrow) {
  max-width: 510px;
  margin: 20px 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.7;
}

.customer-account-visual ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer-account-visual li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.customer-account-visual li svg {
  width: 19px;
  color: var(--gold-400);
}

.customer-account-panel {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: clamp(40px, 5vw, 82px);
}

#customerAuthShell,
.customer-dashboard {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
}

.customer-account-panel h1 {
  color: var(--navy-950);
  font-size: clamp(34px, 3vw, 47px);
  line-height: 1.08;
}

.customer-account-panel__intro {
  margin: 13px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.customer-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 26px;
  border-bottom: 1px solid #dce2e7;
}

.customer-auth-tabs a {
  position: relative;
  padding: 13px 8px;
  color: #6b7883;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.customer-auth-tabs a::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--gold-500);
  content: "";
  transition: right 160ms ease, left 160ms ease;
}

.customer-auth-tabs a.is-active {
  color: var(--navy-950);
}

.customer-auth-tabs a.is-active::after {
  right: 8px;
  left: 8px;
}

.customer-auth-message {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-left: 3px solid #b42318;
  border-radius: 4px;
  background: #fff3f2;
  color: #8e1c14;
  font-size: 13px;
  line-height: 1.45;
}

.customer-auth-message.is-success {
  border-left-color: #18714b;
  background: #eef9f3;
  color: #145d3e;
}

.customer-auth-form {
  display: grid;
  gap: 17px;
}

.customer-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.customer-auth-form > label,
.customer-form-grid label {
  display: grid;
  gap: 7px;
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 750;
}

.customer-auth-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #cbd4dc;
  border-radius: 5px;
  outline: none;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.customer-auth-form input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 149, 69, 0.16);
}

.customer-auth-form .customer-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.customer-check input {
  flex: 0 0 18px;
  width: 18px;
  min-height: 18px;
  accent-color: var(--navy-900);
}

.customer-auth-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
  font-size: 12px;
}

.customer-auth-submit svg {
  width: 18px;
}

.customer-auth-submit.is-loading {
  cursor: wait;
  opacity: 0.72;
}

.customer-dashboard {
  align-self: stretch;
}

.customer-dashboard__heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e5e9;
}

.customer-dashboard__heading h1 {
  font-size: 35px;
}

.customer-dashboard__heading p:last-child {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.customer-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(201, 149, 69, 0.45);
  border-radius: 50%;
  background: #fff8eb;
  color: #9a6821;
  font-size: 15px;
  font-weight: 850;
}

.customer-dashboard__heading .button {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 10px;
}

.customer-dashboard__heading .button svg {
  width: 16px;
}

.customer-account-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0 34px;
  border-block: 1px solid #e0e5e9;
}

.customer-account-summary > div {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.customer-account-summary > div + div {
  border-left: 1px solid #e0e5e9;
}

.customer-account-summary span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.customer-account-summary strong {
  color: var(--navy-950);
  font-size: 17px;
}

.customer-orders > div:first-child {
  margin-bottom: 17px;
}

.customer-orders h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

.customer-order-list {
  border-top: 1px solid #dce2e7;
}

.customer-order-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(120px, 0.8fr) minmax(115px, auto) auto;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border-bottom: 1px solid #e3e7ea;
  font-size: 12px;
}

.customer-order-row strong {
  color: var(--navy-950);
  font-size: 13px;
}

.customer-order-row span {
  color: var(--muted);
}

.customer-order-row__status {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: #edf6f1;
  color: #176043 !important;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.customer-orders-empty {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 28px 0;
  color: var(--muted);
}

.customer-orders-empty svg {
  width: 28px;
  color: var(--gold-500);
}

.customer-orders-empty strong {
  color: var(--navy-950);
  font-size: 16px;
}

.customer-orders-empty span {
  font-size: 13px;
}

.customer-orders-empty .button {
  margin-top: 7px;
}

.scrim {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(2, 13, 28, 0.62);
}

.cart-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  display: flex;
  width: min(440px, 100%);
  height: 100dvh;
  flex-direction: column;
  transform: translateX(102%);
  background: white;
  transition: transform 220ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.drawer-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 26px;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item__image {
  width: 78px;
  height: 68px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ivory);
}

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

.cart-item__copy {
  display: grid;
  align-content: start;
  gap: 5px;
}

.cart-item__copy strong {
  font-family: Georgia, "Times New Roman", serif;
}

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

.quantity-control {
  display: inline-grid;
  width: fit-content;
  grid-template-columns: 28px 32px 28px;
  border: 1px solid var(--line);
}

.quantity-control button {
  padding: 0;
  border: 0;
  background: var(--mist);
  cursor: pointer;
}

.quantity-control span {
  text-align: center;
}

.cart-item__remove {
  align-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.cart-empty {
  display: grid;
  flex: 1;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 40px;
  color: var(--muted);
  text-align: center;
}

.cart-empty svg {
  width: 42px;
  height: 42px;
  color: var(--gold-500);
}

.cart-empty strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.cart-empty span {
  font-size: 12px;
}

.cart-summary {
  display: grid;
  gap: 13px;
  padding: 22px 26px 28px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
}

.cart-summary small {
  color: var(--muted);
  font-size: 10px;
}

.quote-modal {
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  width: min(650px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  transform: translate(-50%, -50%);
  padding: 38px;
  border-top: 4px solid var(--gold-500);
  border-radius: 6px;
  background: white;
  box-shadow: 0 30px 70px rgba(2, 13, 28, 0.34);
}

.quote-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.quote-modal h2 {
  max-width: 520px;
  font-size: 34px;
  line-height: 1.1;
}

.quote-modal > p:not(.eyebrow) {
  margin: 12px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.quote-modal form,
.quote-modal label {
  display: grid;
  gap: 7px;
}

.quote-modal form {
  gap: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-modal label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.quote-modal input,
.quote-modal textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cdd2d5;
  border-radius: 3px;
  background: white;
  resize: vertical;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100% - 32px));
  padding: 13px 17px;
  border-left: 3px solid var(--gold-500);
  border-radius: 3px;
  background: var(--navy-950);
  color: white;
  box-shadow: var(--shadow);
  font-size: 12px;
}

@media (max-width: 1260px) {
  .site-header__inner {
    grid-template-columns: minmax(260px, 1fr) auto minmax(210px, 1fr);
  }

  .brand__copy strong {
    font-size: 16px;
  }

  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .header-quote-button {
    min-width: 145px;
    padding-inline: 14px;
  }

  .showcase-half {
    grid-template-columns: 195px minmax(0, 1fr);
  }

  .final-cta__inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .cta-promise {
    display: none;
  }

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

@media (max-width: 1060px) {
  :root {
    --edge: 20px;
    --page: calc(100% - 40px);
  }

  .site-header {
    height: 66px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-quote-button {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .mobile-nav {
    position: fixed;
    z-index: 49;
    top: 66px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy-950);
    color: white;
    box-shadow: var(--shadow);
  }

  .mobile-nav a {
    padding: 13px 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 13px;
  }

  .mobile-nav .button {
    margin-top: 14px;
  }

  .hero {
    height: 430px;
  }

  .hero__image {
    background-position: 55% center;
  }

  .hero__shade {
    width: 100%;
    background: linear-gradient(
      90deg,
      rgba(4, 18, 38, 0.97) 0%,
      rgba(4, 18, 38, 0.91) 24%,
      rgba(4, 18, 38, 0.62) 52%,
      rgba(4, 18, 38, 0.2) 78%,
      rgba(4, 18, 38, 0.06) 100%
    );
  }

  .hero__content {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-benefits {
    right: 20px;
    left: 20px;
    justify-content: space-between;
  }

  .hero-benefits > div {
    min-width: 0;
    padding-right: 18px;
  }

  .hero-benefits > div + div {
    padding-left: 18px;
  }

  .category-band__grid {
    grid-template-columns: 155px minmax(0, 1fr);
  }

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

  .image-card:nth-child(n + 4) {
    display: none;
  }

  .showcase-band {
    grid-template-columns: 1fr;
  }

  .showcase-half {
    grid-template-columns: 200px minmax(0, 1fr);
    padding: 18px 20px;
  }

  .showcase-half--balloons {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .reviews-grid {
    grid-template-columns: 155px repeat(2, 1fr);
  }

  .reviews-grid blockquote:nth-of-type(3),
  .review-score {
    display: none;
  }

  .final-cta {
    width: calc(100% - 40px);
  }

  .final-cta__inner {
    grid-template-columns: auto 1fr auto;
  }

  .final-cta .button--outline-light {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
  }

  .catalog-layout {
    grid-template-columns: 210px minmax(0, 1fr);
  }

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

  .customer-account-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .customer-account-visual {
    min-height: 330px;
    padding: 42px;
  }

  .customer-account-panel {
    padding: 50px 42px 58px;
  }
}

@media (max-width: 720px) {
  :root {
    --edge: 14px;
    --page: calc(100% - 28px);
  }

  .brand__mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand__copy strong {
    font-size: 14px;
  }

  .brand__copy small {
    max-width: 180px;
    overflow: hidden;
    font-size: 7px;
    text-overflow: ellipsis;
  }

  .header-actions {
    gap: 0;
  }

  .header-actions > a.icon-button {
    display: none;
  }

  .hero {
    height: 560px;
  }

  .hero__image {
    background-position: 69% center;
  }

  .hero__shade {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(4, 20, 42, 0.66) 0%,
      rgba(4, 20, 42, 0.6) 52%,
      rgba(4, 20, 42, 0.82) 100%
    );
  }

  .hero__content {
    align-items: flex-start;
    padding-top: 62px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 410px;
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.02;
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 14px;
  }

  .hero__lead br {
    display: none;
  }

  .hero__actions {
    display: grid;
    max-width: 320px;
  }

  .hero-benefits {
    bottom: 12px;
    display: grid;
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-benefits > div,
  .hero-benefits > div + div {
    min-height: 34px;
    padding: 0;
    border: 0;
  }

  .category-band {
    padding: 28px 0;
  }

  .category-band__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-intro h2 {
    font-size: 25px;
  }

  .section-intro h2 br {
    display: none;
  }

  .section-intro p {
    max-width: 510px;
    font-size: 13.5px;
  }

  .furniture-cards {
    grid-template-columns: 1fr 1fr;
  }

  .image-card:nth-child(4) {
    display: block;
  }

  .image-card:nth-child(5) {
    display: none;
  }

  .furniture-image {
    height: auto;
  }

  .showcase-half {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 14px;
  }

  .inspiration-image {
    height: auto;
  }

  .balloon-image {
    height: auto;
  }

  .balloon-grid strong {
    min-height: 42px;
    padding: 9px 8px;
    font-size: 11px;
  }

  .reviews-band {
    padding: 26px 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-intro,
  .reviews-grid blockquote {
    min-height: auto;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reviews-grid blockquote:nth-of-type(3) {
    display: block;
  }

  .reviews-grid blockquote p {
    font-size: 14px;
  }

  .reviews-grid blockquote cite {
    font-size: 10.5px;
  }

  .final-cta {
    width: 100%;
    margin-bottom: 0;
    padding: 28px 0;
  }

  .final-cta__inner {
    min-height: 0;
    grid-template-columns: auto 1fr;
    gap: 16px;
  }

  .final-cta__inner > .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .about-band {
    padding: 50px 0;
  }

  .about-band h2 {
    font-size: 32px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    display: grid;
    gap: 8px;
  }

  .catalog-hero {
    min-height: 175px;
    padding: 38px 0;
  }

  .catalog-hero h1 {
    font-size: 38px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .catalog-filters {
    display: none;
  }

  .catalog-toolbar {
    align-items: flex-end;
  }

  .catalog-toolbar label {
    display: grid;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 24px 55px;
  }

  .product-detail h1 {
    font-size: 38px;
  }

  .quote-modal {
    padding: 32px 20px 22px;
  }

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

  .customer-account-view {
    padding: 20px 0 42px;
  }

  .customer-account-layout {
    width: calc(100% - 28px);
    border-radius: 7px;
  }

  .customer-account-visual {
    min-height: 255px;
    padding: 30px 24px;
  }

  .customer-account-visual h1 {
    max-width: 420px;
    font-size: 39px;
  }

  .customer-account-visual > div > p:not(.eyebrow) {
    margin: 14px 0 18px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .customer-account-visual ul {
    gap: 8px;
  }

  .customer-account-visual li {
    font-size: 12px;
  }

  .customer-account-panel {
    padding: 34px 20px 40px;
  }

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

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

  .customer-dashboard__heading {
    grid-template-columns: auto 1fr;
  }

  .customer-dashboard__heading .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .customer-account-summary {
    grid-template-columns: 1fr;
  }

  .customer-account-summary > div {
    padding: 13px 4px;
  }

  .customer-account-summary > div + div {
    border-top: 1px solid #e0e5e9;
    border-left: 0;
  }

  .customer-order-row {
    grid-template-columns: 1fr auto;
    gap: 7px 12px;
    padding: 13px 0;
  }

  .customer-order-row__status {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 460px) {
  .brand__copy small {
    display: none;
  }

  .brand__copy strong {
    max-width: 160px;
    font-size: 13px;
    white-space: normal;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-benefits span {
    font-size: 9px;
  }

  .furniture-cards,
  .inspiration-grid {
    grid-template-columns: 1fr;
  }

  .image-card:nth-child(4) {
    display: none;
  }

  .furniture-image,
  .inspiration-image {
    height: auto;
  }

  .balloon-grid {
    grid-template-columns: 1fr 1fr;
  }

  .balloon-image {
    height: auto;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    display: grid;
    gap: 12px;
  }

  .catalog-toolbar label {
    justify-self: stretch;
  }

  .catalog-toolbar select {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Productdetail: compacte galerij, koopkolom en beheerde productinformatie. */
.product-view {
  background: #f6f7f6;
}

.product-detail {
  display: block;
  width: min(var(--page), 1280px);
  padding-block: 34px 80px;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: #6b747d;
  font-size: 12px;
}

.product-breadcrumbs a {
  color: var(--navy);
  font-weight: 750;
}

.product-detail__primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.76fr);
  gap: 28px;
  align-items: start;
}

.product-gallery,
.product-detail__copy,
.product-info-card {
  min-width: 0;
}

.product-gallery__main {
  display: grid;
  height: 420px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dfe2e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(14, 33, 49, 0.08);
}

.product-gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
}

.product-gallery__main.is-fallback {
  background-image: url("/assets/storefront/furniture-strip.webp");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 500% auto;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding: 2px 2px 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.product-gallery__thumbs button {
  flex: 0 0 84px;
  width: 84px;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d5dade;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.product-gallery__thumbs button.is-active {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 149, 69, 0.15);
}

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

.product-detail__copy {
  position: sticky;
  top: 18px;
  align-self: start;
  padding: 30px;
  border: 1px solid #dfe2e3;
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(14, 33, 49, 0.1);
}

.product-detail h1 {
  max-width: 620px;
  font-size: 42px;
  line-height: 1.08;
}

.product-detail__intro {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-detail__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.product-option {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.product-option select,
.delivery-estimator select,
.delivery-estimator input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #cdd3d7;
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
  font: inherit;
}

.product-detail__price {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin: 8px 0 10px;
  padding-top: 18px;
  border-top: 1px solid #e2e5e7;
}

.product-detail__price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.product-detail__price strong {
  color: var(--navy);
  font-size: 28px;
}

.product-detail__availability {
  margin-bottom: 20px;
}

.product-detail__actions {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
}

.product-detail__actions label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.product-detail__actions input {
  width: 100%;
  min-height: 46px;
  border-radius: 5px;
}

.product-detail__actions .button {
  align-self: end;
  min-height: 46px;
}

.product-detail__pickup-note {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #d7e7df;
  border-radius: 6px;
  background: #f1f8f4;
  color: #28523d;
  font-size: 12px;
  line-height: 1.55;
}

.product-detail__pickup-note svg {
  width: 20px;
  height: 20px;
}

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

.product-info-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 26px;
  border: 1px solid #dfe2e3;
  border-radius: 8px;
  background: #fff;
}

.product-info-card--description,
.product-info-card--delivery {
  grid-column: 1 / -1;
}

.product-info-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(201, 149, 69, 0.45);
  border-radius: 7px;
  background: #fff8eb;
  color: #9a6723;
}

.product-info-card__icon svg {
  width: 20px;
  height: 20px;
}

.product-info-card h2 {
  margin: 2px 0 11px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.product-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-info-card .eyebrow {
  color: #9a6723;
  font-size: 9px;
}

.product-info-card .product-detail__features {
  margin: 20px 0 0;
  background: #f8faf9;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 15px;
}

.payment-methods span {
  padding: 7px 10px;
  border: 1px solid #d6dce0;
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 850;
}

.delivery-estimator {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(160px, 0.8fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 20px;
}

.delivery-estimator label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.delivery-estimator .button {
  min-height: 44px;
}

.delivery-estimator__result {
  display: grid;
  grid-column: 1 / -1;
  gap: 4px;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid #dce2e5;
  border-radius: 6px;
  background: #f7f9fa;
  color: #52606a;
  font-size: 12px;
  line-height: 1.5;
}

.delivery-estimator__result.is-success {
  border-color: #b9d9c7;
  background: #edf7f1;
  color: #28523d;
}

.delivery-estimator__result.is-error {
  border-color: #e6c4bd;
  background: #fff3f0;
  color: #9b3627;
}

.deposit-warning {
  display: grid;
  grid-template-columns: 20px auto minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 5px;
  background: #fff8eb;
  color: #68502b;
  font-size: 12px;
  line-height: 1.55;
}

.deposit-warning svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1020px) {
  .product-detail__primary {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 22px;
  }

  .product-gallery__main {
    height: 380px;
  }

  .product-detail__copy {
    padding: 24px;
  }

  .product-detail h1 {
    font-size: 36px;
  }
}

@media (max-width: 820px) {
  .product-detail {
    display: block;
    padding-block: 24px 60px;
  }

  .product-detail__primary,
  .product-detail__information {
    grid-template-columns: 1fr;
  }

  .product-detail__copy {
    position: static;
  }

  .product-info-card--description,
  .product-info-card--delivery {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .product-breadcrumbs {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .product-gallery__main {
    height: 240px;
  }

  .product-gallery__main img {
    padding: 10px;
  }

  .product-gallery__thumbs button {
    flex-basis: 70px;
    width: 70px;
  }

  .product-detail__copy,
  .product-info-card {
    padding: 20px;
  }

  .product-detail h1 {
    font-size: 31px;
  }

  .product-detail__options,
  .product-detail__actions,
  .delivery-estimator {
    grid-template-columns: 1fr;
  }

  .product-detail__actions label {
    width: 92px;
  }

  .deposit-warning {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .deposit-warning span {
    grid-column: 2;
  }
}

/* Mijn Xcellent customer portal */
.customer-account-view .page-shell {
  width: min(1540px, calc(100% - 40px));
}

.customer-account-layout.is-dashboard {
  display: block;
  min-height: 0;
  overflow: visible;
  background: #f8fafb;
}

.customer-account-layout.is-dashboard .customer-account-visual {
  display: none;
}

.customer-account-layout.is-dashboard .customer-account-panel {
  display: block;
  padding: clamp(24px, 3.2vw, 48px);
}

.customer-account-layout.is-dashboard .customer-dashboard {
  max-width: none;
}

.customer-account-layout.is-dashboard .customer-dashboard__heading {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  padding-bottom: 22px;
}

.customer-tier-badge {
  min-width: 84px;
  padding: 8px 12px;
  border: 1px solid #b9c1c8;
  border-radius: 999px;
  background: #eef1f3;
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.customer-tier-badge[data-tier="silver"] {
  border-color: #aeb8c2;
  background: #edf2f5;
  color: #42515e;
}

.customer-tier-badge[data-tier="gold"] {
  border-color: #d8b164;
  background: #fff5de;
  color: #805719;
}

.customer-tier-badge[data-tier="platinum"] {
  border-color: #91b5bf;
  background: #e8f5f6;
  color: #164d59;
}

.customer-portal-tabs {
  display: flex;
  gap: 6px;
  margin: 22px 0;
  padding: 6px;
  overflow-x: auto;
  border: 1px solid #dce2e6;
  border-radius: 8px;
  background: white;
  scrollbar-width: thin;
}

.customer-portal-tabs button {
  display: inline-flex;
  min-width: max-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #56636d;
  font: inherit;
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
}

.customer-portal-tabs button svg {
  width: 17px;
  height: 17px;
}

.customer-portal-tabs button.is-active {
  background: var(--navy-900);
  color: white;
}

.customer-portal-message {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-left: 4px solid #23815b;
  border-radius: 5px;
  background: #edf8f2;
  color: #195b42;
  font-size: 13px;
  font-weight: 700;
}

.customer-portal-message.is-error {
  border-left-color: #bd382d;
  background: #fff1ef;
  color: #8e251e;
}

.customer-portal-panel {
  min-width: 0;
}

.customer-membership-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  min-height: 190px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid #183858;
  border-radius: 8px;
  background: var(--navy-950);
  color: white;
  box-shadow: inset 5px 0 0 var(--gold-500);
}

.customer-membership-hero .eyebrow {
  color: var(--gold-400);
}

.customer-membership-hero h2 {
  margin: 5px 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
}

.customer-membership-hero p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.customer-points-orbit {
  display: grid;
  min-width: 156px;
  min-height: 112px;
  place-content: center;
  border: 1px solid rgba(220, 176, 95, 0.58);
  border-radius: 8px;
  background: #102d4c;
  text-align: center;
}

.customer-points-orbit strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
}

.customer-points-orbit span {
  color: var(--gold-300);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.customer-account-layout.is-dashboard .customer-account-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0;
  border: 1px solid #dce2e6;
  border-radius: 8px;
  background: white;
}

.customer-account-layout.is-dashboard .customer-account-summary > div {
  min-width: 0;
  padding: 19px 22px;
}

.customer-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 18px 22px;
  border: 1px solid #dce2e6;
  border-radius: 8px;
  background: white;
}

.customer-progress > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy-950);
  font-size: 13px;
}

.customer-progress > div span {
  color: #8b641f;
  font-weight: 750;
}

.customer-progress__track {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6ebee;
}

.customer-progress__track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-500);
  transition: width 300ms ease;
}

.customer-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.customer-next-order,
.customer-feestprofiel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid #dce2e6;
  border-radius: 8px;
  background: white;
}

.customer-next-order {
  border-top: 3px solid var(--gold-500);
}

.customer-feestprofiel {
  border-top: 3px solid #1d7889;
}

.customer-section-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  background: #edf3f6;
  color: var(--navy-900);
}

.customer-section-icon svg {
  width: 20px;
}

.customer-overview-grid h3 {
  margin: 2px 0 7px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.customer-overview-grid article p:not(.eyebrow) {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.customer-text-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #94641d;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.customer-text-action svg {
  width: 15px;
}

.customer-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.customer-section-heading h2 {
  margin: 2px 0 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
}

.customer-section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.customer-activity {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid #dce2e6;
  border-radius: 8px;
  background: white;
}

.customer-activity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.customer-activity-list > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 62px;
  border-top: 1px solid #e5e9ec;
}

.customer-activity-list__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 6px;
  background: #eef3f6;
  color: var(--navy-900);
}

.customer-activity-list__icon svg {
  width: 16px;
}

.customer-activity-list > div > span:last-child {
  display: grid;
  gap: 3px;
}

.customer-activity-list strong {
  color: var(--navy-950);
  font-size: 12px;
}

.customer-activity-list small {
  color: var(--muted);
  font-size: 10px;
}

.customer-order-list {
  display: grid;
  gap: 14px;
  border: 0;
}

.customer-order-card {
  padding: 20px;
  border: 1px solid #dce2e6;
  border-left: 4px solid var(--navy-800);
  border-radius: 8px;
  background: white;
}

.customer-order-card__heading,
.customer-order-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.customer-order-card__heading span:first-child {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.customer-order-card__heading h3 {
  margin: 3px 0 0;
  color: var(--navy-950);
  font-size: 18px;
}

.customer-order-card__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border-radius: 6px;
  background: #f4f7f8;
}

.customer-order-card__meta span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: #52616d;
  font-size: 11px;
}

.customer-order-card__meta svg {
  flex: 0 0 16px;
  width: 16px;
}

.customer-order-card__meta > strong {
  color: var(--navy-950);
  font-size: 15px;
  text-align: right;
}

.customer-order-products {
  margin-top: 12px;
  border-top: 1px solid #e3e8eb;
}

.customer-order-products summary {
  padding: 12px 0 5px;
  color: #8b611e;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.customer-order-products > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
}

.customer-order-products > div span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 4px 9px;
  border: 1px solid #dfe5e8;
  border-radius: 5px;
  color: #485762;
  font-size: 11px;
}

.customer-order-products img {
  width: 26px;
  height: 26px;
  object-fit: cover;
}

.customer-order-products svg {
  width: 16px;
}

.customer-order-card__actions {
  min-height: 46px;
  margin-top: 10px;
}

.customer-order-card__actions > span {
  color: #8b611e;
  font-size: 11px;
  font-weight: 750;
}

.customer-order-card__actions .button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 10px;
}

.customer-favorite-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.customer-favorite-card {
  overflow: hidden;
  border: 1px solid #dce2e6;
  border-radius: 8px;
  background: white;
}

.customer-favorite-card__image {
  display: block;
  height: 190px;
  overflow: hidden;
  background: #edf1f3;
}

.customer-favorite-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-favorite-card > div {
  display: grid;
  gap: 8px;
  padding: 17px;
}

.customer-favorite-card small {
  color: #97671e;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.customer-favorite-card h3 {
  min-height: 42px;
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.customer-favorite-card > div > div {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 5px;
}

.customer-favorite-card .button {
  flex: 1;
  min-height: 38px;
  padding: 0 10px;
  font-size: 9px;
}

.customer-favorite-card .icon-button {
  width: 38px;
  height: 38px;
}

.customer-profile-form {
  display: grid;
  gap: 16px;
}

.customer-profile-form fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 22px;
  border: 1px solid #dce2e6;
  border-radius: 8px;
  background: white;
}

.customer-profile-form legend {
  padding: 0 8px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.customer-profile-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 780;
}

.customer-profile-form input,
.customer-profile-form select,
.customer-profile-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid #cbd5dc;
  border-radius: 5px;
  outline: 0;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.customer-profile-form textarea {
  min-height: 100px;
  resize: vertical;
}

.customer-profile-form input:focus,
.customer-profile-form select:focus,
.customer-profile-form textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 149, 69, 0.15);
}

.customer-profile-form input[readonly] {
  background: #eef2f4;
  color: #68757f;
}

.customer-profile-form .customer-check {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 10px;
  color: #53616c;
  font-weight: 600;
}

.customer-form-grid--address {
  grid-template-columns: 0.75fr 0.65fr 1fr;
}

.customer-profile-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
}

.customer-profile-actions p,
.customer-save-state {
  color: var(--muted);
  font-size: 11px;
}

.customer-benefit-balance {
  min-width: max-content;
  padding: 10px 13px;
  border: 1px solid #d8b164;
  border-radius: 6px;
  background: #fff6df;
  color: #805719;
}

.customer-retention-note {
  margin: 0 0 18px;
  padding: 13px 15px;
  border-left: 4px solid #1f7889;
  border-radius: 5px;
  background: #edf6f7;
  color: #245764;
  font-size: 12px;
}

.customer-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.customer-tier-card {
  min-height: 230px;
  padding: 20px;
  border: 1px solid #dce2e6;
  border-top: 4px solid #a77941;
  border-radius: 8px;
  background: white;
}

.customer-tier-card[data-tier="silver"] {
  border-top-color: #98a7b2;
}

.customer-tier-card[data-tier="gold"] {
  border-top-color: #c99545;
}

.customer-tier-card[data-tier="platinum"] {
  border-top-color: #2d8291;
}

.customer-tier-card.is-current {
  box-shadow: inset 0 0 0 2px var(--navy-900);
}

.customer-tier-card > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 6px;
  background: #eef3f5;
  color: var(--navy-900);
}

.customer-tier-card > span svg {
  width: 18px;
}

.customer-tier-card p {
  margin: 15px 0 3px;
  color: #8b611e;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.customer-tier-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.customer-tier-card ul {
  display: grid;
  gap: 8px;
  margin: 15px 0 0;
  padding: 0 0 0 16px;
  color: #53616c;
  font-size: 11px;
  line-height: 1.45;
}

.customer-club-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 6px;
  background: var(--navy-950);
  color: white;
}

.customer-club-note svg {
  width: 20px;
  color: var(--gold-400);
}

.customer-club-note p {
  display: grid;
  gap: 4px;
  margin: 0;
  font-size: 12px;
}

.customer-club-note span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.product-wishlist-button {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  border: 1px solid #ccd5db;
  border-radius: 5px;
  background: white;
  color: var(--navy-900);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.product-wishlist-button.is-favorite {
  border-color: #d39ba2;
  background: #fff2f3;
  color: #9d2c39;
}

.product-wishlist-button svg {
  width: 17px;
}

.checkout-loyalty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin: 15px 0 0;
  padding: 13px;
  border: 1px solid #d6b36f;
  border-radius: 6px;
  background: #fff8e8;
  cursor: pointer;
}

.checkout-loyalty input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--navy-900);
}

.checkout-loyalty span {
  display: grid;
  gap: 4px;
}

.checkout-loyalty strong {
  color: var(--navy-950);
  font-size: 12px;
}

.checkout-loyalty small {
  color: #6e5b38;
  font-size: 10px;
  line-height: 1.45;
}

.checkout-totals__discount {
  color: #1d704e;
}

.checkout-totals__discount dd {
  color: #1d704e;
}

@media (max-width: 1120px) {
  .customer-favorite-grid,
  .customer-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-order-card__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-order-card__meta > strong {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .customer-account-view {
    padding: 18px 0 42px;
  }

  .customer-account-view .page-shell {
    width: min(100% - 22px, 1540px);
  }

  .customer-account-layout.is-dashboard .customer-account-panel {
    padding: 18px;
  }

  .customer-account-layout.is-dashboard .customer-dashboard__heading {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 11px;
  }

  .customer-dashboard__heading .customer-tier-badge {
    grid-column: 2;
    justify-self: start;
  }

  .customer-dashboard__heading .button {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .customer-dashboard__heading h1 {
    font-size: 27px;
  }

  .customer-portal-tabs {
    margin-inline: -8px;
  }

  .customer-membership-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }

  .customer-points-orbit {
    min-height: 88px;
  }

  .customer-account-layout.is-dashboard .customer-account-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-account-summary > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #e0e5e9;
  }

  .customer-account-summary > div:nth-child(4) {
    border-top: 1px solid #e0e5e9;
  }

  .customer-overview-grid,
  .customer-activity-list,
  .customer-form-grid,
  .customer-form-grid--address {
    grid-template-columns: 1fr;
  }

  .customer-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .customer-order-card__meta {
    grid-template-columns: 1fr;
  }

  .customer-order-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .customer-order-card__actions .button {
    width: 100%;
  }

  .customer-profile-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .customer-profile-actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .customer-account-layout.is-dashboard .customer-account-panel {
    padding: 14px;
  }

  .customer-dashboard__heading {
    padding-bottom: 16px;
  }

  .customer-avatar {
    width: 46px;
    height: 46px;
  }

  .customer-dashboard__heading .button {
    width: 42px;
    min-width: 42px;
    padding: 0;
    font-size: 0;
  }

  .customer-dashboard__heading .button svg {
    margin: 0;
  }

  .customer-portal-tabs button {
    min-height: 40px;
    padding: 0 12px;
  }

  .customer-membership-hero {
    padding: 24px 20px;
  }

  .customer-membership-hero h2 {
    font-size: 36px;
  }

  .customer-account-layout.is-dashboard .customer-account-summary > div {
    padding: 15px;
  }

  .customer-progress > div {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .customer-next-order,
  .customer-feestprofiel,
  .customer-activity,
  .customer-order-card,
  .customer-profile-form fieldset {
    padding: 17px;
  }

  .customer-next-order,
  .customer-feestprofiel {
    grid-template-columns: 1fr;
  }

  .customer-favorite-grid,
  .customer-tier-grid {
    grid-template-columns: 1fr;
  }

  .customer-favorite-card__image {
    height: 220px;
  }

  .customer-order-card__heading {
    align-items: start;
    flex-direction: column;
  }

  .customer-order-row__status {
    align-self: start;
  }
}

/* Paid-order account activation and premium customer portal */
.customer-account-eligibility {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  margin: 18px 0 22px;
  padding: 14px;
  border: 1px solid #d9e1e5;
  border-left: 4px solid var(--gold-500);
  border-radius: 6px;
  background: #f7f9fa;
}

.customer-account-eligibility > svg {
  width: 21px;
  color: #9a691d;
}

.customer-account-eligibility p,
.customer-account-eligibility strong,
.customer-account-eligibility span {
  display: block;
  margin: 0;
}

.customer-account-eligibility strong {
  color: var(--navy-950);
  font-size: 12px;
}

.customer-account-eligibility span {
  margin-top: 4px;
  color: #60717f;
  font-size: 11px;
  line-height: 1.55;
}

.customer-tier-badge {
  position: relative;
  overflow: hidden;
}

.customer-tier-badge[data-tier="gold"] {
  border-color: #9f6a17;
  background:
    linear-gradient(110deg, #8b590f 0%, #f8e5a6 28%, #c89532 50%, #fff1b8 72%, #956013 100%);
  color: #382307;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .75),
    inset 0 -1px 0 rgba(93, 54, 4, .25),
    0 7px 18px rgba(152, 101, 23, .24);
  text-shadow: 0 1px rgba(255, 255, 255, .55);
}

.customer-tier-badge[data-tier="gold"]::after {
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -45%;
  width: 25%;
  transform: rotate(18deg);
  background: rgba(255, 255, 255, .72);
  content: "";
  animation: customer-gold-shine 4.8s ease-in-out infinite;
}

@keyframes customer-gold-shine {
  0%, 58% { left: -45%; opacity: 0; }
  64% { opacity: .75; }
  82%, 100% { left: 125%; opacity: 0; }
}

.customer-membership-hero[data-tier="gold"] {
  border-color: #8f621d;
  background:
    linear-gradient(115deg, rgba(230, 190, 103, .20), transparent 37%),
    linear-gradient(145deg, #071d33, #0d3452 68%, #6f4b17 140%);
  box-shadow:
    inset 5px 0 0 #d4a451,
    0 20px 45px rgba(7, 29, 51, .16);
}

.customer-order-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.customer-order-card {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  padding: 18px;
  border-left-width: 1px;
  border-top: 4px solid var(--navy-800);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.customer-order-card:hover,
.customer-order-card:focus-visible {
  transform: translateY(-2px);
  border-color: #c7a15d;
  outline: 0;
  box-shadow: 0 14px 32px rgba(8, 36, 60, .10);
}

.customer-order-card__meta {
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 13px;
  padding: 12px;
}

.customer-order-card__meta > strong {
  padding-top: 7px;
  border-top: 1px solid #dde4e7;
  text-align: left;
}

.customer-order-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
  margin-top: auto;
  padding-top: 12px;
}

.customer-order-card__actions > span {
  grid-column: 1 / -1;
  min-height: 16px;
}

.customer-order-card__actions .button {
  width: auto;
}

.customer-order-card__actions .button--navy {
  min-width: 0;
}

.customer-benefit-explainer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.customer-benefit-explainer article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  min-height: 142px;
  padding: 20px;
  border: 1px solid #dce2e6;
  border-top: 3px solid #c99545;
  border-radius: 8px;
  background: white;
}

.customer-benefit-explainer article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--navy-950);
  color: #e7c27a;
  font-size: 10px;
  font-weight: 850;
}

.customer-benefit-explainer strong {
  color: var(--navy-950);
  font-size: 13px;
}

.customer-benefit-explainer p {
  margin: 7px 0 0;
  color: #60707d;
  font-size: 11px;
  line-height: 1.55;
}

.customer-order-dialog {
  width: min(920px, calc(100% - 32px));
  max-height: min(840px, calc(100vh - 40px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid #cfd9de;
  border-radius: 8px;
  background: #f5f8f9;
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(4, 24, 43, .30);
}

.customer-order-dialog::backdrop {
  background: rgba(4, 24, 43, .70);
  backdrop-filter: blur(3px);
}

.customer-order-dialog__heading {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: var(--navy-950);
  color: white;
}

.customer-order-dialog__heading .eyebrow {
  color: var(--gold-400);
}

.customer-order-dialog__heading h2 {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

#customerOrderDialogBody {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.customer-order-dialog__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.customer-order-dialog__summary article {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 17px;
  border: 1px solid #dce3e7;
  border-radius: 7px;
  background: white;
}

.customer-order-dialog__summary span {
  color: #776a56;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.customer-order-dialog__summary strong {
  overflow-wrap: anywhere;
  color: var(--navy-950);
  font-size: 15px;
}

.customer-order-dialog__summary small {
  color: #65737e;
  font-size: 10px;
}

.customer-order-dialog__products {
  padding: 22px;
  border: 1px solid #dce3e7;
  border-radius: 8px;
  background: white;
}

.customer-order-dialog__products h3 {
  margin: 3px 0 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.customer-order-dialog__products .customer-section-heading > span {
  color: #6d7a84;
  font-size: 11px;
  font-weight: 750;
}

.customer-order-dialog__products ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer-order-dialog__products li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 66px;
  padding: 10px 0;
  border-top: 1px solid #e2e7ea;
}

.customer-order-dialog__products li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 5px;
  background: #edf1f3;
}

.customer-order-dialog__products img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-order-dialog__products li > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.customer-order-dialog__products li strong {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.customer-order-dialog__products li small {
  color: #6a7781;
  font-size: 10px;
}

.customer-order-dialog__products li > b {
  color: #895d1c;
  font-size: 13px;
}

.customer-order-dialog__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid #d8b164;
  border-radius: 7px;
  background: #fff9eb;
}

.customer-order-dialog__actions > span {
  color: #675332;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .customer-order-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-benefit-explainer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .customer-order-list,
  .customer-order-dialog__summary {
    grid-template-columns: 1fr;
  }

  .customer-order-card {
    min-height: 0;
  }

  .customer-order-card__actions {
    grid-template-columns: 1fr;
  }

  .customer-order-card__actions .button {
    width: 100%;
  }

  .customer-order-dialog {
    width: 100%;
    max-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .customer-order-dialog__heading {
    padding: 18px;
  }

  #customerOrderDialogBody {
    padding: 14px;
  }

  .customer-order-dialog__products {
    padding: 17px;
  }

  .customer-order-dialog__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .customer-order-dialog__actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-tier-badge[data-tier="gold"]::after {
    animation: none;
  }
}
