:root {
  --ink: #24251f;
  --ink-soft: #505147;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #e5e0d4;
  --mist: #f1eee6;
  --clay: #bd6f53;
  --lime: #dce77f;
  --sage: #7e8f78;
  --blue: #6d8ea0;
  --whatsapp: #128c4a;
  --danger: #a94a37;
  --radius: 18px;
  --shadow: 0 16px 46px rgba(36, 37, 31, 0.12);
  --tap: 48px;
  --header: 62px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 0, rgba(220, 231, 127, 0.18), transparent 34rem),
    linear-gradient(180deg, #fbfaf6 0%, #f4f0e7 100%);
  font-size: 16px;
  letter-spacing: 0;
  min-height: 100vh;
}

body.sheet-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--mist);
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
}

.skip-link:focus { top: 10px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  background: rgba(251, 250, 246, 0.86);
  border-bottom: 1px solid rgba(229, 224, 212, 0.82);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 17px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-actions > a,
.query-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 11px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}

.query-pill {
  gap: 7px;
  background: var(--ink);
  color: white;
}

.query-pill strong {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
}

main {
  padding-bottom: 116px;
}

.page {
  animation: show 260ms ease both;
}

.home-hero {
  padding: 10px 10px 6px;
}

.hero-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 8px;
  min-height: 214px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  border-radius: 23px;
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.hero-copy p {
  margin: 0;
}

.hero-copy .tiny {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin: 12px 0 10px;
  max-width: 10ch;
  font-size: clamp(31px, 10vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(27px, 8vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.12;
}

p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  width: fit-content;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 850;
}

.hero-stack {
  display: grid;
  gap: 10px;
}

.hero-tile {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 21px;
  background: var(--mist);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.hero-tile:first-child {
  min-height: 124px;
}

.hero-tile:not(:first-child) {
  min-height: 92px;
}

.hero-tile span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 800;
}

.quick-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 8px 10px 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--line);
  border: 1px solid var(--line);
}

.anchor-nav {
  position: sticky;
  top: var(--header);
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px 10px;
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(229, 224, 212, 0.72);
  backdrop-filter: blur(16px);
}

.anchor-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.quick-trust div {
  min-height: 58px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.68);
}

.quick-trust strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.quick-trust span {
  display: block;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.25;
}

.section {
  padding: 22px 10px 4px;
}

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

.section-head p {
  margin-bottom: 0;
  font-size: 14px;
}

.kicker {
  margin-bottom: 5px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link {
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.product-card {
  display: grid;
  align-content: start;
  gap: 8px;
}

.product-card .media {
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  border-radius: 14px;
  background: var(--mist);
}

.product-card.compact .media {
  aspect-ratio: 1 / 1.08;
  border-radius: 17px;
}

.product-card.wide {
  grid-column: 1 / -1;
}

.product-card.wide .media {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
}

.product-card .media img {
  transition: transform 260ms ease, opacity 180ms ease;
}

.product-card:active .media img {
  transform: scale(0.985);
}

.status-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(36, 37, 31, 0.10);
}

.status-badge.soon,
.status-badge.out {
  background: rgba(36, 37, 31, 0.84);
  color: white;
}

.card-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: start;
}

.card-body h3 {
  margin-bottom: 2px;
  font-size: 14px;
}

.card-body p {
  margin: 0;
  font-size: 12px;
}

.card-body small {
  display: block;
  margin-top: 4px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
}

.price {
  white-space: nowrap;
  color: var(--ink);
  font-size: 16px;
  font-weight: 930;
}

.quick-buy {
  display: grid;
  gap: 7px;
}

.mini-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.mini-variants button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.mini-variants button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.quick-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
}

