/* Local premium buyer preview. Purely visual: no API or order-flow changes. */
:root {
  --buyer-accent: #ffbf1f;
  --buyer-accent-hover: #f5b400;
  --buyer-success: #169b62;
  --buyer-radius: 20px;
  --buyer-radius-sm: 14px;
  --buyer-shadow-sm: 0 2px 10px rgba(0, 0, 0, .045);
  --buyer-shadow: 0 14px 36px rgba(0, 0, 0, .075);
}

html,
body {
  background: #f5f5f7;
}

.buyer-app {
  --buyer-canvas: #f5f5f7;
  --buyer-surface: #ffffff;
  --buyer-surface-raised: #f2f2f7;
  --buyer-surface-soft: #fafafa;
  --buyer-text: #111111;
  --buyer-text-secondary: #6e6e73;
  --buyer-separator: #dedee3;
  --buyer-separator-strong: #c9c9cf;
  background: var(--buyer-canvas);
  color: var(--buyer-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", sans-serif;
  font-feature-settings: "kern" 1, "tnum" 1;
  letter-spacing: -0.01em;
  line-height: 1.42;
  min-height: 100dvh;
}

html.buyer-page-dark,
body.buyer-page-dark {
  background: #050505 !important;
}

.buyer-app.buyer-dark {
  --buyer-canvas: #050505;
  --buyer-surface: #121212;
  --buyer-surface-raised: #1c1c1e;
  --buyer-surface-soft: #181818;
  --buyer-text: #f5f5f7;
  --buyer-text-secondary: #a1a1a6;
  --buyer-separator: #2c2c2e;
  --buyer-separator-strong: #3a3a3c;
  background: var(--buyer-canvas) !important;
  color: var(--buyer-text) !important;
  color-scheme: dark;
}

.buyer-app *,
.buyer-app *::before,
.buyer-app *::after {
  -webkit-tap-highlight-color: transparent;
}

.buyer-app button,
.buyer-app input,
.buyer-app select,
.buyer-app textarea {
  font: inherit;
}

.buyer-app button {
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease, opacity 150ms ease;
}

.buyer-app button:active:not(:disabled) {
  transform: scale(.985);
}

.buyer-app button:focus-visible,
.buyer-app input:focus-visible,
.buyer-app select:focus-visible,
.buyer-app textarea:focus-visible {
  outline: 3px solid rgba(255, 191, 31, .35) !important;
  outline-offset: 2px;
}

.buyer-app .font-black {
  font-weight: 750 !important;
}

.buyer-app .container-custom {
  max-width: 1440px;
}

.buyer-header {
  border-color: color-mix(in srgb, var(--buyer-separator) 86%, transparent) !important;
  background: color-mix(in srgb, var(--buyer-surface) 88%, transparent) !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .035);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  padding-top: env(safe-area-inset-top);
}

.buyer-dark .buyer-header {
  background: rgba(5, 5, 5, .88) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .03);
}

.buyer-brand {
  color: var(--buyer-text) !important;
  font-size: 1.25rem !important;
  font-weight: 780 !important;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.buyer-dark .buyer-brand {
  color: var(--buyer-text) !important;
}

.buyer-brand::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--buyer-accent);
  vertical-align: .45em;
}

.buyer-toolbar select,
.buyer-toolbar button {
  min-height: 42px;
  border-color: var(--buyer-separator) !important;
}

.buyer-toolbar > button,
.buyer-toolbar > div > button {
  border: 1px solid var(--buyer-separator);
  background: var(--buyer-surface-raised) !important;
  color: var(--buyer-text) !important;
}

.buyer-toolbar > button:last-child {
  border-color: var(--buyer-accent) !important;
  background: var(--buyer-accent) !important;
  color: #111111 !important;
}

.buyer-toolbar select {
  background: var(--buyer-surface) !important;
  color: var(--buyer-text) !important;
}

.buyer-page-heading {
  margin-top: 10px;
  margin-bottom: 22px !important;
}

.buyer-page-heading h1,
.buyer-catalog > button + .buyer-store-hero h1,
.buyer-cart > h1,
.buyer-checkout > h1 {
  font-weight: 760 !important;
  letter-spacing: -.035em;
}

.buyer-store-grid {
  gap: 20px !important;
}

.buyer-store-card {
  min-height: 258px !important;
  border: 1px solid var(--buyer-separator) !important;
  border-radius: var(--buyer-radius) !important;
  background: #121212 !important;
  box-shadow: var(--buyer-shadow);
  isolation: isolate;
}

.buyer-store-card > img {
  transition: transform 450ms cubic-bezier(.2, .8, .2, 1);
}

.buyer-store-card:hover > img {
  transform: scale(1.025);
}

.buyer-store-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 12%, rgba(0, 0, 0, .2) 45%, rgba(0, 0, 0, .9) 100%) !important;
}

.buyer-store-card-body {
  min-height: 258px !important;
  padding: 22px !important;
}

.buyer-store-card-body h1 {
  font-size: 1.55rem !important;
  font-weight: 760 !important;
  letter-spacing: -.03em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .45);
}

.buyer-store-card-body .bg-white\/20 {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(18, 18, 18, .62) !important;
  backdrop-filter: blur(12px);
}

.buyer-store-card-body .bg-amber-400 {
  border-radius: 50% !important;
  background: var(--buyer-accent) !important;
}

.buyer-store-hero {
  min-height: 220px !important;
  border: 1px solid var(--buyer-separator) !important;
  border-radius: var(--buyer-radius) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .09);
}

.buyer-store-hero > div.absolute {
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .82)) !important;
}

.buyer-categories {
  position: sticky;
  top: 65px;
  z-index: 15;
  margin: 0 -4px 14px;
  padding: 8px 4px 10px !important;
  background: color-mix(in srgb, var(--buyer-canvas) 90%, transparent);
  backdrop-filter: blur(14px);
}

.buyer-categories button {
  min-height: 42px;
  border: 1px solid var(--buyer-separator) !important;
  border-radius: 999px !important;
  background: var(--buyer-surface) !important;
  color: var(--buyer-text-secondary) !important;
  font-weight: 650 !important;
}

.buyer-categories button.bg-slate-900 {
  border-color: var(--buyer-accent) !important;
  background: var(--buyer-accent) !important;
  color: #111111 !important;
}

.buyer-product-grid {
  gap: 14px !important;
}

.buyer-product-card {
  min-height: 0 !important;
  overflow: hidden;
  border: 1px solid var(--buyer-separator) !important;
  border-radius: var(--buyer-radius-sm) !important;
  background: var(--buyer-surface) !important;
  box-shadow: var(--buyer-shadow-sm);
}

.buyer-dark .buyer-product-card {
  border-color: #424245 !important;
  background: #1c1c1e !important;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .34);
}

.buyer-app:not(.buyer-dark) .buyer-product-card {
  border-color: #c7c7cc !important;
  background: #ffffff !important;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .09);
}

.buyer-dark .buyer-product-card > div:last-child {
  background: #1c1c1e !important;
}

.buyer-app:not(.buyer-dark) .buyer-product-card > div:last-child {
  background: #ffffff !important;
}

.buyer-product-card > img,
.buyer-product-card > .h-28 {
  width: 100%;
  height: auto !important;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--buyer-surface-raised) !important;
}

.buyer-product-card > div:last-child {
  padding: 14px !important;
}

.buyer-product-card > div:last-child > div:last-child > span:first-child {
  white-space: nowrap;
}

.buyer-product-card h2 {
  min-height: 2.5em;
  font-size: 1rem;
  font-weight: 720 !important;
  line-height: 1.25;
}

.buyer-product-card .text-emerald-700 {
  color: var(--buyer-success) !important;
}

.buyer-product-card .bg-amber-400,
.buyer-cart .bg-emerald-700,
.buyer-checkout-submit {
  background: var(--buyer-accent) !important;
  color: #111111 !important;
}

.buyer-product-card .bg-amber-400:hover,
.buyer-cart .bg-emerald-700:hover,
.buyer-checkout-submit:hover {
  background: var(--buyer-accent-hover) !important;
}

.buyer-backlink {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--buyer-text-secondary) !important;
}

.buyer-backlink:hover {
  background: var(--buyer-surface-raised);
  color: var(--buyer-text) !important;
}

.buyer-panel,
.buyer-tracking-card {
  border-color: var(--buyer-separator) !important;
  border-radius: var(--buyer-radius) !important;
  background: var(--buyer-surface) !important;
  box-shadow: var(--buyer-shadow-sm);
}

.buyer-account form > button {
  min-height: 52px;
  border-radius: var(--buyer-radius-sm) !important;
  background: var(--buyer-accent) !important;
  color: #111 !important;
}

.buyer-toolbar [role="menu"] {
  border-color: var(--buyer-separator) !important;
  border-radius: var(--buyer-radius-sm) !important;
  background: var(--buyer-surface) !important;
  color: var(--buyer-text) !important;
}

.buyer-toolbar [role="menuitem"].bg-emerald-700 {
  background: var(--buyer-accent) !important;
  color: #111 !important;
}

.buyer-account,
.buyer-tracking {
  padding-top: 28px !important;
}

.buyer-tracking {
  max-width: 900px !important;
}

.buyer-tracking article,
.buyer-tracking > div.bg-white,
.buyer-account section {
  border-color: var(--buyer-separator) !important;
  border-radius: var(--buyer-radius) !important;
  background: var(--buyer-surface) !important;
  box-shadow: var(--buyer-shadow-sm);
}

.buyer-tracking > button:last-child {
  min-height: 52px;
  border-radius: var(--buyer-radius-sm) !important;
  background: var(--buyer-accent) !important;
  color: #111 !important;
}

.buyer-cart {
  max-width: 900px !important;
  padding-top: 28px !important;
}

.buyer-cart .bg-white,
.buyer-checkout-form,
.buyer-checkout-form .bg-white {
  border-color: var(--buyer-separator) !important;
  background: var(--buyer-surface) !important;
}

.buyer-cart .bg-white {
  border-radius: var(--buyer-radius-sm) !important;
  padding: 18px !important;
}

.buyer-cart-list {
  display: grid;
  gap: 10px !important;
}

.buyer-cart-item {
  min-height: 92px;
}

.buyer-cart-item > button {
  border: 1px solid var(--buyer-separator) !important;
  background: var(--buyer-surface-raised) !important;
}

.buyer-cart-total {
  margin-top: 18px;
  border-top: 1px solid var(--buyer-separator);
}

.buyer-cart-submit {
  min-height: 54px;
  border-radius: var(--buyer-radius-sm) !important;
  background: var(--buyer-accent) !important;
  color: #111 !important;
  box-shadow: 0 10px 24px rgba(255, 191, 31, .18);
}

