:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --surface-strong: #f0f1ec;
  --ink: #151515;
  --muted: #696a66;
  --line: #deded8;
  --red: #d92534;
  --red-dark: #a71926;
  --green: #2e6441;
  --gold: #c7a24a;
  --shadow: 0 18px 45px rgba(18, 18, 18, 0.11);
  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:
    linear-gradient(180deg, #ffffff 0, var(--bg) 360px),
    var(--bg);
}

body.is-locked {
  overflow: hidden;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 44px);
  border-bottom: 1px solid rgba(222, 222, 216, 0.86);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-symbol,
.brand-wordmark {
  display: block;
  flex: 0 0 auto;
  background-image: url("assets/logo-autentica-original.webp");
  background-repeat: no-repeat;
}

.brand-symbol {
  width: 58px;
  height: 58px;
  background-position: -88px -46px;
  background-size: 200px 200px;
}

.brand-wordmark {
  width: 184px;
  height: 54px;
  background-position: -16px -116px;
  background-size: 220px 220px;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.ghost-link,
.interest-button,
.whatsapp-all,
.secondary-button,
.primary-link,
.icon-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
}

.ghost-link,
.interest-button,
.whatsapp-all,
.secondary-button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  font-weight: 700;
  white-space: nowrap;
}

.interest-button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
}

main {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 18px clamp(16px, 4vw, 44px) 52px;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  padding: clamp(24px, 4vw, 42px) 0 24px;
}

.intro-copy {
  max-width: 790px;
}

.eyebrow,
.control-label {
  display: block;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.finder {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(18, 18, 18, 0.07);
}

.finder label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.search-row {
  display: flex;
  gap: 8px;
}

.search-row input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.search-row button {
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.quick-filters {
  position: sticky;
  top: 72px;
  z-index: 15;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 -4px 14px;
  padding: 4px 4px 10px;
  background: linear-gradient(180deg, rgba(247, 247, 244, 0.96), rgba(247, 247, 244, 0.76));
  backdrop-filter: blur(12px);
}

.quick-filters button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.quick-filters button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid rgba(222, 222, 216, 0.9);
  border-radius: 8px;
  background: var(--surface);
}

.controls > div {
  min-width: 0;
}

.chip-row,
.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  max-width: 100%;
  max-height: 124px;
  overflow: auto;
  padding-right: 2px;
}

.chip-row button,
.segmented button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.chip-row button.is-active,
.segmented button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.layout {
  display: block;
}

.summary-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.panel-section p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.metric-grid div {
  padding: 12px;
  border-radius: 8px;
  background: var(--surface-strong);
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  font-size: 26px;
}

