:root {
  color-scheme: dark;
  --background: #0a0d12;
  --surface: #111620;
  --surface-raised: #171d28;
  --text: #f4f6f8;
  --muted: #97a2b3;
  --gold: #d8ae5b;
  --gold-light: #f0c975;
  --green: #53d18b;
  --red: #ff7b7b;
  --line: rgba(255, 255, 255, 0.09);
  --radius: 18px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 280px;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 174, 91, 0.13), transparent 28rem),
    var(--background);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select { font: inherit; }

select { color-scheme: dark; }

select option,
select optgroup {
  color: var(--text);
  background: #0b0f15;
}

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

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #17110a;
  background: var(--gold-light);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 13, 18, 0.88);
  backdrop-filter: blur(14px);
}

.header-inner,
.hero,
.catalog,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand span,
.brand strong,
.brand small { display: block; }

.brand strong {
  font-size: 17px;
  letter-spacing: 0.14em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.header-nav a {
  padding: 10px 2px;
  color: var(--text);
  text-decoration: none;
}

.header-cart {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(216, 174, 91, 0.35);
  border-radius: 12px;
  color: var(--gold-light);
  background: rgba(216, 174, 91, 0.08);
  font-weight: 800;
  cursor: pointer;
}

.header-cart span,
.floating-cart span { display: inline-grid; min-width: 22px; min-height: 22px; place-items: center; margin-left: 5px; border-radius: 99px; color: #17110a; background: var(--gold-light); font-size: 11px; }

.stage-note {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
}

.hero {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: center;
  gap: 52px;
  padding-block: 64px 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
}

.hero-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-top: 28px;
  padding: 0 20px;
  border-radius: 13px;
  color: #191209;
  background: linear-gradient(135deg, var(--gold-light), #b88637);
  font-weight: 800;
  text-decoration: none;
}

.hero-info {
  width: min(360px, 100%);
  justify-self: center;
  border-block: 1px solid var(--line);
}

.hero-info-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.hero-info-row:last-child { border-bottom: 0; }

.hero-info-row svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid rgba(216, 174, 91, 0.22);
  border-radius: 11px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(216, 174, 91, 0.07);
}

.hero-info-row span,
.hero-info-row strong,
.hero-info-row small { display: block; }

.hero-info-row strong { font-size: 14px; }

.hero-info-row small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.offers,
.catalog { padding-block: 42px 80px; }

.offers { width: min(1180px, calc(100% - 32px)); margin-inline: auto; padding-bottom: 22px; }

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
}

.result-count {
  min-height: 20px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.filters {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(210px, 0.45fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 22, 32, 0.82);
}

.search-field,
.select-field {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--background);
}

.search-field svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-field input,
.select-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.select-field select { cursor: pointer; }

.stock-filter {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 8px;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}

.stock-filter input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.stock-filter span {
  width: 42px;
  height: 24px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #242b37;
}

.stock-filter span::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  background: var(--text);
  transition: transform 150ms ease;
}

.stock-filter input:checked + span { background: #28794f; }
.stock-filter input:checked + span::after { transform: translateX(18px); }
.stock-filter input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 3px; }

.catalog-status {
  min-height: 24px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.catalog-status.error { color: #ff9c9c; }

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

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(28, 34, 47, 0.94), rgba(15, 20, 29, 0.97));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0d1118;
}

.product-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-image { transform: scale(1.025); }