.buyer-checkout {
  max-width: 1180px !important;
  padding-top: 28px !important;
}

.buyer-checkout-heading {
  max-width: 720px;
}

.buyer-checkout-eyebrow {
  margin-bottom: 5px;
  color: var(--buyer-success);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.buyer-checkout-heading h1 {
  font-size: clamp(2rem, 3vw, 2.65rem) !important;
  line-height: 1.05;
}

.buyer-checkout-heading p {
  margin-top: 8px;
  color: var(--buyer-text-secondary);
  font-size: 1rem;
}

.buyer-checkout-form {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.buyer-checkout-primary,
.buyer-checkout-secondary {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--buyer-separator);
  border-radius: 24px;
  background: var(--buyer-surface);
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .065);
}

.buyer-dark .buyer-checkout-primary,
.buyer-dark .buyer-checkout-secondary {
  box-shadow: 0 18px 48px rgba(0, 0, 0, .32);
}

.buyer-checkout-primary > section:not(.buyer-checkout-contact) > div:first-child > div:first-child:has(> i),
.buyer-checkout-secondary > section > div:first-child > div:first-child:has(> i) {
  background: color-mix(in srgb, var(--buyer-accent) 20%, var(--buyer-surface)) !important;
  color: #a46a00 !important;
}

.buyer-dark .buyer-checkout-primary > section:not(.buyer-checkout-contact) > div:first-child > div:first-child:has(> i),
.buyer-dark .buyer-checkout-secondary > section > div:first-child > div:first-child:has(> i) {
  color: var(--buyer-accent) !important;
}

.buyer-checkout-contact > .grid {
  border: 1px solid var(--buyer-separator);
  background: var(--buyer-surface-raised) !important;
}

.buyer-checkout-contact .bg-slate-950 {
  background: var(--buyer-accent) !important;
  color: #111 !important;
  box-shadow: 0 5px 16px rgba(255, 191, 31, .2) !important;
}

.buyer-dark .buyer-checkout-contact .bg-slate-950 {
  background: var(--buyer-accent) !important;
  color: #111 !important;
}

.buyer-field-with-icon {
  position: relative;
}

.buyer-field-with-icon > i {
  position: absolute;
  z-index: 1;
  left: 15px;
  top: 50%;
  width: 18px;
  transform: translateY(-50%);
  color: var(--buyer-text-secondary);
  text-align: center;
  pointer-events: none;
}