.mini-qty {
  display: inline-flex;
  align-items: center;
  height: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.mini-qty button {
  width: 32px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mini-qty span {
  min-width: 22px;
  text-align: center;
  font-weight: 900;
}

.quick-add {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.quick-add[disabled] {
  background: #d2ccbf;
  color: #746f65;
  cursor: not-allowed;
}

.product-mosaic,
.compact-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 10px;
}

.compact-grid {
  gap: 12px 10px;
}

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

.category-card {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(36, 37, 31, 0.06);
}

.category-card strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.category-card span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.category-card small {
  font-weight: 900;
  color: var(--clay);
}

.catalog-tools {
  position: sticky;
  top: var(--header);
  z-index: 10;
  display: grid;
  gap: 10px;
  padding: 8px 10px 10px;
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(229, 224, 212, 0.72);
  backdrop-filter: blur(16px);
}

.search-box {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.chips::-webkit-scrollbar { display: none; }

.chip {
  min-height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: white;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.chip.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 10px;
  padding: 14px 10px 34px;
}

.catalog-grid .product-card .media {
  border-radius: 23px;
}

.catalog-grid .card-body {
  grid-template-columns: 1fr;
}

.catalog-grid .price {
  font-size: 15px;
}

.product-view {
  padding: 10px 14px 36px;
}

.back-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.main-photo {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  border-radius: 30px;
  background: var(--mist);
}

.thumb-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 72px;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 3px;
  scrollbar-width: none;
}

.thumb-row::-webkit-scrollbar { display: none; }

.thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 17px;
  background: var(--mist);
  cursor: pointer;
}

.thumb.active {
  border-color: var(--ink);
}

.product-info {
  padding: 18px 0 0;
}

.product-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.product-info h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(34px, 11vw, 56px);
}

.share-button,
.round-button {
  width: var(--tap);
  height: var(--tap);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.share-button {
  font-size: 20px;
}

.product-price {
  margin: 14px 0 6px;
  font-size: 28px;
  font-weight: 940;
  letter-spacing: -0.02em;
}

.product-copy {
  margin-bottom: 18px;
}

.option-group {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.option-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.variant-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.variant-button {
  min-height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: white;
  font-weight: 820;
  cursor: pointer;
}

.variant-button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.primary-action {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 19px;
  background: var(--ink);
  color: white;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.primary-action[disabled] {
  background: #d2ccbf;
  color: #746f65;
  box-shadow: none;
  cursor: not-allowed;
}

.details-stack {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.detail-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.detail-card strong {
  display: block;
  margin-bottom: 7px;
}

.detail-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.how-to {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: var(--line);
}

.how-step {
  padding: 16px;
  background: white;
}

.how-step span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 9px;
  border-radius: 50%;
  background: var(--lime);
  font-size: 12px;
  font-weight: 930;
}

.bottom-query {
  position: fixed;
  z-index: 18;
  left: 14px;
  right: 14px;
  bottom: calc(12px + var(--safe-bottom));
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 10px 15px;
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 48px rgba(36, 37, 31, 0.28);
  cursor: pointer;
}

.bottom-query span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.bottom-query strong {
  font-size: 14px;
}

.query-sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-items: end;
  background: rgba(36, 37, 31, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.query-sheet.open {
  opacity: 1;
  pointer-events: auto;
}

.sheet-panel {
  max-height: calc(100vh - 28px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: 30px 30px 0 0;
  background: var(--paper);
  transform: translateY(105%);
  transition: transform 230ms ease;
}

.query-sheet.open .sheet-panel {
  transform: translateY(0);
}

.sheet-grip {
  width: 44px;
  height: 5px;
  margin: 10px auto 4px;
  border-radius: 999px;
  background: #d8d0c2;
}

.sheet-head,
.sheet-foot {
  padding: 14px;
}

.sheet-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.sheet-head h2 {
  margin-bottom: 0;
  font-size: 27px;
}

.sheet-body {
  overflow: auto;
  padding: 12px 14px;
}

.query-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

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

.query-item figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  background: var(--mist);
}

.query-item h3 {
  margin: 0 0 2px;
  font-size: 15px;
}

.query-item p {
  margin: 0;
  font-size: 12px;
}

.query-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 9px;
}

.qty {
  display: inline-flex;
  align-items: center;
  height: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.qty button {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.qty span {
  min-width: 28px;
  text-align: center;
  font-weight: 830;
}

.remove-button {
  border: 0;
  background: transparent;
  color: var(--danger);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.sheet-foot {
  display: grid;
  gap: 11px;
  border-top: 1px solid var(--line);
  padding-bottom: calc(14px + var(--safe-bottom));
}

.name-field {
  display: grid;
  gap: 6px;
}

.name-field span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
}

.name-field em {
  font-style: normal;
  color: #888276;
  font-weight: 650;
}

.name-field input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 13px;
  background: white;
  outline: 0;
}

.estimated-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
}

.estimated-row strong {
  font-size: 20px;
}

.whatsapp-action {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--whatsapp);
  color: white;
  font-weight: 920;
  text-align: center;
}

.fine-print {
  margin: 0;
  font-size: 12px;
}

.empty-state {
  padding: 34px 10px;
  text-align: center;
}

.empty-state .primary-action {
  display: inline-flex;
  width: auto;
  align-items: center;
  padding: 0 18px;
}

.admin-page {
  padding: 16px 14px 80px;
}

.admin-login,
.admin-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: white;
}

.admin-login {
  display: grid;
  gap: 12px;
}

.admin-login input,
.admin-card input,
.admin-card textarea,
.admin-card select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 9px 12px;
  background: var(--paper);
}