.availability {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 9px;
  border: 1px solid rgba(83, 209, 139, 0.28);
  border-radius: 999px;
  color: #7ee6ab;
  background: rgba(10, 18, 15, 0.86);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.availability.out {
  border-color: rgba(255, 123, 123, 0.3);
  color: #ff9a9a;
  background: rgba(28, 12, 15, 0.88);
}

.product-content { padding: 15px; }

.product-category {
  margin: 0 0 7px;
  overflow: hidden;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-name {
  min-height: 44px;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-presentation {
  min-height: 18px;
  margin: 7px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-presentation[hidden] { display: block; visibility: hidden; }

.product-price {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 850;
}

.price-block { min-height: 55px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 5px 9px; margin-top: 13px; }
.price-block s { color: var(--muted); font-size: 13px; }
.price-block strong { color: var(--text); font-size: 20px; font-weight: 850; }
.price-block span { flex-basis: 100%; color: var(--gold-light); font-size: 10px; font-weight: 750; }
.add-cart-button { width: 100%; min-height: 41px; margin-top: 10px; border: 1px solid rgba(216,174,91,.35); border-radius: 11px; color: #1b140b; background: linear-gradient(135deg,var(--gold-light),#bd8d3d); font-weight: 850; cursor: pointer; }
.add-cart-button:disabled { cursor: not-allowed; opacity: .45; filter: grayscale(.35); }

.offer-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.offer-card { min-width: 0; overflow: hidden; border: 1px solid rgba(216,174,91,.18); border-radius: var(--radius); background: linear-gradient(150deg,rgba(40,31,19,.92),rgba(17,22,32,.98)); box-shadow: var(--shadow); }
.offer-image { width: 100%; aspect-ratio: 16/9; display: block; object-fit: contain; background: #fff; }
.offer-content { display: grid; gap: 9px; padding: 17px; }
.offer-content h3,.offer-content p { margin: 0; }
.offer-content h3 { font-size: 19px; }
.offer-description { min-height: 36px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.offer-components { color: #d5dbe4; font-size: 11px; line-height: 1.5; }
.offer-price { color: var(--gold-light); font-size: 23px; }

.new-products-dialog {
  width: min(880px, calc(100% - 32px));
  max-height: min(720px, calc(100dvh - 32px));
  overflow: auto;
  padding: 0;
  border: 1px solid rgba(216, 174, 91, 0.42);
  border-radius: 24px;
  color: var(--text);
  background: #0f141d;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.68);
  overscroll-behavior: contain;
}

.new-products-dialog[open] { animation: new-product-enter 180ms ease-out; }
.new-products-dialog::backdrop { background: rgba(2, 4, 8, 0.82); backdrop-filter: blur(6px); }
.new-products-shell { position: relative; min-width: 0; }
.new-product-slide { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr); min-height: 470px; }
.new-product-image { min-width: 0; display: grid; place-items: center; overflow: hidden; padding: 0; background: #0a0e15; }
.new-product-image img { width: 100%; height: 100%; max-height: none; display: block; object-fit: cover; object-position: center; }
.new-product-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 56px 58px 44px; background: linear-gradient(145deg, rgba(31, 37, 50, .97), rgba(15, 20, 29, .99)); }
.new-product-copy h2 { margin: 0; overflow-wrap: anywhere; font-size: clamp(30px, 4.5vw, 48px); line-height: 1.02; letter-spacing: -.035em; }
.new-product-presentation { min-height: 24px; margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.new-product-copy .price-block { min-height: 64px; margin-top: 22px; }
.new-product-copy .price-block strong { font-size: 30px; }
.new-product-copy .price-block s { font-size: 15px; }
.new-product-add { width: 100%; min-height: 48px; margin-top: 12px; border: 0; border-radius: 13px; color: #1a1309; background: linear-gradient(135deg, var(--gold-light), #bd8d3d); font-weight: 900; cursor: pointer; }
.new-product-browse { align-self: center; min-height: 42px; margin-top: 8px; padding: 0 12px; border: 0; color: #c4ccda; background: transparent; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.new-products-close,.new-products-arrow { position: absolute; z-index: 4; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255, 255, 255, .13); color: var(--text); box-shadow: 0 8px 24px rgba(0, 0, 0, .3); cursor: pointer; }
.new-products-close { width: 42px; height: 42px; top: 16px; right: 16px; border-color: rgba(255, 255, 255, .16); border-radius: 13px; background: rgba(10, 14, 21, .56); backdrop-filter: blur(5px); }
.new-products-arrow { width: 42px; height: 42px; top: calc(50% - 40px); border-color: rgba(255, 255, 255, .16); border-radius: 13px; background: rgba(10, 14, 21, .56); backdrop-filter: blur(5px); }
.new-products-close svg { display: block; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; pointer-events: none; }
.new-products-arrow svg { display: block; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.new-products-arrow.previous { left: 14px; }
.new-products-arrow.next { right: 14px; }
.new-products-arrow[hidden],.new-products-pagination[hidden] { display: none; }
.new-products-pagination { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 12px 22px; border-top: 1px solid var(--line); background: #0d121a; }
.new-products-pagination>span { color: var(--muted); font-size: 11px; }
.new-products-dots { display: flex; align-items: center; gap: 8px; }
.new-products-dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: #566071; cursor: pointer; }
.new-products-dot.current { width: 24px; border-radius: 999px; background: var(--gold-light); }

@keyframes new-product-enter {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.floating-cart { position: fixed; z-index: 90; right: 18px; bottom: 18px; min-height: 50px; padding: 0 17px; border: 1px solid rgba(216,174,91,.4); border-radius: 16px; color: var(--text); background: #18130d; box-shadow: 0 15px 40px rgba(0,0,0,.45); font-weight: 850; cursor: pointer; }
.cart-dialog { width: min(1040px,calc(100% - 28px)); max-height: calc(100vh - 30px); padding: 0; border: 1px solid var(--line); border-radius: 22px; color: var(--text); background: var(--surface); box-shadow: var(--shadow); }
.cart-dialog::backdrop { background: rgba(2,4,8,.8); backdrop-filter: blur(4px); }
.cart-header { position: sticky; z-index: 3; top: 0; display: flex; align-items: center; justify-content: space-between; padding: 19px 21px; border-bottom: 1px solid var(--line); background: rgba(17,22,32,.97); }
.cart-header h2 { margin: 0; font-size: 28px; }
.cart-close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 12px; color: var(--text); background: #0b0f15; font-size: 25px; cursor: pointer; }
.cart-layout { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(330px,.9fr); }
.cart-layout>section { padding: 21px; }
.cart-layout>section:first-child { border-right: 1px solid var(--line); }
.cart-layout h3 { margin: 0 0 15px; }
.cart-items { display: grid; gap: 9px; }
.cart-item { display: grid; grid-template-columns: minmax(0,1fr) auto auto; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 13px; background: #0b0f15; }
.cart-item strong,.cart-item small { display: block; }
.cart-item small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.cart-quantity { display: flex; align-items: center; gap: 7px; }
.cart-quantity button { width: 31px; height: 31px; border: 1px solid var(--line); border-radius: 9px; color: var(--text); background: var(--surface-raised); cursor: pointer; }
.cart-quantity button:disabled { cursor: not-allowed; opacity: .45; }
.cart-quantity span { min-width: 20px; text-align: center; }
.cart-empty { padding: 35px 15px; border: 1px dashed rgba(216,174,91,.25); border-radius: 14px; color: var(--muted); text-align: center; }
.cart-customer { display: grid; align-content: start; gap: 13px; }
.cart-customer>label { display: grid; gap: 6px; color: #d4d9e1; font-size: 12px; font-weight: 700; }
.cart-customer input,.cart-customer select,.cart-customer textarea { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 11px; outline: 0; color: var(--text); background: #0b0f15; }
.cart-choice { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 15px; padding: 11px; border: 1px solid var(--line); border-radius: 11px; }
.cart-choice>span { margin-right: auto; color: var(--muted); font-size: 11px; }
.cart-choice label { font-size: 12px; }
.cart-choice input { width: auto; min-height: auto; }
.cart-totals { display: grid; gap: 8px; margin-top: 4px; padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: #0b0f15; }
.cart-totals p { display: flex; justify-content: space-between; gap: 15px; margin: 0; font-size: 12px; }
.cart-totals span { color: var(--muted); }
.cart-totals .cart-total { padding-top: 9px; border-top: 1px solid var(--line); font-size: 16px; }
.whatsapp-button { min-height: 48px; border: 0; border-radius: 12px; color: #07170e; background: #53d18b; font-weight: 900; cursor: pointer; }
.whatsapp-button:disabled { cursor: not-allowed; opacity: .45; }
.cart-disclaimer { color: var(--muted); font-size: 10px; line-height: 1.5; }

.product-skeleton {
  height: 370px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(100deg, var(--surface) 25%, var(--surface-raised) 45%, var(--surface) 65%);
  background-size: 220% 100%;
  animation: loading 1.3s linear infinite;
}

@keyframes loading { to { background-position-x: -220%; } }

.empty-state {
  grid-column: 1 / -1;
  padding: 48px 20px;
  border: 1px dashed rgba(216, 174, 91, 0.3);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.load-more {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(216, 174, 91, 0.35);
  border-radius: 13px;
  color: var(--gold-light);
  background: rgba(216, 174, 91, 0.07);
  font-weight: 800;
  cursor: pointer;
}

.load-more:hover { background: rgba(216, 174, 91, 0.13); }
.load-more:disabled { cursor: wait; opacity: 0.55; }

.site-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 28px 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img { object-fit: contain; }
.site-footer strong { color: var(--text); }
.site-footer p { margin: 3px 0 0; font-size: 12px; }

.noscript {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 200;
  padding: 14px;
  border-radius: 12px;
  color: #271710;
  background: #ffd4a5;
  text-align: center;
}

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

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr minmax(220px, 0.55fr); gap: 28px; }
  .hero-info-row { min-height: 82px; grid-template-columns: 34px minmax(0,1fr); gap: 10px; }
  .hero-info-row svg { width: 34px; height: 34px; padding: 7px; }
  .hero-info-row strong { font-size: 12px; }
  .hero-info-row small { font-size: 11px; }
  .filters { grid-template-columns: 1fr 1fr; }
  .stock-filter { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .offer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-layout>section:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .header-inner,
  .hero,
  .catalog,
  .offers,
  .site-footer { width: min(100% - 22px, 1180px); }
  .header-nav a { display: none; }
  .stage-note { font-size: 10px; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding-block: 46px 38px; }
  .hero-info { display: none; }
  .hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .catalog { padding-top: 32px; }
  .section-heading { display: block; }
  .result-count { margin-top: 9px; }
  .filters { grid-template-columns: 1fr; padding: 11px; }
  .stock-filter { grid-column: auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .offer-grid { grid-template-columns: 1fr; }
  .product-content { padding: 12px; }
  .product-name { min-height: 40px; font-size: 14px; }
  .product-price { font-size: 18px; }
  .availability { top: 7px; right: 7px; padding: 5px 7px; font-size: 10px; }
  .new-products-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); border-radius: 20px; }
  .new-product-slide { grid-template-columns: 1fr; min-height: 0; }
  .new-product-image { position: relative; height: min(38dvh, 270px); padding: 0; }
  .new-product-image img { position: absolute; inset: 0; width: 100%; height: 100%; max-height: 100%; object-fit: contain; }
  .new-product-copy { padding: 24px 24px 22px; }
  .new-product-copy h2 { padding-right: 24px; font-size: clamp(28px, 9vw, 40px); }
  .new-product-presentation { margin-top: 9px; }
  .new-product-copy .price-block { min-height: 54px; margin-top: 14px; }
  .new-product-copy .price-block strong { font-size: 25px; }
  .new-products-close { width: 40px; height: 40px; top: 11px; right: 11px; }
  .new-products-arrow { width: 40px; height: 40px; top: calc(min(38dvh, 270px) / 2 - 20px); }
  .new-products-arrow.previous { left: 9px; }
  .new-products-arrow.next { right: 9px; }
  .new-products-pagination { min-height: 52px; padding: 9px 16px; }
  .cart-layout>section { padding: 15px; }
  .cart-item { grid-template-columns: minmax(0,1fr) auto; }
  .cart-item>strong:last-child { grid-column: 1/-1; }
}

@media (max-width: 350px) {
  .stage-note { display: none; }
  .product-grid { grid-template-columns: 1fr; }
}

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