.buyer-field-caption {
  position: absolute;
  z-index: 1;
  left: 46px;
  top: 7px;
  color: var(--buyer-text-secondary);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.buyer-field-with-icon > input {
  padding-left: 46px !important;
  padding-top: 19px !important;
  padding-bottom: 6px !important;
}

.buyer-compact-field > span:first-child {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.buyer-checkout-primary > section,
.buyer-checkout-secondary > section {
  border-top: 0 !important;
  padding-top: 0 !important;
}

.buyer-checkout-primary > section + section,
.buyer-checkout-secondary > section + section,
.buyer-checkout-secondary > section + div,
.buyer-checkout-secondary > div + section {
  margin-top: 20px !important;
  border-top: 1px solid var(--buyer-separator) !important;
  padding-top: 20px !important;
}

.buyer-checkout-primary > .buyer-checkout-address {
  margin-top: 22px;
  border-top: 1px solid var(--buyer-separator) !important;
  padding-top: 22px !important;
}

.buyer-checkout-secondary > .buyer-checkout-submit {
  margin-top: 20px;
}

.buyer-checkout-form input,
.buyer-checkout-form textarea,
.buyer-checkout-form select {
  min-height: 48px;
  border: 1px solid var(--buyer-separator-strong) !important;
  border-radius: var(--buyer-radius-sm) !important;
  background: var(--buyer-surface-raised) !important;
  color: var(--buyer-text) !important;
  box-shadow: none !important;
}

.buyer-checkout-form input::placeholder,
.buyer-checkout-form textarea::placeholder {
  color: var(--buyer-text-secondary) !important;
}

.buyer-checkout-form .border-2 {
  border-width: 1px !important;
}

.buyer-checkout-form .bg-slate-50,
.buyer-checkout-form .bg-slate-100 {
  background: var(--buyer-surface-raised) !important;
}

.buyer-checkout-order .overflow-hidden,
.buyer-checkout-total > div:last-of-type,
.buyer-checkout-address [data-checkout-target="map"] {
  border: 1px solid var(--buyer-separator) !important;
  background: var(--buyer-surface-raised) !important;
  box-shadow: none !important;
}

.buyer-checkout-order .bg-white,
.buyer-checkout-order .bg-slate-50 {
  background: transparent !important;
}

.buyer-checkout-total .text-2xl {
  letter-spacing: -.035em;
}

.buyer-checkout-form .rounded-2xl {
  border-radius: var(--buyer-radius) !important;
}

.buyer-checkout-comment details {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.buyer-checkout-comment summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  list-style: none;
}

.buyer-checkout-comment summary::-webkit-details-marker {
  display: none;
}

.buyer-checkout-comment summary span {
  margin-left: auto;
}

.buyer-checkout-address .h-72 {
  height: 260px !important;
  min-height: 260px !important;
  border-width: 1px !important;
}

.buyer-checkout-submit {
  min-height: 54px;
  border-radius: 16px !important;
  box-shadow: 0 12px 26px rgba(255, 191, 31, .22) !important;
}

.buyer-notice > div {
  border-radius: var(--buyer-radius-sm) !important;
}

/* Neutral light-theme utility replacements. */
.buyer-app:not(.buyer-dark) .bg-white { background-color: var(--buyer-surface) !important; }
.buyer-app:not(.buyer-dark) .bg-slate-50,
.buyer-app:not(.buyer-dark) .bg-slate-100 { background-color: var(--buyer-surface-raised) !important; }
.buyer-app:not(.buyer-dark) .border,
.buyer-app:not(.buyer-dark) .border-slate-100,
.buyer-app:not(.buyer-dark) .border-slate-200,
.buyer-app:not(.buyer-dark) .border-slate-300 { border-color: var(--buyer-separator) !important; }

/* Neutral OLED dark theme: deliberately contains no blue-tinted surfaces. */
.buyer-dark .bg-white { background-color: var(--buyer-surface) !important; }
.buyer-dark .bg-slate-950,
.buyer-dark .bg-slate-900 { background-color: #000 !important; color: #fff !important; }
.buyer-dark .bg-slate-50 { background-color: var(--buyer-surface-soft) !important; }
.buyer-dark .bg-slate-100,
.buyer-dark .bg-slate-200 { background-color: var(--buyer-surface-raised) !important; }
.buyer-dark .border,
.buyer-dark .border-slate-100,
.buyer-dark .border-slate-200,
.buyer-dark .border-slate-300 { border-color: var(--buyer-separator) !important; }
.buyer-dark .text-slate-950,
.buyer-dark .text-slate-900,
.buyer-dark .text-slate-800,
.buyer-dark .text-slate-700 { color: var(--buyer-text) !important; }
.buyer-dark .text-slate-600,
.buyer-dark .text-slate-500,
.buyer-dark .text-slate-400,
.buyer-dark .text-slate-300 { color: var(--buyer-text-secondary) !important; }
.buyer-dark input,
.buyer-dark textarea,
.buyer-dark select {
  border-color: var(--buyer-separator-strong) !important;
  background: var(--buyer-surface-raised) !important;
  color: var(--buyer-text) !important;
}
.buyer-dark input::placeholder,
.buyer-dark textarea::placeholder { color: var(--buyer-text-secondary) !important; }
.buyer-dark option { background: #121212 !important; color: var(--buyer-text) !important; }
.buyer-dark .shadow-sm,
.buyer-dark .shadow,
.buyer-dark .shadow-xl { box-shadow: 0 12px 28px rgba(0, 0, 0, .5) !important; }

@media (min-width: 900px) {
  .buyer-header > .container-custom {
    min-height: 68px;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .buyer-stores,
  .buyer-catalog {
    padding: 28px !important;
  }

  .buyer-page-heading h1 {
    font-size: 2rem !important;
  }

  .buyer-store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .buyer-store-card,
  .buyer-store-card-body {
    min-height: 292px !important;
  }

  .buyer-catalog {
    display: grid;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 24px;
    align-items: start;
  }

  .buyer-catalog > button {
    grid-column: 1 / -1;
  }

  .buyer-store-hero {
    grid-column: 1;
    grid-row: 2 / span 2;
    min-height: 500px !important;
    position: sticky !important;
    top: 92px;
    align-self: start;
  }

  .buyer-categories {
    grid-column: 2;
    grid-row: 2;
    top: 69px;
  }

  .buyer-product-grid {
    grid-column: 2;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-self: start;
    grid-auto-rows: max-content;
  }

  .buyer-product-card {
    align-self: start;
  }

  .buyer-checkout {
    max-width: 1180px !important;
    padding: 14px 28px 28px !important;
  }

  .buyer-checkout > .buyer-backlink {
    margin-bottom: 6px !important;
  }

  .buyer-checkout-heading {
    margin-bottom: 14px !important;
  }

  .buyer-checkout-heading h1 {
    font-size: clamp(1.72rem, 2vw, 2.1rem) !important;
  }

  .buyer-checkout-heading p {
    margin-top: 5px;
    font-size: .9rem;
  }

  .buyer-checkout-form {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
    align-items: start;
    gap: 24px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .buyer-checkout-form > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0 !important;
  }

  .buyer-checkout-primary,
  .buyer-checkout-secondary {
    padding: 24px;
  }

  .buyer-checkout-primary {
    grid-column: 1;
  }

  .buyer-checkout-secondary {
    grid-column: 2;
  }

  .buyer-checkout-address .h-72 {
    height: 360px !important;
    min-height: 360px !important;
  }
}

@media (min-width: 1280px) {
  .buyer-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  /* Desktop checkout mirrors the approved compact concept: contact data,
     delivery/map and order summary remain visible side by side. */
  .buyer-checkout {
    max-width: 1520px !important;
  }

  .buyer-checkout-heading {
    max-width: none;
  }

  .buyer-checkout-eyebrow,
  .buyer-checkout-heading p {
    display: none;
  }

  .buyer-checkout-heading h1 {
    font-size: 1.8rem !important;
  }

  .buyer-checkout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 18px;
  }

  .buyer-checkout > .buyer-backlink {
    grid-column: 1;
    margin: 0 !important;
    white-space: nowrap;
  }

  .buyer-checkout-heading {
    grid-column: 2;
    margin: 0 !important;
  }

  .buyer-checkout-form {
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  .buyer-checkout-contact > .grid button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .buyer-checkout-contact > .grid button > i {
    margin-right: 0 !important;
  }

  .buyer-checkout-contact > .mt-4 {
    margin-top: 12px !important;
  }

  .buyer-checkout-contact > .mt-4 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 10px !important;
  }

  .buyer-checkout-form {
    grid-template-columns: minmax(260px, .76fr) minmax(420px, 1.24fr) minmax(360px, 1fr);
    gap: 18px;
  }

  .buyer-checkout-primary {
    display: contents;
  }

  .buyer-checkout-primary > section {
    min-width: 0;
    align-self: start;
    border: 1px solid var(--buyer-separator) !important;
    border-radius: 22px;
    background: var(--buyer-surface);
    padding: 16px !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .065);
  }

  .buyer-dark .buyer-checkout-primary > section {
    box-shadow: 0 18px 48px rgba(0, 0, 0, .32);
  }

  .buyer-checkout-primary > .buyer-checkout-contact {
    grid-column: 1;
    grid-row: 1;
  }

  .buyer-checkout-primary > .buyer-checkout-address {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0 !important;
    border-top: 1px solid var(--buyer-separator) !important;
    padding-top: 16px !important;
  }

  .buyer-checkout-primary:not(:has(.buyer-checkout-address)) > .buyer-checkout-contact {
    grid-column: 1 / 3;
  }

  .buyer-checkout-primary > section:not(.buyer-checkout-contact):not(.buyer-checkout-address) {
    grid-column: 1 / 3;
    margin-top: 0 !important;
  }

  .buyer-checkout-secondary {
    grid-column: 3;
    grid-row: 1 / span 2;
    position: sticky;
    top: 86px;
    padding: 16px;
  }

  .buyer-checkout-address .h-72 {
    height: 205px !important;
    min-height: 205px !important;
  }

  .buyer-checkout-form input,
  .buyer-checkout-form textarea,
  .buyer-checkout-form select {
    min-height: 44px;
  }

  .buyer-checkout-primary > section + section,
  .buyer-checkout-secondary > section + section,
  .buyer-checkout-secondary > section + div,
  .buyer-checkout-secondary > div + section {
    margin-top: 12px !important;
    padding-top: 12px !important;
  }

  .buyer-checkout-order .space-y-3 {
    max-height: 290px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  .buyer-checkout-order .border-b {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .buyer-checkout-comment summary span {
    display: none;
  }

  .buyer-map-notice {
    margin-top: 8px !important;
    padding: 7px 10px !important;
    font-size: .75rem !important;
    line-height: 1.3;
  }

  .buyer-checkout-secondary > .buyer-checkout-submit {
    margin-top: 12px;
    min-height: 48px;
  }

  /* Two purposeful desktop zones: fulfillment details on the left and a
     wider, more informative order summary on the right. */
  .buyer-checkout-form {
    grid-template-columns: minmax(420px, .82fr) minmax(560px, 1.18fr);
  }

  .buyer-checkout-primary {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    padding: 14px;
  }

  .buyer-checkout-primary > section {
    width: 100%;
    border: 0 !important;
    border-radius: 0;
    background: transparent;
    padding: 0 !important;
    box-shadow: none;
  }

  .buyer-dark .buyer-checkout-primary > section {
    box-shadow: none;
  }

  .buyer-checkout-primary > .buyer-checkout-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-column: auto;
    grid-row: auto;
    align-items: center;
    gap: 10px;
  }

  .buyer-checkout-contact > .mt-4 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 0 !important;
    overflow: hidden;
    border: 1px solid var(--buyer-separator-strong);
    border-radius: 14px;
    background: var(--buyer-surface-raised);
  }

  .buyer-checkout-contact .buyer-compact-field + .buyer-compact-field {
    border-left: 1px solid var(--buyer-separator);
  }

  .buyer-checkout-contact .buyer-field-with-icon > input {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .buyer-checkout-contact .buyer-compact-field:focus-within {
    background: color-mix(in srgb, var(--buyer-accent) 7%, transparent);
  }

  .buyer-checkout-primary > section:not(.buyer-checkout-contact) > div:first-child .font-black,
  .buyer-checkout-secondary > section > div:first-child .font-black,
  .buyer-checkout-comment summary {
    font-size: .78rem !important;
    line-height: 1.2;
    letter-spacing: .01em;
  }

  .buyer-checkout-primary > section:not(.buyer-checkout-contact) > div:first-child > div:first-child:has(> i),
  .buyer-checkout-secondary > section > div:first-child > div:first-child:has(> i) {
    width: 30px !important;
    height: 30px !important;
    border-radius: 9px !important;
    font-size: .78rem !important;
  }

  .buyer-checkout-order .text-lg {
    font-size: .98rem !important;
  }

  .buyer-checkout-order .font-bold.leading-snug {
    font-size: .88rem;
    line-height: 1.25;
  }

  .buyer-checkout-total > div:first-child .font-black {
    font-size: .78rem !important;
  }

  .buyer-address-grid label {
    position: relative;
  }

  .buyer-address-grid {
    gap: 0 !important;
    overflow: visible;
    border: 1px solid var(--buyer-separator-strong);
    border-radius: 14px;
    background: var(--buyer-surface-raised);
  }

  .buyer-address-grid > * {
    min-width: 0;
    border-right: 1px solid var(--buyer-separator);
  }

  .buyer-address-grid > :last-child {
    border-right: 0;
  }

  .buyer-address-grid label > span:first-child {
    position: absolute;
    z-index: 1;
    left: 14px;
    top: 7px;
    margin: 0 !important;
    color: var(--buyer-text-secondary) !important;
    font-size: .61rem !important;
    letter-spacing: .065em;
    pointer-events: none;
  }

  .buyer-address-grid label > input {
    padding-top: 19px !important;
    padding-bottom: 6px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .buyer-field-with-icon > input,
  .buyer-address-grid label > input {
    border-color: color-mix(in srgb, var(--buyer-separator-strong) 82%, transparent) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025) !important;
  }

  .buyer-field-with-icon > input:focus,
  .buyer-address-grid label > input:focus {
    border-color: transparent !important;
    box-shadow: none !important;
  }

  .buyer-address-grid > *:focus-within {
    background: color-mix(in srgb, var(--buyer-accent) 7%, transparent);
  }

  .buyer-checkout-contact > .mt-4 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0 !important;
  }

  .buyer-checkout-primary > .buyer-checkout-address {
    grid-column: auto;
    grid-row: auto;
    margin-top: 12px !important;
    border-top: 1px solid var(--buyer-separator) !important;
    padding-top: 12px !important;
  }

  .buyer-checkout-primary:not(:has(.buyer-checkout-address)) > .buyer-checkout-contact,
  .buyer-checkout-primary > section:not(.buyer-checkout-contact):not(.buyer-checkout-address) {
    grid-column: auto;
  }

  .buyer-checkout-primary > section:not(.buyer-checkout-contact):not(.buyer-checkout-address) {
    margin-top: 12px !important;
    border-top: 1px solid var(--buyer-separator) !important;
    padding-top: 12px !important;
  }

  .buyer-checkout-secondary {
    grid-column: 2;
    grid-row: 1;
  }
}

/* Checkout hierarchy: numbered task flow, clear controls and quieter summary. */
.buyer-section-heading {
  margin-bottom: 12px !important;
}

.buyer-section-heading > .buyer-section-icon {
  width: 30px !important;
  height: 30px !important;
  border: 1px solid color-mix(in srgb, var(--buyer-accent) 55%, transparent);
  border-radius: 50% !important;
  background: color-mix(in srgb, var(--buyer-accent) 18%, var(--buyer-surface-raised)) !important;
  color: var(--buyer-text) !important;
  font-size: .75rem !important;
  font-weight: 850;
}

.buyer-section-heading > .buyer-section-icon > i {
  display: inline-block !important;
  color: #111 !important;
}

.buyer-dark .buyer-section-heading > .buyer-section-icon {
  background: color-mix(in srgb, var(--buyer-accent) 22%, #17130a) !important;
  color: var(--buyer-accent) !important;
}

.buyer-checkout-primary .buyer-section-heading .font-black,
.buyer-checkout-secondary .buyer-section-heading .font-black {
  color: var(--buyer-text) !important;
  font-size: .92rem !important;
  letter-spacing: -.01em !important;
}

.buyer-checkout-primary .buyer-field-caption,
.buyer-checkout-primary .buyer-address-grid label > span:first-child {
  font-size: .66rem !important;
  line-height: 1 !important;
}

.buyer-checkout-primary .buyer-field-with-icon > input,
.buyer-checkout-primary .buyer-address-grid label > input {
  font-size: .94rem !important;
}

.buyer-checkout-contact > .grid,
.buyer-checkout-contact > .mt-4,
.buyer-address-grid,
.buyer-checkout-order .overflow-hidden,
.buyer-checkout-total > div:last-of-type {
  border-color: var(--buyer-separator-strong) !important;
  background: var(--buyer-surface-raised) !important;
}

.buyer-dark .buyer-checkout-primary {
  background: #0d0d0f !important;
}

.buyer-dark .buyer-checkout-secondary {
  background: #101012 !important;
}

.buyer-field-caption,
.buyer-address-grid label > span:first-child {
  color: color-mix(in srgb, var(--buyer-text-secondary) 82%, var(--buyer-text)) !important;
  font-weight: 850 !important;
}

.buyer-field-with-icon > input,
.buyer-address-grid label > input {
  color: var(--buyer-text) !important;
  font-weight: 680 !important;
}

.buyer-checkout-form input::placeholder,
.buyer-checkout-form textarea::placeholder {
  color: color-mix(in srgb, var(--buyer-text-secondary) 82%, transparent) !important;
  font-weight: 520 !important;
  opacity: 1;
}

.buyer-checkout-contact .buyer-compact-field:focus-within,
.buyer-address-grid > *:focus-within {
  background: color-mix(in srgb, var(--buyer-accent) 12%, var(--buyer-surface-raised)) !important;
  box-shadow: inset 0 -2px 0 var(--buyer-accent);
}

.buyer-checkout-order .overflow-hidden {
  border-radius: 16px !important;
}

.buyer-checkout-order .overflow-hidden > div:first-child {
  background: color-mix(in srgb, var(--buyer-surface-raised) 72%, var(--buyer-surface)) !important;
}

.buyer-checkout-total > div:last-of-type {
  background: color-mix(in srgb, var(--buyer-surface-raised) 88%, var(--buyer-surface)) !important;
}

.buyer-checkout-total > div:last-of-type > div:last-child {
  color: var(--buyer-text) !important;
}

.buyer-checkout-submit {
  border: 1px solid rgba(255, 255, 255, .14);
  color: #111 !important;
}

.buyer-cart-store-group {
  border-color: var(--buyer-separator-strong) !important;
  background: var(--buyer-surface) !important;
  box-shadow: var(--buyer-shadow-sm);
}

.buyer-cart-store-heading {
  border-color: var(--buyer-separator) !important;
  background: var(--buyer-surface-raised) !important;
}

.buyer-cart-store-group .buyer-cart-item {
  border-color: var(--buyer-separator) !important;
  background: var(--buyer-surface) !important;
}

@media (min-width: 1280px) {
  .buyer-checkout-form {
    align-items: start;
    padding-bottom: 128px !important;
  }

  .buyer-checkout-primary {
    position: sticky;
    top: 82px;
    max-height: calc(100dvh - 96px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
  }

  .buyer-checkout-primary::-webkit-scrollbar {
    display: none;
  }

  .buyer-checkout-secondary {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .buyer-checkout-order .space-y-3 {
    max-height: none !important;
    overflow: visible !important;
    overscroll-behavior: auto;
  }
}

@media (min-width: 1800px) {
  .buyer-store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1280px) and (max-height: 780px) {
  .buyer-checkout {
    padding-top: 8px !important;
  }

  .buyer-checkout-heading h1 {
    font-size: 1.55rem !important;
  }

  .buyer-checkout-form {
    margin-top: 8px;
  }

  .buyer-checkout-primary,
  .buyer-checkout-secondary {
    padding: 12px !important;
  }

  .buyer-checkout-primary > section {
    padding: 0 !important;
  }

  .buyer-checkout-primary > .buyer-checkout-address {
    padding-top: 8px !important;
  }

  .buyer-checkout-contact > .grid button {
    min-height: 40px;
  }

  .buyer-checkout-form input,
  .buyer-checkout-form textarea,
  .buyer-checkout-form select {
    min-height: 40px;
  }

  .buyer-checkout-address .h-72 {
    height: 145px !important;
    min-height: 145px !important;
  }

  .buyer-checkout-order .space-y-3 {
    max-height: 205px;
  }

  .buyer-checkout-primary > section + section,
  .buyer-checkout-secondary > section + section,
  .buyer-checkout-secondary > section + div,
  .buyer-checkout-secondary > div + section {
    margin-top: 8px !important;
    padding-top: 8px !important;
  }

  .buyer-checkout-secondary > .buyer-checkout-submit {
    margin-top: 8px;
    min-height: 44px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}

@media (max-width: 520px) {
  .buyer-header > .container-custom {
    min-height: 58px;
    padding: 8px 10px !important;
    gap: 6px !important;
  }

  .buyer-brand {
    max-width: 106px;
    font-size: 1rem !important;
    line-height: 1.05;
    white-space: nowrap;
  }

  .buyer-brand::after {
    display: none;
  }

  .buyer-toolbar {
    gap: 5px !important;
  }

  .buyer-toolbar select {
    width: 96px;
    max-width: 96px !important;
    padding-left: 7px !important;
    padding-right: 4px !important;
  }

  .buyer-toolbar > button,
  .buyer-toolbar > div > button {
    width: 38px !important;
    height: 38px !important;
  }

  .buyer-stores,
  .buyer-catalog {
    padding: 18px 16px !important;
  }

  .buyer-store-card,
  .buyer-store-card-body {
    min-height: 238px !important;
  }

  .buyer-store-hero {
    min-height: 190px !important;
  }

  .buyer-product-grid {
    gap: 12px !important;
  }

  .buyer-product-card > div:last-child {
    padding: 11px !important;
  }

  .buyer-product-card h2 {
    font-size: .94rem;
  }

  .buyer-product-card > div:last-child > div:last-child {
    gap: 4px !important;
  }

  .buyer-product-card .inline-flex button {
    width: 30px !important;
    height: 38px !important;
  }

  .buyer-product-card .inline-flex .min-w-7 {
    min-width: 24px !important;
  }

  .buyer-checkout,
  .buyer-cart {
    padding: 18px 14px calc(28px + env(safe-area-inset-bottom)) !important;
  }

  .buyer-checkout-heading {
    margin-bottom: 12px !important;
  }

  .buyer-checkout-heading h1 {
    font-size: 1.55rem !important;
    line-height: 1.08 !important;
    white-space: nowrap;
  }

  .buyer-checkout-form {
    padding: 0 !important;
  }

  .buyer-checkout-primary,
  .buyer-checkout-secondary {
    border-radius: 18px;
    padding: 16px;
  }

  .buyer-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .buyer-address-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }

  .buyer-address-grid > :first-child {
    grid-column: 1 / -1;
  }

  .buyer-checkout-address .h-72 {
    height: 230px !important;
    min-height: 230px !important;
  }

  .buyer-checkout-submit {
    min-height: 56px;
    font-size: 1rem !important;
  }

  .buyer-cart-item {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 38px 24px 38px;
    padding: 14px !important;
  }

  .buyer-page-heading h1,
  .buyer-cart > h1,
  .buyer-checkout > h1,
  .buyer-tracking > h1 {
    font-size: 1.75rem !important;
  }

  .buyer-categories {
    top: calc(58px + env(safe-area-inset-top));
  }
}

@media (max-width: 340px) {
  .buyer-toolbar select {
    width: 78px;
    max-width: 78px !important;
  }

  .buyer-brand {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Checkout v20 — one conversion-focused hierarchy. This block intentionally
   owns the final checkout/cart geometry so older preview experiments cannot
   fight the production layout. */
.buyer-cart,
.buyer-checkout {
  width: min(100%, 1240px) !important;
  max-width: 1240px !important;
  margin-inline: auto;
}

.buyer-cart {
  width: min(100%, 920px) !important;
  max-width: 920px !important;
}

.buyer-cart > h1,
.buyer-checkout-heading h1 {
  margin: 0 !important;
  color: var(--buyer-text) !important;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem) !important;
  font-weight: 850 !important;
  letter-spacing: -.035em !important;
  line-height: 1.08 !important;
}

.buyer-cart-store-group {
  overflow: hidden;
  border: 1px solid var(--buyer-separator-strong) !important;
  border-radius: 20px !important;
  box-shadow: none !important;
}

.buyer-cart-store-heading {
  min-height: 64px;
  padding: 12px 16px !important;
  background: var(--buyer-surface-raised) !important;
}

.buyer-cart-store-heading .text-xs {
  color: var(--buyer-text-secondary) !important;
  font-size: .68rem !important;
  letter-spacing: .075em;
}

.buyer-cart-store-group .buyer-cart-item {
  min-height: 74px;
  padding: 11px 16px !important;
}

.buyer-cart-store-group .buyer-cart-item > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 14px;
}

.buyer-cart-store-group .buyer-cart-item > div:first-child > :first-child {
  grid-column: 1;
}

.buyer-cart-store-group .buyer-cart-item > div:first-child > :nth-child(2) {
  grid-column: 1;
  font-size: .78rem !important;
}

.buyer-cart-store-group .buyer-cart-item > div:first-child > :last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--buyer-text) !important;
}

.buyer-cart-total {
  margin-top: 14px !important;
  padding: 16px 2px !important;
  border-top: 1px solid var(--buyer-separator-strong) !important;
}

.buyer-cart-submit,
.buyer-checkout-submit {
  min-height: 56px !important;
  border-radius: 16px !important;
  background: var(--buyer-accent) !important;
  color: #111 !important;
  font-size: 1rem !important;
  font-weight: 850 !important;
  box-shadow: none !important;
}

.buyer-checkout {
  padding-top: 16px !important;
}

.buyer-checkout > .buyer-backlink {
  margin-bottom: 8px !important;
  color: var(--buyer-text-secondary) !important;
  font-size: .9rem;
}

.buyer-checkout-heading {
  max-width: none !important;
  margin: 0 0 14px !important;
}

.buyer-checkout-form {
  display: grid !important;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr) !important;
  align-items: start !important;
  gap: 16px !important;
  padding: 0 !important;
}

.buyer-checkout-primary,
.buyer-checkout-secondary {
  min-width: 0;
  border: 1px solid var(--buyer-separator-strong) !important;
  border-radius: 22px !important;
  background: var(--buyer-surface) !important;
  padding: 18px !important;
  box-shadow: none !important;
}

.buyer-checkout-primary {
  position: sticky !important;
  top: 76px !important;
  max-height: calc(100dvh - 88px) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--buyer-separator-strong) transparent;
}

.buyer-checkout-secondary {
  position: static !important;
  overflow: visible !important;
}

.buyer-checkout-primary > section,
.buyer-checkout-secondary > section {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.buyer-checkout-primary > section + section,
.buyer-checkout-secondary > section + section,
.buyer-checkout-secondary > section + div,
.buyer-checkout-secondary > div + section {
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px solid var(--buyer-separator) !important;
}

.buyer-section-heading {
  min-height: 30px;
  margin: 0 0 10px !important;
}

.buyer-section-heading > .buyer-section-icon {
  width: 28px !important;
  height: 28px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: color-mix(in srgb, var(--buyer-accent) 22%, var(--buyer-surface-raised)) !important;
  color: #9a6500 !important;
}

.buyer-section-heading .font-black {
  color: var(--buyer-text) !important;
  font-size: .9rem !important;
  font-weight: 850 !important;
  letter-spacing: -.012em !important;
}

.buyer-section-heading .text-xs {
  display: none !important;
}

.buyer-checkout-contact > .grid {
  min-height: 44px;
  padding: 3px !important;
  border: 1px solid var(--buyer-separator) !important;
  border-radius: 14px !important;
}

.buyer-checkout-contact > .grid button {
  min-height: 38px;
  padding-block: 7px !important;
  border-radius: 11px !important;
  font-size: .88rem;
}

.buyer-checkout-contact > .mt-4 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px !important;
  margin-top: 10px !important;
  border: 1px solid var(--buyer-separator-strong) !important;
  border-radius: 14px !important;
  background: var(--buyer-surface-raised) !important;
  padding: 0 10px !important;
}

.buyer-checkout-contact .buyer-compact-field {
  position: relative;
  min-width: 0;
  border: 0 !important;
  background: transparent !important;
}

.buyer-checkout-contact .buyer-compact-field + .buyer-compact-field {
  border-left: 1px solid var(--buyer-separator) !important;
}

.buyer-checkout-contact .buyer-compact-field:focus-within {
  box-shadow: inset 0 -2px 0 var(--buyer-accent) !important;
}

.buyer-field-with-icon > i {
  left: 3px !important;
  color: var(--buyer-text-secondary) !important;
}

.buyer-field-caption {
  left: 30px !important;
  top: 7px !important;
  color: var(--buyer-text-secondary) !important;
  font-size: .63rem !important;
  font-weight: 850 !important;
}

.buyer-checkout-contact .buyer-field-with-icon > input {
  min-height: 56px !important;
  padding: 21px 4px 5px 30px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--buyer-text) !important;
  font-size: .94rem !important;
  font-weight: 700 !important;
}

.buyer-address-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 92px 100px !important;
  gap: 0 !important;
  overflow: visible;
  border: 1px solid var(--buyer-separator-strong) !important;
  border-radius: 14px !important;
  background: var(--buyer-surface-raised) !important;
}