.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.admin-product {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.admin-product figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 15px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.small-button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 830;
  cursor: pointer;
}

.toast {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(82px + var(--safe-bottom));
  z-index: 80;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--ink);
  color: white;
  font-weight: 830;
  box-shadow: var(--shadow);
  animation: toast 1900ms ease both;
}

.site-footer {
  padding: 28px 14px calc(34px + var(--safe-bottom));
  border-top: 1px solid var(--line);
}

.site-footer strong {
  letter-spacing: 0.12em;
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
  font-size: 13px;
}

@keyframes show {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toast {
  0% { opacity: 0; transform: translateY(8px); }
  12%, 84% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}

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

@media (min-width: 720px) {
  .topbar {
    padding-inline: clamp(22px, 5vw, 70px);
  }

  .home-hero,
  .section,
  .catalog-tools,
  .catalog-grid,
  .product-view,
  .admin-page,
  .site-footer {
    padding-left: clamp(22px, 4vw, 58px);
    padding-right: clamp(22px, 4vw, 58px);
  }

  .hero-board {
    grid-template-columns: minmax(0, 1fr) 42%;
    min-height: 380px;
  }

  .hero-stack {
    grid-template-columns: 1fr 1fr;
  }

  .hero-tile:first-child {
    grid-row: span 2;
  }

  .quick-trust {
    margin-left: clamp(22px, 5vw, 70px);
    margin-right: clamp(22px, 5vw, 70px);
  }

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

  .product-card.wide {
    grid-column: span 2;
  }

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

  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .product-view {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 38px;
    align-items: start;
  }

  .back-link {
    grid-column: 1 / -1;
  }

  .product-info {
    position: sticky;
    top: calc(var(--header) + 18px);
    padding-top: 0;
  }

  .sheet-panel {
    width: min(520px, calc(100% - 28px));
    justify-self: center;
    margin-bottom: 14px;
    border-radius: 30px;
  }

  .bottom-query {
    left: 50%;
    right: auto;
    width: min(520px, calc(100% - 28px));
    transform: translateX(-50%);
  }
}

@media (min-width: 1120px) {
  .hero-board {
    max-width: 1280px;
    margin: 0 auto;
  }

  .quick-trust,
  .section,
  .catalog-tools,
  .catalog-grid,
  .product-view,
  .admin-page,
  .site-footer {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }

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