.metric-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.catalog-preview a {
  overflow: hidden;
  aspect-ratio: 1.42;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

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

.product-area {
  min-width: 0;
}

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

.section-head h2 {
  margin: 5px 0 0;
  font-size: 32px;
  letter-spacing: 0;
}

.results-count {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.results-count strong {
  color: var(--ink);
}

.whatsapp-all,
.primary-link {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.whatsapp-all:hover,
.primary-link:hover {
  background: var(--red-dark);
}

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

.product-grid.is-loading {
  min-height: 450px;
}

.skeleton-card {
  min-height: 430px;
  border-color: rgba(222, 222, 216, 0.8);
  background:
    linear-gradient(100deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.72) 50%, rgba(255,255,255,0) 65%),
    linear-gradient(#ecece7 0 0) 16px 16px / calc(100% - 32px) 220px no-repeat,
    linear-gradient(#ecece7 0 0) 16px 262px / 42% 15px no-repeat,
    linear-gradient(#ecece7 0 0) 16px 296px / 78% 18px no-repeat,
    linear-gradient(#ecece7 0 0) 16px 332px / 62% 14px no-repeat,
    var(--surface);
  background-size: 220% 100%, calc(100% - 32px) 220px, 42% 15px, 78% 18px, 62% 14px, auto;
  animation: shimmer 1.1s linear infinite;
}

@keyframes shimmer {
  from { background-position: -180% 0, 16px 16px, 16px 262px, 16px 296px, 16px 332px, 0 0; }
  to { background-position: 180% 0, 16px 16px, 16px 262px, 16px 296px, 16px 332px, 0 0; }
}

.product-card {
  display: grid;
  grid-template-rows: 240px auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: #c7c7c0;
  box-shadow: 0 12px 30px rgba(18, 18, 18, 0.08);
  transform: translateY(-2px);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  padding: 14px;
  background: #f3f3f0;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.product-card.has-photo .product-media {
  padding: 12px;
  background: #f3f1f1;
}

.product-card.has-photo .product-media img {
  object-fit: contain;
  filter: none;
  transition: transform 220ms ease;
}

.product-card.has-photo:hover .product-media img {
  transform: scale(1.015);
}

.audience-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.audience-tags span {
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 14px;
}

.product-body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.product-meta,
.indication-line {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-radius: 8px;
  background: var(--surface-strong);
}

.product-meta span,
.indication-line span {
  color: var(--red-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta strong {
  font-size: 14px;
  line-height: 1.2;
}

.indication-line {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.quick-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.quick-tag-row span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-pill {
  width: fit-content;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f7e7e9;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.result-line {
  min-height: 42px;
  padding-left: 10px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.card-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.card-actions button,
.card-actions a {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.details-button {
  border: 1px solid var(--ink);
  background: var(--surface);
  color: var(--ink);
}

.buy-button {
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
}

.packshot-label {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 54%;
  gap: 3px;
  color: #202020;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.packshot-label strong {
  font-size: 13px;
  line-height: 1.05;
}

.packshot-label span {
  font-size: 7px;
  font-weight: 800;
}

.modal-packshot-label {
  top: 49%;
  width: 34%;
}

.modal-packshot-label strong {
  font-size: 17px;
}

.modal-packshot-label span {
  font-size: 9px;
}

.product-order-row,
.modal-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-order-row > span,
.modal-order-row > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 36px 42px 36px;
  align-items: center;
  width: 114px;
  height: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.quantity-stepper button,
.quantity-stepper output {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.quantity-stepper button {
  border: 0;
  background: var(--surface-strong);
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
}

.quantity-stepper output {
  font-size: 14px;
  font-weight: 900;
}

.quantity-stepper-small {
  grid-template-columns: 30px 34px 30px;
  width: 94px;
  height: 32px;
  margin-top: 8px;
}

.quantity-stepper-small button {
  font-size: 16px;
}

.empty-state {
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.catalog-noscript {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.catalog-noscript h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.catalog-noscript p {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.catalog-noscript ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-noscript a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.catalog-noscript a:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(12, 12, 12, 0.52);
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  width: min(920px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  padding: 0;
  font-weight: 900;
}

.modal-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 34px;
  background: linear-gradient(135deg, #f9f9f6, #eeeeea);
}

.modal-media img {
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.14));
}

.product-modal.has-photo .modal-media {
  padding: 18px;
  background: #ecece8;
}

.product-modal.has-photo .modal-media img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
  filter: none;
}

.modal-content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(22px, 4vw, 42px);
}

.modal-content h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
}

.modal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-list div {
  padding: 12px;
  border-radius: 8px;
  background: var(--surface-strong);
}

.detail-list dt {
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-complements {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.modal-complements > span {
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.complement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.complement-list button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.secondary-button {
  background: var(--surface);
}

.interest-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(520px, 100vw);
  height: 100vh;
  border-left: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.drawer-head,
.drawer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.drawer-scroll {
  overflow: auto;
  overscroll-behavior: contain;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.checkout-steps li {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-steps span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.drawer-section {
  padding: 14px 16px 0;
}

.drawer-section h3,
.form-heading h3 {
  margin: 4px 0 0;
  font-size: 18px;
}

.step-label {
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.interest-list {
  padding: 4px 0;
}

.interest-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.interest-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface-strong);
}

.interest-item strong,
.interest-item span {
  display: block;
}

.interest-item strong {
  font-size: 14px;
}

.interest-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.remove-interest {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--red);
  cursor: pointer;
  font-weight: 900;
}

.drawer-actions {
  position: sticky;
  bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.drawer-actions .primary-link,
.drawer-actions .secondary-button {
  flex: 1;
}

.qualification-form {
  display: grid;
  gap: 13px;
  padding: 18px 16px 0;
  border-top: 1px solid var(--line);
}

.form-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.qualification-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.qualification-form label > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.qualification-form label.is-required::after {
  content: "Obrigatório para este perfil";
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 700;
}

.qualification-form input,
.qualification-form select,
.qualification-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 500;
}

.qualification-form textarea {
  min-height: 86px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 10px;
}

.qualification-form .drawer-actions {
  margin: 4px -16px 0;
}

.primary-link:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(217, 37, 52, 0.35);
  outline-offset: 3px;
}

[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.45;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .catalog-intro,
  .product-modal {
    grid-template-columns: 1fr;
  }

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

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

  .modal-media {
    min-height: 300px;
  }

  .product-modal.has-photo .modal-media {
    min-height: 340px;
  }

  .product-modal.has-photo .modal-media img {
    height: 310px;
    max-height: 310px;
  }

  .modal-content {
    align-content: start;
  }

  h1 {
    font-size: 42px;
  }

  .section-head h2 {
    font-size: 32px;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    min-height: auto;
  }

  .top-actions {
    flex-wrap: wrap;
  }

  .ghost-link {
    display: none;
  }

  .catalog-intro {
    padding-top: 24px;
  }

  h1 {
    font-size: 38px;
    line-height: 1;
  }

  .search-row,
  .section-head,
  .modal-actions,
  .drawer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .controls {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-right: -8px;
    margin-left: -8px;
    padding: 10px 8px;
  }

  .quick-filters {
    top: 70px;
  }

  .chip-row,
  .segmented {
    flex-wrap: nowrap;
    max-height: none;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .chip-row button,
  .segmented button {
    flex: 0 0 auto;
  }

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

  .product-card {
    grid-template-rows: 250px auto;
  }

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

  .brand-symbol {
    width: 46px;
    height: 46px;
    background-position: -74px -39px;
    background-size: 168px 168px;
  }

  .brand-wordmark {
    width: 118px;
    height: 36px;
    background-position: -10px -76px;
    background-size: 144px 144px;
  }

  .intro-copy p {
    font-size: 16px;
  }

  .section-head h2,
  .modal-content h2 {
    font-size: 28px;
  }

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

}