.buyer-address-grid > * {
  min-width: 0;
  padding: 0 10px;
}

.buyer-address-grid label {
  position: relative !important;
  display: block !important;
}

.buyer-address-grid > * + * {
  border-left: 1px solid var(--buyer-separator) !important;
}

.buyer-address-grid label > span:first-child {
  position: absolute !important;
  z-index: 1;
  top: 7px !important;
  left: 10px !important;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--buyer-text-secondary) !important;
  font-size: .63rem !important;
  font-weight: 850 !important;
  letter-spacing: .055em;
  line-height: 1;
  text-transform: uppercase;
}

.buyer-address-grid label > input {
  min-height: 45px !important;
  padding: 20px 0 5px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--buyer-text) !important;
  font-size: .92rem !important;
  font-weight: 700 !important;
}

.buyer-checkout-address [data-checkout-target="map"] {
  margin-top: 10px !important;
  padding: 10px !important;
  border: 1px solid var(--buyer-separator-strong) !important;
  border-radius: 16px !important;
  background: var(--buyer-surface-raised) !important;
}

.buyer-checkout-address [data-checkout-target="map"] > .mb-2 {
  margin-bottom: 7px !important;
}

.buyer-checkout-address .h-72 {
  height: clamp(170px, 27dvh, 220px) !important;
  min-height: 170px !important;
  border-radius: 12px !important;
}

.buyer-checkout-order .space-y-3 {
  max-height: none !important;
  overflow: visible !important;
}

.buyer-checkout-order .overflow-hidden {
  overflow: hidden !important;
  border: 1px solid var(--buyer-separator-strong) !important;
  border-radius: 16px !important;
  background: var(--buyer-surface-raised) !important;
}

.buyer-checkout-order .overflow-hidden > div:first-child {
  min-height: 52px;
  padding: 10px 14px !important;
  background: color-mix(in srgb, var(--buyer-surface-raised) 75%, var(--buyer-surface)) !important;
}

.buyer-checkout-order .overflow-hidden > .flex:not(:first-child) {
  min-height: 62px;
  padding: 10px 14px !important;
}

.buyer-checkout-order .text-lg {
  font-size: .98rem !important;
}

.buyer-checkout-order .font-bold.leading-snug {
  font-size: .9rem !important;
}

.buyer-checkout-comment details {
  min-height: 44px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.buyer-checkout-comment summary {
  min-height: 44px;
  color: var(--buyer-text) !important;
  font-size: .9rem;
}

.buyer-checkout-comment summary span {
  color: var(--buyer-text-secondary) !important;
  font-size: .78rem;
}

.buyer-checkout-total {
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px solid var(--buyer-separator) !important;
}

.buyer-checkout-total > .mb-3 {
  margin-bottom: 8px !important;
  font-size: .9rem;
}

.buyer-checkout-total > div:last-of-type {
  padding: 12px 14px !important;
  border: 1px solid var(--buyer-separator-strong) !important;
  border-radius: 16px !important;
  background: var(--buyer-surface-raised) !important;
}

.buyer-checkout-total .text-2xl {
  font-size: 1.6rem !important;
  letter-spacing: -.035em;
}

.buyer-checkout-secondary > .buyer-checkout-submit {
  margin-top: 12px !important;
}

@media (min-width: 1024px) {
  .buyer-checkout-form {
    grid-template-rows: auto 168px !important;
  }

  .buyer-checkout-form::after {
    content: "";
    display: block;
    grid-column: 2;
    grid-row: 2;
    height: 168px;
    pointer-events: none;
  }

  .buyer-checkout-primary {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .buyer-checkout-secondary {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 1023px) {
  .buyer-checkout-form {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    padding-bottom: calc(24px + env(safe-area-inset-bottom)) !important;
  }

  .buyer-checkout-primary {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

@media (max-width: 520px) {
  .buyer-cart,
  .buyer-checkout {
    padding-inline: 12px !important;
  }

  .buyer-checkout-heading h1 {
    white-space: normal !important;
    font-size: 1.45rem !important;
  }

  .buyer-checkout-primary,
  .buyer-checkout-secondary {
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .buyer-checkout-contact > .mt-4 {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 0 10px !important;
  }

  .buyer-checkout-contact .buyer-compact-field + .buyer-compact-field {
    border-top: 1px solid var(--buyer-separator) !important;
    border-left: 0 !important;
  }

  .buyer-address-grid {
    grid-template-columns: minmax(0, 1fr) minmax(84px, .45fr) !important;
  }

  .buyer-address-grid > :first-child {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--buyer-separator) !important;
  }

  .buyer-address-grid > :nth-child(2) {
    border-left: 0 !important;
  }

  .buyer-checkout-address .h-72 {
    height: 210px !important;
  }

  .buyer-checkout-order .overflow-hidden > .flex:not(:first-child) {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .buyer-checkout-order .overflow-hidden > .flex:not(:first-child) > .flex {
    align-self: stretch;
    justify-content: flex-end;
  }

  .buyer-cart-store-group .buyer-cart-item > div:first-child {
    display: block;
  }
}

/* Checkout v21 — compact desktop geometry requested after wide-screen QA. */
.buyer-header > .container-custom {
  min-height: 62px !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.buyer-header .buyer-brand {
  font-size: 1.18rem !important;
}

.buyer-header .buyer-toolbar > button,
.buyer-header .buyer-toolbar > div > button,
.buyer-header .buyer-toolbar > select {
  min-height: 42px !important;
  height: 42px !important;
}

.buyer-checkout {
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) !important;
  align-items: center !important;
  column-gap: 10px !important;
  padding-top: 8px !important;
}

.buyer-checkout > .buyer-backlink {
  grid-column: 1;
  grid-row: 1;
  display: grid !important;
  width: 40px;
  height: 40px;
  place-items: center;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 12px;
  color: var(--buyer-text-secondary) !important;
  font-size: 0 !important;
}

.buyer-checkout > .buyer-backlink:hover {
  background: var(--buyer-surface-raised);
}

.buyer-checkout > .buyer-backlink > i {
  margin: 0 !important;
  font-size: .95rem !important;
}

.buyer-checkout-heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0 !important;
}

.buyer-checkout-heading h1 {
  font-size: clamp(1.3rem, 1.65vw, 1.65rem) !important;
}

.buyer-checkout-form {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 7px !important;
}

.buyer-checkout-primary,
.buyer-checkout-secondary {
  padding: 14px !important;
}

.buyer-checkout-primary {
  top: 68px !important;
  max-height: none !important;
  overflow: visible !important;
  overscroll-behavior: auto !important;
  scrollbar-width: none !important;
}

.buyer-section-heading {
  min-height: 24px !important;
  margin-bottom: 6px !important;
}

.buyer-section-heading > .buyer-section-icon {
  width: 24px !important;
  height: 24px !important;
  border-radius: 8px !important;
}

.buyer-section-heading .font-black {
  font-size: .84rem !important;
}

.buyer-checkout-primary > section + section,
.buyer-checkout-secondary > section + section,
.buyer-checkout-secondary > section + div,
.buyer-checkout-secondary > div + section,
.buyer-checkout-primary > .buyer-checkout-address {
  margin-top: 11px !important;
  padding-top: 11px !important;
}

/* Delivery point input: keep address search and manual map selection distinct. */
.buyer-location-mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 12px;
  padding: 4px;
  border: 1px solid var(--buyer-separator-strong);
  border-radius: 14px;
  background: var(--buyer-surface-raised);
}

.buyer-location-mode button {
  display: flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--buyer-text-secondary);
  font-size: .86rem;
  font-weight: 850;
  line-height: 1.1;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.buyer-location-mode > div {
  display: flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--buyer-text);
  font-size: .86rem;
  font-weight: 850;
}

.buyer-location-mode.is-map-only > div.is-active {
  background: color-mix(in srgb, var(--buyer-accent) 18%, var(--buyer-surface-raised));
}

.buyer-location-mode button.is-active {
  border-color: color-mix(in srgb, var(--buyer-accent) 45%, transparent);
  background: var(--buyer-accent);
  color: #111827;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--buyer-accent) 18%, transparent);
}

.buyer-find-address {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--buyer-separator-strong);
  border-radius: 12px;
  background: var(--buyer-text);
  color: var(--buyer-canvas);
  font-size: .86rem;
  font-weight: 850;
}

.buyer-find-address:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.buyer-location-confirmed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.buyer-map-address-confirm {
  display: grid;
  gap: 9px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--buyer-separator-strong);
  border-radius: 16px;
  background: var(--buyer-surface-raised);
  box-shadow: var(--buyer-shadow-sm);
}

.buyer-map-address-summary {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.buyer-map-street {
  min-width: 0;
  padding: 0 2px;
}

.buyer-map-address-confirm > label + label,
.buyer-map-address-confirm > .buyer-map-street + label {
  display: block;
  margin-top: 8px;
}

.buyer-map-street span {
  display: block;
  margin-bottom: 4px;
  color: var(--buyer-text-secondary);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.buyer-map-street strong {
  display: block;
  overflow: hidden;
  color: var(--buyer-text);
  font-size: .95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.buyer-map-address-edit {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--buyer-separator-strong);
  border-radius: 10px;
  background: transparent;
  color: var(--buyer-text-secondary);
  font-size: .78rem;
  font-weight: 850;
  transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.buyer-map-address-edit:hover {
  border-color: color-mix(in srgb, var(--buyer-accent) 55%, var(--buyer-separator));
  background: color-mix(in srgb, var(--buyer-accent) 9%, transparent);
  color: var(--buyer-text);
}

.buyer-map-house-required {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--buyer-accent) 42%, var(--buyer-separator));
  border-radius: 12px;
  background: color-mix(in srgb, var(--buyer-accent) 7%, var(--buyer-surface));
}

.buyer-map-house-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--buyer-text);
  font-size: .8rem;
  font-weight: 900;
}

.buyer-map-house-heading em {
  padding: 3px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--buyer-accent) 20%, transparent);
  color: color-mix(in srgb, var(--buyer-accent) 72%, var(--buyer-text));
  font-size: .62rem;
  font-style: normal;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.buyer-map-house-required input {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--buyer-separator-strong);
  border-radius: 10px;
  background: var(--buyer-surface);
  color: var(--buyer-text);
  font-size: .95rem;
  font-weight: 750;
  outline: none;
}

.buyer-map-house-required input:focus {
  border-color: var(--buyer-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--buyer-accent) 15%, transparent);
}

.buyer-map-house-required p {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  color: var(--buyer-text-secondary);
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.35;
}

.buyer-map-house-required p i {
  margin-top: 2px;
  color: var(--buyer-accent);
}

.buyer-map-address-edit-panel {
  display: grid;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--buyer-separator);
}

.buyer-map-address-edit-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--buyer-text-secondary);
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.4;
}

.buyer-map-address-edit-note i {
  margin-top: 2px;
  color: var(--buyer-accent);
}

.buyer-map-address-edit-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 8px;
}

.buyer-map-address-error {
  color: #dc2626;
  font-size: .74rem;
  font-weight: 800;
}

.buyer-map-address-edit-actions {
  display: flex;
  justify-content: flex-end;
}

.buyer-map-address-save {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 10px;
  background: var(--buyer-accent);
  color: #111827;
  font-size: .82rem;
  font-weight: 900;
}

.buyer-map-address-save:disabled {
  cursor: not-allowed;
  opacity: .42;
}

@media (max-width: 520px) {
  .buyer-map-address-edit span {
    display: none;
  }

  .buyer-map-address-edit {
    width: 34px;
    padding-inline: 0;
    justify-content: center;
  }

  .buyer-map-address-edit-fields {
    grid-template-columns: minmax(0, 1fr) 94px;
  }
}

.buyer-location-confirmed > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.buyer-location-confirmed span,
.buyer-location-confirmed small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.buyer-location-confirmed button {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid currentColor;
  border-radius: 9px;
  font-size: .76rem;
  font-weight: 850;
}

.buyer-location-map .buyer-map-notice {
  line-height: 1.35;
}

@media (max-width: 520px) {
  .buyer-location-mode button {
    min-height: 40px;
    padding-inline: 7px;
    font-size: .78rem;
  }

  .buyer-location-confirmed {
    align-items: stretch;
    flex-direction: column;
  }

  .buyer-location-confirmed button {
    width: 100%;
  }
}

.buyer-checkout-contact > .grid {
  min-height: 38px !important;
}

.buyer-checkout-contact > .grid button {
  min-height: 32px !important;
  padding-block: 4px !important;
}

.buyer-checkout-contact > .mt-4 {
  margin-top: 8px !important;
}

.buyer-checkout-contact .buyer-field-with-icon > input {
  min-height: 50px !important;
  padding-top: 19px !important;
}

.buyer-checkout-address [data-checkout-target="map"] {
  margin-top: 8px !important;
  padding: 8px !important;
}

.buyer-checkout-address .h-72 {
  height: clamp(240px, 34dvh, 320px) !important;
  min-height: 240px !important;
}

.buyer-checkout-order .overflow-hidden > div:first-child {
  min-height: 46px !important;
  padding: 8px 12px !important;
}

.buyer-checkout-order .overflow-hidden > .flex:not(:first-child) {
  min-height: 52px !important;
  padding: 7px 12px !important;
}

@media (max-width: 1023px) {
  .buyer-checkout {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    padding-top: 10px !important;
  }

  .buyer-checkout > .buyer-backlink {
    width: 36px;
    height: 36px;
  }

  .buyer-checkout-form {
    margin-top: 8px !important;
  }
}

@media (max-width: 520px) {
  .buyer-header > .container-custom {
    min-height: 54px !important;
  }

  .buyer-checkout-heading h1 {
    font-size: 1.28rem !important;
  }

  .buyer-checkout-primary,
  .buyer-checkout-secondary {
    padding: 12px !important;
  }

  .buyer-checkout-address .h-72 {
    height: 260px !important;
    min-height: 260px !important;
  }
}

/* Address fields use disappearing placeholders; persistent captions no longer
   compete with entered values inside the compact row. Semantic labels remain
   in the document for accessibility. */
.buyer-address-grid label > span:first-child {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.buyer-address-grid label > input {
  min-height: 48px !important;
  padding: 8px 0 !important;
  font-size: .95rem !important;
}

.buyer-address-grid label > input::placeholder {
  color: var(--buyer-text-secondary) !important;
  opacity: .88;
}

/* Product cards must read as individual tappable surfaces in both themes. */
.buyer-dark .buyer-product-card,
.buyer-dark .buyer-product-card.bg-white {
  border-color: #4a4a4f !important;
  background: #202022 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .42) !important;
}

.buyer-dark .buyer-product-card > div:last-child {
  background: #202022 !important;
}

.buyer-app:not(.buyer-dark) .buyer-product-card,
.buyer-app:not(.buyer-dark) .buyer-product-card.bg-white {
  border-color: #c2c2c8 !important;
  background: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .11) !important;
}

.buyer-app:not(.buyer-dark) .buyer-product-card > div:last-child {
  background: #ffffff !important;
}

/* Buyer responsive system v25.
   These rules are intentionally last: older visual experiments must not turn
   the phone layout into a stretched desktop layout. */
.buyer-app .container-custom {
  width: min(100%, 1480px);
  margin-inline: auto;
}

.buyer-stores,
.buyer-catalog,
.buyer-cart,
.buyer-checkout,
.buyer-account,
.buyer-store-grid,
.buyer-product-grid,
.buyer-checkout-form,
.buyer-checkout-primary,
.buyer-checkout-secondary {
  min-width: 0;
}

.buyer-store-grid {
  grid-template-columns: minmax(0, 1fr) !important;
}

.buyer-store-card,
.buyer-store-card-body {
  min-height: 208px !important;
}

.buyer-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.buyer-product-card {
  width: 100%;
  max-width: 100%;
}

.buyer-product-card > img,
.buyer-product-card > .h-28 {
  aspect-ratio: 16 / 11;
}

.buyer-cart {
  width: min(100%, 960px) !important;
}

@media (max-width: 639px) {
  .buyer-header > .container-custom {
    gap: 8px !important;
    padding-inline: 12px !important;
  }
  .buyer-brand {
    max-width: 126px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .buyer-toolbar { gap: 6px !important; }
  .buyer-toolbar select {
    width: min(29vw, 116px);
    padding-inline: 8px !important;
  }
  .buyer-stores,
  .buyer-catalog,
  .buyer-cart,
  .buyer-checkout,
  .buyer-account { padding-inline: 12px !important; }
  .buyer-page-heading { margin-block: 4px 14px !important; }
  .buyer-page-heading h1 { font-size: 1.55rem !important; }
  .buyer-store-grid { gap: 12px !important; }
  .buyer-store-card,
  .buyer-store-card-body { min-height: 196px !important; }
  .buyer-store-card-body { padding: 16px !important; }
  .buyer-catalog { display: block !important; }
  .buyer-store-hero { min-height: 188px !important; }
  .buyer-categories { top: 54px; margin-bottom: 8px; }
  .buyer-product-grid { gap: 10px !important; }
  .buyer-product-card > div:last-child { padding: 11px !important; }
  .buyer-product-card h2 { font-size: .92rem; }
  .buyer-cart-item { gap: 8px !important; }
  .buyer-checkout-form { display: block !important; }
}

@media (min-width: 640px) and (max-width: 899px) {
  .buyer-stores,
  .buyer-catalog,
  .buyer-cart,
  .buyer-checkout,
  .buyer-account { padding-inline: 20px !important; }
  .buyer-store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
  .buyer-store-card,
  .buyer-store-card-body { min-height: 230px !important; }
  .buyer-catalog { display: block !important; }
  .buyer-store-hero { min-height: 260px !important; }
  .buyer-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .buyer-checkout-form { display: block !important; }
}

@media (min-width: 900px) and (max-width: 1099px) {
  .buyer-stores,
  .buyer-catalog,
  .buyer-cart,
  .buyer-checkout,
  .buyer-account { padding-inline: 24px !important; }
  .buyer-store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }
  .buyer-store-card,
  .buyer-store-card-body { min-height: 250px !important; }
  .buyer-catalog {
    grid-template-columns: minmax(260px, 30%) minmax(0, 1fr) !important;
    column-gap: 18px !important;
  }
  .buyer-store-hero { min-height: 420px !important; }
  .buyer-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .buyer-checkout { max-width: 820px !important; }
  .buyer-checkout-form { display: block !important; }
}

@media (min-width: 1100px) and (max-width: 1439px) {
  .buyer-stores,
  .buyer-catalog { padding-inline: 28px !important; }
  .buyer-store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .buyer-store-card,
  .buyer-store-card-body { min-height: clamp(260px, 23vw, 310px) !important; }
  .buyer-catalog {
    grid-template-columns: minmax(280px, 31%) minmax(0, 1fr) !important;
    column-gap: 20px !important;
  }
  .buyer-store-hero { min-height: 460px !important; }
  .buyer-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .buyer-checkout { width: min(100%, 1240px) !important; }
  .buyer-checkout-form {
    display: grid !important;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%) !important;
    gap: 18px !important;
  }
}

@media (min-width: 1440px) {
  .buyer-header > .container-custom,
  .buyer-stores,
  .buyer-catalog { padding-inline: 32px !important; }
  .buyer-store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }
  .buyer-store-card,
  .buyer-store-card-body { min-height: 320px !important; }
  .buyer-catalog {
    grid-template-columns: 340px minmax(0, 1fr) !important;
    column-gap: 24px !important;
  }
  .buyer-store-hero { min-height: 500px !important; }
  .buyer-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .buyer-checkout { width: min(100%, 1360px) !important; }
  .buyer-checkout-form {
    grid-template-columns: minmax(0, 41%) minmax(0, 59%) !important;
    gap: 22px !important;
  }
}

@media (min-width: 1800px) {
  .buyer-app .container-custom { max-width: 1480px !important; }
  .buyer-store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .buyer-store-card,
  .buyer-store-card-body { min-height: 330px !important; }
}

/* Desktop density v26.
   Large screens should reveal more content, not inflate touch-first controls. */
@media (min-width: 1100px) {
  .buyer-app .container-custom {
    max-width: 1120px !important;
  }

  .buyer-header > .container-custom {
    min-height: 54px !important;
    padding: 6px 20px !important;
  }

  .buyer-header .buyer-brand {
    font-size: 1.06rem !important;
  }

  .buyer-header .buyer-toolbar > button,
  .buyer-header .buyer-toolbar > div > button,
  .buyer-header .buyer-toolbar > select {
    width: auto;
    min-height: 38px !important;
    height: 38px !important;
  }

  .buyer-header .buyer-toolbar > button,
  .buyer-header .buyer-toolbar > div > button {
    width: 38px;
  }

  .buyer-stores,
  .buyer-catalog {
    padding: 18px 20px 28px !important;
  }

  .buyer-page-heading {
    margin: 2px 0 14px !important;
  }

  .buyer-page-heading h1 {
    font-size: 1.55rem !important;
    line-height: 1.12;
  }

  .buyer-page-heading .text-sm {
    font-size: .82rem !important;
  }

  .buyer-store-grid {
    gap: 16px !important;
  }

  .buyer-store-card,
  .buyer-store-card-body {
    min-height: 218px !important;
  }

  .buyer-store-card-body {
    padding: 18px !important;
  }

  .buyer-store-card-body h1 {
    font-size: 1.32rem !important;
  }

  .buyer-store-card-body .mt-1 {
    font-size: .86rem !important;
  }

  .buyer-store-card-body .mt-3 {
    margin-top: 9px !important;
  }

  .buyer-store-card-body .bg-white\/20 {
    padding: 7px 11px !important;
    font-size: .82rem !important;
  }

  .buyer-store-card-body .w-11 {
    width: 38px !important;
    height: 38px !important;
  }

  .buyer-catalog {
    grid-template-columns: 250px minmax(0, 1fr) !important;
    column-gap: 16px !important;
  }

  .buyer-catalog > .buyer-backlink {
    min-height: 34px;
    margin-bottom: 8px !important;
    padding-inline: 8px;
    font-size: .84rem;
  }

  .buyer-store-hero {
    min-height: 350px !important;
    top: 72px !important;
  }

  .buyer-store-hero .relative {
    padding: 18px !important;
  }

  .buyer-store-hero h1 {
    font-size: 1.35rem !important;
  }

  .buyer-store-hero h1 + div {
    font-size: .84rem;
    line-height: 1.35;
  }

  .buyer-categories {
    top: 55px;
    margin-bottom: 8px;
    padding-block: 5px 8px !important;
  }

  .buyer-categories button {
    min-height: 36px;
    padding: 6px 12px !important;
    font-size: .84rem;
  }

  .buyer-product-grid {
    gap: 12px !important;
  }

  .buyer-product-card > div:last-child {
    padding: 12px !important;
  }

  .buyer-product-card h2 {
    min-height: 2.35em;
    font-size: .92rem;
  }

  .buyer-product-card .text-xs {
    font-size: .7rem !important;
  }

  .buyer-product-card .w-10,
  .buyer-product-card .h-10 {
    width: 36px !important;
    height: 36px !important;
  }

  .buyer-cart {
    width: min(100%, 840px) !important;
    padding-top: 16px !important;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 8px;
  }

  .buyer-cart > h1 {
    grid-column: 2;
    grid-row: 1;
    margin: 0 !important;
    font-size: 1.5rem !important;
    line-height: 1.15;
  }

  .buyer-cart > .buyer-backlink {
    grid-column: 1;
    grid-row: 1;
    min-height: 34px;
    margin: 0 !important;
    padding-inline: 8px;
    font-size: .84rem;
  }

  .buyer-cart > :not(.buyer-backlink):not(h1) {
    grid-column: 1 / -1;
  }

  .buyer-cart-list {
    gap: 12px !important;
    margin-top: 12px;
  }

  .buyer-cart-list > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0 !important;
  }

  .buyer-cart .buyer-cart-store-group,
  .buyer-cart .buyer-cart-store-group.bg-white {
    padding: 0 !important;
    border-radius: 16px !important;
  }

  .buyer-cart-store-heading {
    min-height: 56px;
    padding: 9px 14px !important;
  }

  .buyer-cart-store-heading .text-lg {
    font-size: 1rem !important;
  }

  .buyer-cart-store-group .buyer-cart-item {
    min-height: 62px;
    padding: 8px 14px !important;
  }

  .buyer-cart-store-group .buyer-cart-item > div:first-child > :first-child {
    font-size: .9rem;
    line-height: 1.25;
  }

  .buyer-cart-store-group .buyer-cart-item > button {
    width: 34px !important;
    height: 34px !important;
  }

  .buyer-cart-total {
    margin-top: 10px !important;
    padding: 12px 2px !important;
    font-size: 1.05rem !important;
  }

  .buyer-cart-submit {
    min-height: 48px !important;
  }

  .buyer-checkout {
    width: min(100%, 1040px) !important;
    max-width: 1040px !important;
    padding-inline: 20px !important;
  }

  .buyer-checkout-heading h1 {
    font-size: 1.42rem !important;
  }

  .buyer-checkout-form {
    grid-template-columns: minmax(0, 38%) minmax(0, 62%) !important;
    gap: 16px !important;
  }

  .buyer-checkout-primary,
  .buyer-checkout-secondary {
    padding: 12px !important;
  }

  .buyer-checkout-address .h-72 {
    height: clamp(340px, 44dvh, 440px) !important;
    min-height: 340px !important;
  }

  /* The multi-store courier choice is important, but it is a secondary
     checkout setting. Keep it visible without letting it push the fixed
     address column below a laptop viewport. */
  .buyer-checkout-primary > section:not(.buyer-checkout-contact):not(.buyer-checkout-address) {
    margin-top: 8px !important;
    padding-top: 8px !important;
  }

  .buyer-checkout-primary > section:not(.buyer-checkout-contact):not(.buyer-checkout-address) .buyer-section-heading {
    margin-bottom: 5px !important;
  }

  .buyer-checkout-primary > section:not(.buyer-checkout-contact):not(.buyer-checkout-address) .buyer-section-heading .min-w-0 > .text-xs,
  .buyer-checkout-primary > section:not(.buyer-checkout-contact):not(.buyer-checkout-address) button > .text-xs {
    display: none !important;
  }

  .buyer-checkout-primary > section:not(.buyer-checkout-contact):not(.buyer-checkout-address) button {
    min-height: 42px;
    padding: 7px 9px !important;
  }

  .buyer-checkout-primary > section:not(.buyer-checkout-contact):not(.buyer-checkout-address) button > b {
    display: block;
    font-size: .78rem;
    line-height: 1.2;
  }
}

@media (min-width: 1100px) and (max-height: 800px) {
  .buyer-checkout-address .h-72 {
    height: 320px !important;
    min-height: 320px !important;
  }

  .buyer-checkout-address [data-checkout-target="map"] {
    padding: 6px !important;
  }
}

@media (min-width: 1100px) and (max-height: 680px) {
  .buyer-checkout {
    padding-top: 4px !important;
  }

  .buyer-checkout > .buyer-backlink {
    width: 34px;
    height: 34px;
  }

  .buyer-checkout-heading h1 {
    font-size: 1.25rem !important;
  }

  .buyer-checkout-form {
    margin-top: 4px !important;
  }

  .buyer-checkout-primary,
  .buyer-checkout-secondary {
    padding: 8px !important;
  }

  .buyer-checkout-contact > .grid button {
    min-height: 30px !important;
    padding-block: 3px !important;
  }

  .buyer-checkout-contact > .mt-4 {
    margin-top: 5px !important;
  }

  .buyer-checkout-contact .buyer-field-with-icon > input {
    min-height: 43px !important;
    padding-top: 16px !important;
  }

  .buyer-checkout-primary > section + section,
  .buyer-checkout-primary > .buyer-checkout-address {
    margin-top: 6px !important;
    padding-top: 6px !important;
  }

  .buyer-checkout-address [data-checkout-target="map"] {
    margin-top: 5px !important;
    padding: 5px !important;
  }

  .buyer-checkout-address .h-72 {
    height: 270px !important;
    min-height: 270px !important;
  }

  .buyer-checkout-address [data-checkout-target="map"] .h-12,
  .buyer-checkout-address [data-checkout-target="map"] .w-12 {
    width: 38px !important;
    height: 38px !important;
  }

  .buyer-checkout-primary > section:not(.buyer-checkout-contact):not(.buyer-checkout-address) {
    margin-top: 5px !important;
    padding-top: 5px !important;
  }

  .buyer-checkout-primary > section:not(.buyer-checkout-contact):not(.buyer-checkout-address) button {
    min-height: 34px;
    padding: 5px 7px !important;
  }
}

/* Precise delivery-point selection must remain usable on both a phone and a
   desktop. The inline map is intentionally large; the expanded state gives
   the customer the whole screen without changing checkout data. */
.buyer-map-expand {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 1100 !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  display: grid !important;
  place-items: center;
  border: 2px solid #e2e8f0 !important;
  border-radius: 9999px !important;
  padding: 0 !important;
  background: #fff !important;
  color: #0f172a !important;
  font-size: 1rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .22) !important;
}

.buyer-location-map.is-expanded {
  position: fixed !important;
  inset: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left)) !important;
  z-index: 10000 !important;
  display: flex !important;
  flex-direction: column;
  margin: 0 !important;
  padding: 12px !important;
  border-radius: 20px !important;
  border-color: #f59e0b !important;
  background: #fff !important;
  box-shadow: 0 0 0 9999px rgba(2, 6, 23, .78), 0 24px 80px rgba(2, 6, 23, .45) !important;
}

.buyer-location-map.is-expanded > .relative {
  min-height: 0;
  flex: 1 1 auto;
}

.buyer-location-map.is-expanded .h-72 {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
}

@media (max-width: 767px) {
  .buyer-checkout-address .h-72 {
    height: 360px !important;
    min-height: 360px !important;
  }

  .buyer-location-map.is-expanded {
    inset: max(5px, env(safe-area-inset-top)) max(5px, env(safe-area-inset-right)) max(5px, env(safe-area-inset-bottom)) max(5px, env(safe-area-inset-left)) !important;
    padding: 8px !important;
    border-radius: 16px !important;
  }
}

/* Keep the exit control above the sticky site header. It must never disappear
   when the map is expanded, especially on a phone held in landscape mode. */
.buyer-location-map.is-expanded .buyer-map-expand {
  position: fixed !important;
  top: max(70px, calc(env(safe-area-inset-top) + 62px)) !important;
  right: max(18px, calc(env(safe-area-inset-right) + 12px)) !important;
  z-index: 2147483647 !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  padding: 0 !important;
  border: 2px solid rgba(255, 255, 255, .92) !important;
  border-radius: 13px !important;
  background: #020617 !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .45) !important;
}


@media (min-width: 1440px) {
  .buyer-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1100px) and (max-width: 1439px) {
  .buyer-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .buyer-app *,
  .buyer-app *::before,
  .buyer-app *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Checkout fields v27.
   Keep labels and values visually distinct and avoid the spreadsheet-like
   joined fields from the earlier compact experiment. */
.buyer-checkout-contact > .mt-4 {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.buyer-checkout-contact .buyer-compact-field,
.buyer-checkout-contact .buyer-compact-field + .buyer-compact-field {
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.buyer-checkout-contact .buyer-compact-field > span:first-child,
.buyer-address-grid label > span:first-child {
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 6px !important;
  padding: 0 2px !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  color: var(--buyer-text-secondary) !important;
  font-size: .68rem !important;
  font-weight: 760 !important;
  letter-spacing: .045em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.buyer-field-caption {
  display: none !important;
}

.buyer-checkout-contact .buyer-field-with-icon > i {
  left: 14px !important;
  color: color-mix(in srgb, var(--buyer-text-secondary) 88%, var(--buyer-text)) !important;
}

.buyer-checkout-contact .buyer-field-with-icon > input,
.buyer-address-grid label > input {
  min-height: 48px !important;
  padding: 10px 13px !important;
  border: 1px solid var(--buyer-separator-strong) !important;
  border-radius: 13px !important;
  background: var(--buyer-surface-raised) !important;
  color: var(--buyer-text) !important;
  font-size: .94rem !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 5%, transparent) !important;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease !important;
}

.buyer-checkout-contact .buyer-field-with-icon > input {
  padding-left: 42px !important;
}

.buyer-checkout-contact .buyer-field-with-icon > input:hover,
.buyer-address-grid label > input:hover {
  border-color: color-mix(in srgb, var(--buyer-separator-strong) 70%, var(--buyer-text)) !important;
}

.buyer-checkout-contact .buyer-field-with-icon > input:focus,
.buyer-address-grid label > input:focus {
  border-color: var(--buyer-accent) !important;
  background: var(--buyer-surface) !important;
  outline: 0 !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--buyer-accent) 22%, transparent) !important;
}

.buyer-checkout-contact .buyer-compact-field:focus-within,
.buyer-address-grid > *:focus-within {
  background: transparent !important;
  box-shadow: none !important;
}

.buyer-address-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 92px 100px !important;
  gap: 10px !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.buyer-address-grid > *,
.buyer-address-grid > * + * {
  min-width: 0;
  padding: 0 !important;
  border: 0 !important;
}

.buyer-checkout-form input::placeholder,
.buyer-checkout-form textarea::placeholder {
  color: color-mix(in srgb, var(--buyer-text-secondary) 76%, transparent) !important;
  font-weight: 500 !important;
  opacity: 1 !important;
}

.buyer-dark .buyer-checkout-contact .buyer-field-with-icon > input,
.buyer-dark .buyer-address-grid label > input {
  border-color: #3a3a3f !important;
  background: #1c1c1f !important;
}

.buyer-app:not(.buyer-dark) .buyer-checkout-contact .buyer-field-with-icon > input,
.buyer-app:not(.buyer-dark) .buyer-address-grid label > input {
  border-color: #c8c8ce !important;
  background: #f5f5f7 !important;
}

@media (max-width: 639px) {
  .buyer-checkout-contact > .mt-4 {
    grid-template-columns: 1fr !important;
  }

  .buyer-address-grid {
    grid-template-columns: minmax(0, 1fr) 88px 88px !important;
    gap: 8px !important;
  }

  .buyer-checkout-contact .buyer-compact-field > span:first-child,
  .buyer-address-grid label > span:first-child {
    margin-bottom: 5px !important;
  }
}

@media (max-width: 390px) {
  .buyer-address-grid {
    grid-template-columns: minmax(0, 1fr) repeat(2, 72px) !important;
  }
}

/* Checkout fields v28: one piece of guidance at a time. Empty fields show
   only a placeholder; the compact label appears only while editing or after
   a value was entered. */
.buyer-checkout-contact .buyer-compact-field,
.buyer-address-grid label {
  position: relative !important;
}

.buyer-checkout-contact .buyer-compact-field > span:first-child,
.buyer-address-grid label > span:first-child {
  position: absolute !important;
  z-index: 2;
  top: 7px !important;
  left: 13px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(2px);
  transition: opacity 120ms ease, transform 120ms ease;
}

.buyer-checkout-contact .buyer-compact-field > span:first-child {
  left: 42px !important;
}

.buyer-checkout-contact .buyer-compact-field:focus-within > span:first-child,
.buyer-checkout-contact .buyer-compact-field:has(input:not(:placeholder-shown)) > span:first-child,
.buyer-address-grid label:focus-within > span:first-child,
.buyer-address-grid label:has(input:not(:placeholder-shown)) > span:first-child {
  opacity: 1;
  transform: none;
}

.buyer-checkout-contact .buyer-field-with-icon > input,
.buyer-address-grid label > input {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}

.buyer-checkout-contact .buyer-compact-field:focus-within .buyer-field-with-icon > input,
.buyer-checkout-contact .buyer-compact-field:has(input:not(:placeholder-shown)) .buyer-field-with-icon > input,
.buyer-address-grid label:focus-within > input,
.buyer-address-grid label:has(input:not(:placeholder-shown)) > input {
  padding-top: 20px !important;
  padding-bottom: 5px !important;
}

.buyer-address-suggestions {
  width: min(420px, calc(100vw - 48px));
  max-height: 184px;
  border-color: var(--buyer-separator-strong) !important;
  border-radius: 13px !important;
  background: var(--buyer-surface) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24) !important;
}

.buyer-address-suggestions button {
  min-height: 42px;
  color: var(--buyer-text) !important;
  background: transparent !important;
  border-color: var(--buyer-separator) !important;
  line-height: 1.25;
}

.buyer-address-suggestions button:hover,
.buyer-address-suggestions button:focus-visible {
  background: color-mix(in srgb, var(--buyer-accent) 12%, var(--buyer-surface)) !important;
}

@media (max-width: 639px) {
  .buyer-address-suggestions {
    width: calc(100vw - 56px);
    max-height: 156px;
  }
}
.osm-house-number-label {
  background: transparent;
  border: 0;
  pointer-events: none;
}

.osm-house-number-label span {
  display: inline-flex;
  min-width: 22px;
  height: 18px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1px solid rgba(15, 23, 42, 0.5);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
  color: #111827;
  font: 800 11px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: nowrap;
}

.buyer-app .buyer-category-navigation {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  background: var(--buyer-canvas);
}

.buyer-category-track {
  display: flex;
  gap: 8px;
  min-width: 0;
  flex: 1;
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

.buyer-category-track > button { flex-shrink: 0; white-space: nowrap; }

.buyer-app .buyer-category-navigation .buyer-category-arrow {
  flex: 0 0 36px;
  width: 36px;
  min-height: 44px;
  padding: 0 !important;
  border-radius: 10px !important;
  color: var(--buyer-text) !important;
  font-size: 28px;
  line-height: 1;
}

.buyer-category-arrow:disabled { visibility: hidden; pointer-events: none; }

.buyer-app .buyer-description-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.buyer-description-chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.buyer-description-toggle[aria-expanded="true"] .buyer-description-chevron {
  transform: translateY(1px) rotate(225deg);
}

/* Photo cards share the row height, including when a description expands. */
.buyer-app .buyer-product-grid:not(.buyer-product-list) > .buyer-product-card {
  align-self: stretch;
}

.buyer-app .buyer-product-grid:not(.buyer-product-list) > .buyer-product-card > div:last-child {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.buyer-app .buyer-product-grid:not(.buyer-product-list) > .buyer-product-card > div:last-child > div:last-child {
  margin-top: auto;
  padding-top: 12px;
}

/* Store-owned presentation only: the same product sequence and cart controls. */
.buyer-app .buyer-product-grid.buyer-product-list {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
}

.buyer-app .buyer-product-grid.buyer-product-list .buyer-product-card {
  border: 0 !important;
  border-bottom: 1px solid var(--buyer-separator) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  min-width: 0;
}

.buyer-app .buyer-product-list .buyer-product-card > div:last-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  column-gap: 20px;
  align-content: center;
  padding: 14px 0 !important;
  background: transparent !important;
}

.buyer-app .buyer-product-list .buyer-product-card > div:last-child > :not(:last-child) {
  grid-column: 1;
  min-width: 0;
}

.buyer-app .buyer-product-list .buyer-product-card h2 {
  min-height: 0;
  grid-row: 1;
  margin: 0;
  align-self: end;
  overflow-wrap: anywhere;
}

.buyer-app .buyer-product-list .buyer-product-card > div:last-child > div:first-child {
  grid-row: 2;
  justify-content: flex-start;
  margin-top: 4px;
}

.buyer-app .buyer-product-list .buyer-product-card > div:last-child > div:first-child > .text-emerald-700 {
  color: var(--buyer-text-secondary) !important;
  font-weight: 500;
}

.buyer-app .buyer-product-list .buyer-product-card > div:last-child > .mt-2 {
  grid-row: 3;
  grid-column: 1 / -1;
  margin-top: 6px;
}

.buyer-app .buyer-product-list .buyer-product-card > div:last-child > div:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 0;
}

.buyer-app .buyer-product-list .buyer-product-card > div:last-child > div:last-child > span:first-child {
  min-width: 5ch;
  text-align: right;
}

/* Keep scrolled rows behind an opaque category strip in list mode only. */
.buyer-app .buyer-categories:has(+ .buyer-product-list) {
  background: var(--buyer-canvas);
}

.buyer-app .buyer-product-list .buyer-product-card .w-10,
.buyer-app .buyer-product-list .buyer-product-card .h-10 {
  min-width: 44px;
  min-height: 44px;
}

.buyer-app .buyer-product-list .buyer-product-card .inline-flex button {
  min-width: 36px;
  min-height: 44px;
}

.buyer-app .buyer-product-list .buyer-product-card .inline-flex {
  background: var(--buyer-surface-raised) !important;
  border-color: var(--buyer-separator-strong) !important;
}

.buyer-app .buyer-product-list .buyer-product-card .inline-flex > span,
.buyer-app .buyer-product-list .buyer-product-card .inline-flex > button:not(.bg-amber-400) {
  color: var(--buyer-text) !important;
  background: transparent !important;
}

@media (max-width: 479px) {
  .buyer-app .buyer-product-list .buyer-product-card > div:last-child {
    column-gap: 12px;
    padding: 12px 0 !important;
  }

  .buyer-app .buyer-product-list .buyer-product-card > div:last-child > div:last-child {
    gap: 10px;
  }
}
