:root {
  --black: #101010;
  --ink: #1b1718;
  --paper: #fffaf1;
  --white: #ffffff;
  --yellow: #ffd336;
  --yellow-deep: #f7b900;
  --coral: #ff6a4a;
  --mint: #57cdae;
  --blue: #5d8bff;
  --pink: #ff9fc7;
  --muted: #716866;
  --line: rgba(16, 16, 16, 0.12);
  --shadow: 0 20px 48px rgba(16, 16, 16, 0.16);
  --radius: 8px;
  --max: 1240px;
  color-scheme: light;
}

html[data-theme="dark"] {
  --ink: #fff6ea;
  --paper: #171314;
  --white: #282123;
  --yellow: #ffd84d;
  --coral: #ff8066;
  --mint: #67dfbf;
  --blue: #7aa0ff;
  --pink: #ff9fc7;
  --muted: #d8c9c1;
  --line: rgba(255, 246, 234, 0.16);
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 74px;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.45;
  overflow-x: hidden;
  transition: background 180ms ease, color 180ms ease;
}

body.is-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 8px 0 rgba(16, 16, 16, 0.1);
}

.topbar,
.section,
.story-band,
.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-face {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pink-i {
  position: relative;
  display: inline-flex;
  justify-content: center;
  font-style: normal;
  line-height: 1;
  width: 0.32em;
}

.pink-i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.1em;
  width: 0.21em;
  height: 0.21em;
  border-radius: 50%;
  background: var(--pink);
  transform: translateX(-50%);
  pointer-events: none;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a {
  padding: 0.78rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.theme-toggle {
  min-width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 1000;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.theme-toggle span::before {
  content: "☾";
  display: block;
  line-height: 1;
}

html[data-theme="dark"] .theme-toggle span::before {
  content: "☀";
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-2px);
  background: var(--yellow);
  color: var(--black);
  outline: none;
}

.market-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem;
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--black);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.market-link:hover,
.market-link:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--black);
  outline: none;
}

.market-link-primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .main-nav {
  background: #080708;
  color: #fff6ea;
}

html[data-theme="dark"] .nav-toggle {
  border-color: rgba(255, 246, 234, 0.32);
  color: #fff6ea;
}

html[data-theme="dark"] .theme-toggle {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

html[data-theme="dark"] .hero {
  background:
    linear-gradient(90deg, #302716 0 47%, transparent 47%),
    repeating-linear-gradient(0deg, rgba(255, 246, 234, 0.04) 0 1px, transparent 1px 42px);
}

html[data-theme="dark"] .hero-stage {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 159, 199, 0.55) 0 12%, transparent 12.5%),
    radial-gradient(circle at 18% 78%, rgba(103, 223, 191, 0.5) 0 12%, transparent 12.5%),
    linear-gradient(135deg, #211b1d 0%, #342718 100%);
}

html[data-theme="dark"] .filter-chip,
html[data-theme="dark"] .product-link,
html[data-theme="dark"] .button-light {
  color: var(--ink);
}

html[data-theme="dark"] .button-dark {
  color: #fff6ea;
}

html[data-theme="dark"] .filter-chip.is-active {
  background: var(--yellow);
  color: var(--black);
}

html[data-theme="dark"] .products-sidebar-card {
  border-color: rgba(255, 246, 234, 0.26);
  box-shadow: 7px 7px 0 rgba(255, 246, 234, 0.1);
}

html[data-theme="dark"] .product-link,
html[data-theme="dark"] .filter-chip,
html[data-theme="dark"] .store-card {
  border-color: rgba(255, 246, 234, 0.26);
  box-shadow: 7px 7px 0 rgba(255, 246, 234, 0.1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0.65rem;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(460px, 1.08fr);
  min-height: calc(100vh - 74px);
  background:
    linear-gradient(90deg, var(--yellow) 0 47%, transparent 47%),
    repeating-linear-gradient(0deg, rgba(16, 16, 16, 0.045) 0 1px, transparent 1px 42px);
}

.hero-copy {
  align-self: center;
  width: min(100% - 2rem, 560px);
  margin-left: max(1rem, calc((100vw - var(--max)) / 2 - 9rem));
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Baloo 2", sans-serif;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 5.9vw, 6.1rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.hero-copy p:not(.eyebrow),
.section-copy,
.story-band p,
.contact-copy p {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border: 3px solid var(--black);
  border-radius: var(--radius);
  color: var(--black);
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 5px 5px 0 var(--black);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--black);
  outline: none;
}

.button-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--coral);
}

.button-light {
  background: var(--white);
}

.button-yellow {
  background: var(--yellow);
}

.button-mint {
  background: var(--mint);
}

.hero-stage {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: end center;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) max(1rem, calc((100vw - var(--max)) / 2)) clamp(2rem, 5vw, 4rem) 2rem;
  background:
    radial-gradient(circle at 78% 18%, var(--pink) 0 12%, transparent 12.5%),
    radial-gradient(circle at 18% 78%, var(--mint) 0 12%, transparent 12.5%),
    linear-gradient(135deg, #ffffff 0%, #fff1d1 100%);
}

.hero-stage img {
  width: min(100%, 780px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 14px 14px 0 var(--black);
}

.mobile-quick-actions {
  display: none;
}

.order-badge {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(1rem, 5vw, 4rem);
  width: min(42vw, 220px);
  padding: 1rem;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transform: rotate(-3deg);
}

.order-badge span {
  display: block;
  font-size: 0.75rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.order-badge strong {
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.8rem;
  line-height: 0.95;
}

.product-info p,
.category-tile span {
  display: block;
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-head.compact {
  grid-template-columns: 1fr;
}

.page-intro {
  padding-top: clamp(0.75rem, 1.8vw, 1.15rem);
  padding-bottom: 0;
}

.page-intro .section-head {
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr);
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.55rem;
}

.page-intro h1 {
  max-width: none;
  font-size: clamp(2.2rem, 3.4vw, 3.35rem);
  line-height: 1;
  white-space: nowrap;
}

.page-intro .section-copy {
  max-width: 28rem;
  font-size: clamp(0.96rem, 1.05vw, 1.05rem);
}

.products-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.1rem;
}

.products-hero-cards .category-tile {
  justify-content: center;
}

.products-page-section {
  padding-top: 2rem;
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 0.72fr);
  gap: 1.5rem;
  align-items: start;
}

.products-sidebar {
  position: sticky;
  top: 108px;
}

.products-sidebar-card {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border: 4px solid var(--black);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffaf1 0%, #ffffff 100%);
  box-shadow: 10px 10px 0 rgba(16, 16, 16, 0.96);
}

.products-sidebar-card h2 {
  font-size: clamp(1.8rem, 2vw, 2.5rem);
}

.products-sidebar-filters {
  display: grid;
  gap: 0.65rem;
}

.products-filter-toggle {
  display: none;
}

.products-sidebar-filters .filter-chip {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  border-radius: 12px;
}

.products-content {
  min-width: 0;
}

.products-content-head {
  grid-template-columns: 1fr;
  align-items: end;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.filter-chip {
  min-height: 42px;
  padding: 0.72rem 0.95rem;
  border: 3px solid var(--black);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(16, 16, 16, 0.14);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, color 140ms ease;
}

.filter-chip.is-active {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 4px 4px 0 rgba(255, 111, 97, 0.55);
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
  box-shadow: 5px 5px 0 rgba(16, 16, 16, 0.18);
  outline: none;
}

html[data-theme="dark"] .products-sidebar-card {
  background: linear-gradient(180deg, #1d1819 0%, #120f10 100%);
  border-color: rgba(255, 246, 234, 0.22);
  box-shadow: 10px 10px 0 rgba(255, 246, 234, 0.08);
}

html[data-theme="dark"] .products-sidebar-filters .filter-chip {
  background: #181314;
  color: #fff6ea;
  border-color: rgba(255, 246, 234, 0.22);
  box-shadow: none;
}

html[data-theme="dark"] .products-sidebar-filters .filter-chip.is-active {
  background: var(--yellow);
  color: var(--black);
  border-color: rgba(255, 246, 234, 0.2);
  box-shadow: 4px 4px 0 rgba(255, 159, 199, 0.24);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.product-card {
  position: relative;
  min-width: 0;
  height: 100%;
}

.product-card[hidden] {
  display: none;
}

.product-link {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  box-shadow: 7px 7px 0 var(--black);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-link:hover,
.product-link:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--black);
  outline: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--yellow);
}

.status {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  padding: 0.42rem 0.58rem;
  border: 3px solid var(--black);
  border-radius: var(--radius);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--black);
}

.status.order {
  background: var(--mint);
}

.status.ready {
  background: var(--yellow);
}

.status.quote {
  background: var(--blue);
  color: var(--white);
}

.product-info {
  display: grid;
  grid-template-rows: auto 4.4rem minmax(4.25rem, 1fr) auto;
  gap: 0.55rem;
  padding: 1rem;
  min-height: 235px;
}

.product-info p {
  margin: 0;
  color: var(--coral);
}

.product-info h3 {
  align-self: start;
  overflow: hidden;
}

.product-copy {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  align-self: start;
}

.product-info div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  align-self: end;
  margin-top: 0.2rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--line);
}

.product-info strong,
.product-info span {
  font-size: 0.9rem;
  font-weight: 1000;
}

.product-info div span {
  color: var(--coral);
  text-transform: uppercase;
}

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

.category-tile {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.8rem;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  color: var(--black);
  text-decoration: none;
  box-shadow: 7px 7px 0 var(--black);
}

.category-tile strong {
  display: block;
  margin-top: 0.22rem;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.22rem, 1.5vw, 1.75rem);
  line-height: 0.92;
}

.category-tile.yellow {
  background: var(--yellow);
}

.category-tile.mint {
  background: var(--mint);
}

.category-tile.coral {
  background: var(--coral);
  color: var(--white);
}

.category-tile.blue {
  background: var(--blue);
  color: var(--white);
}

.story-band {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: 8px 8px 0 var(--black);
}

.story-band .eyebrow {
  color: var(--black);
}

.story-band p {
  margin: 0;
  color: var(--black);
}

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

.sales-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 7px 7px 0 var(--black);
}

.sales-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 3px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-weight: 1000;
}

html[data-theme="dark"] .sales-card span {
  background: #fff6ea;
  color: var(--black);
  border-color: rgba(16, 16, 16, 0.92);
}

.sales-card h3 {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
}

.sales-card p {
  margin: 0;
  color: var(--black);
  font-weight: 800;
}

.sales-card.yellow {
  background: var(--yellow);
}

.sales-card.mint {
  background: var(--mint);
}

.sales-card.coral {
  background: var(--coral);
  color: var(--white);
}

.sales-card.blue {
  background: var(--blue);
  color: var(--white);
}

.sales-card.coral p,
.sales-card.blue p {
  color: var(--white);
}

.store-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.store-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 1.2rem;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  color: var(--black);
  text-decoration: none;
  box-shadow: 8px 8px 0 var(--black);
}

.store-card span {
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-card strong {
  max-width: 12ch;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
}

.store-card.yellow {
  background: var(--yellow);
}

.store-card.mint {
  background: var(--mint);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0 2.5rem;
  border-top: 4px solid var(--black);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: var(--yellow);
  }

  .hero-copy {
    margin: 0 auto;
    padding: 3rem 0 2rem;
  }

  .hero-stage {
    min-height: auto;
    padding: 2rem 1rem 3rem;
  }

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

  .page-intro .section-head {
    grid-template-columns: 1fr;
  }

  .products-hero-cards,
  .products-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .products-sidebar {
    position: static;
  }

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

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

@media (max-width: 820px) {
  .topbar,
  .section,
  .story-band,
  .site-footer {
    width: min(calc(100% - 1rem), var(--max));
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.6rem;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    width: 100vw;
    justify-self: stretch;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 0 rgba(16, 16, 16, 0.18);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .header-actions {
    justify-self: end;
  }

  .section-head,
  .story-band,
  .store-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .site-footer {
    display: grid;
    text-align: left;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    padding-top: 68px;
    background: var(--paper);
  }

  .topbar {
    min-height: 68px;
    padding-block: 0.2rem;
  }

  .main-nav {
    inset: 68px 0 auto 0;
  }

  .header-actions .market-link-primary {
    display: none;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-face {
    width: 40px;
    height: 40px;
  }

  .brand {
    gap: 0.34rem;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 0.5rem;
  }

  .market-link {
    min-height: 40px;
    padding: 0.56rem 0.66rem;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .theme-toggle {
    min-width: 40px;
    height: 40px;
    padding: 0;
    font-size: 1rem;
  }

  .hero {
    background: var(--paper);
  }

  h1 {
    max-width: 9ch;
    font-size: 2.3rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 1.72rem;
    line-height: 1;
  }

  .hero-copy {
    width: 100%;
    padding: 0.7rem 0.75rem 0.15rem;
    background: var(--paper);
    border-bottom: 0;
  }

  .hero-copy h1,
  .hero-copy p:not(.eyebrow),
  .hero-copy .eyebrow {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    margin-top: 0;
  }

  .hero-actions {
    display: none;
  }

  .mobile-quick-actions {
    display: grid;
    width: fit-content;
    grid-template-columns: repeat(2, minmax(0, 138px));
    gap: 0.55rem;
    margin: 0.85rem auto 0.45rem;
    padding: 0;
    background: var(--paper);
  }

  .button {
    flex: 1 1 0;
    min-height: 42px;
    padding: 0.64rem 0.68rem;
    font-size: 0.72rem;
    box-shadow: 3px 3px 0 var(--black);
  }

  .hero-stage {
    padding: 0.75rem 0.5rem 1rem;
    background:
      radial-gradient(circle at 78% 14%, var(--pink) 0 18%, transparent 18.5%),
      linear-gradient(180deg, var(--paper) 0%, var(--paper) 100%);
  }

  .hero-stage img {
    aspect-ratio: 1.18 / 1;
    object-position: center;
    border-width: 3px;
    box-shadow: none;
  }

  .section {
    width: 100%;
    padding: 1.35rem 0.75rem 0;
    border-top: 4px solid var(--black);
  }

  .section-head {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
  }

  .filter-bar {
    gap: 0.45rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-chip {
    min-height: 36px;
    padding: 0.48rem 0.38rem;
    border-width: 2px;
    font-size: 0.58rem;
    box-shadow: none;
  }

  .order-badge {
    display: none;
  }

  .order-badge strong {
    font-size: 1rem;
  }

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

  .product-link {
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    border-width: 3px;
    box-shadow: none;
  }

  .product-card img {
    height: 100%;
    min-height: 156px;
    aspect-ratio: auto;
  }

  .product-info {
    grid-template-rows: auto auto auto;
    gap: 0.28rem;
    min-height: 132px;
    padding: 0.68rem;
  }

  .product-info h3 {
    font-size: 1.02rem;
    line-height: 0.98;
  }

  .product-copy {
    display: none;
  }

  .product-info div {
    flex-wrap: wrap;
    gap: 0.35rem;
    padding-top: 0.42rem;
  }

  .product-info strong,
  .product-info span {
    font-size: 0.68rem;
  }

  .category-grid,
  .sales-grid,
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.68rem;
  }

  .category-tile {
    min-height: 98px;
    padding: 0.72rem;
    border-width: 3px;
    box-shadow: none;
  }

  .category-tile strong {
    font-size: 0.94rem;
    line-height: 1;
  }

  .story-band {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.35rem;
    padding: 1rem 0.85rem;
    border-width: 3px 0;
    box-shadow: none;
  }

  .story-band h2 {
    max-width: 12ch;
  }

  .sales-card {
    min-height: 136px;
    padding: 0.72rem;
    border-width: 3px;
    box-shadow: none;
  }

  .sales-card span {
    width: 34px;
    height: 34px;
    border-width: 2px;
    font-size: 0.72rem;
  }

  .sales-card h3 {
    font-size: 1.08rem;
    line-height: 1;
  }

  .sales-card p {
    font-size: 0.72rem;
    line-height: 1.28;
  }

  .store-section {
    gap: 0.8rem;
    padding-bottom: 1.35rem;
  }

  .store-card {
    min-height: 118px;
    padding: 0.78rem;
    border-width: 3px;
    box-shadow: none;
  }

  .store-card strong {
    font-size: 1.2rem;
    line-height: 0.98;
  }

  .site-footer {
    width: 100%;
    padding: 0.9rem;
    border-top-width: 3px;
  }

  .products-hero-cards,
  .products-sidebar-filters,
  .products-page-grid {
    grid-template-columns: 1fr;
  }

  .page-intro {
    padding-top: 0.45rem;
  }

  .page-intro .section-head {
    gap: 0.45rem;
    margin-bottom: 0.45rem;
  }

  .page-intro h1 {
    font-size: 2.05rem;
    white-space: normal;
  }

  .page-intro .section-copy,
  .products-sidebar-card .section-copy,
  .contact-copy p,
  .story-band p {
    display: none;
  }

  .page-intro .section-copy,
  .products-sidebar-card .section-copy,
  .products-hero-cards {
    display: none;
  }

  .products-page-section {
    padding-top: 0.9rem;
  }

  .products-sidebar-card {
    gap: 0.7rem;
    padding: 0;
    border-width: 0;
    background: transparent;
    box-shadow: none;
  }

  .products-filter-toggle {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.72rem 0.9rem;
    border: 3px solid var(--black);
    border-radius: 10px;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.84rem;
    font-weight: 1000;
    text-transform: uppercase;
    box-shadow: 3px 3px 0 var(--black);
  }

  html[data-theme="dark"] .products-filter-toggle {
    background: var(--yellow);
    color: var(--black);
    border-color: rgba(255, 246, 234, 0.2);
    box-shadow: 3px 3px 0 rgba(255, 246, 234, 0.12);
  }

  .products-sidebar-filters {
    display: none !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.6rem;
  }

  .products-sidebar-filters.is-open {
    display: grid !important;
  }

  .products-sidebar-filters .filter-chip {
    appearance: none !important;
    -webkit-appearance: none !important;
    min-height: 40px;
    justify-content: center;
    text-align: center;
    padding: 0.56rem 0.4rem;
    font-size: 0.68rem;
    line-height: 1;
    border-width: 2px;
    border-radius: 10px;
    background: var(--white) !important;
    color: var(--black) !important;
    -webkit-text-fill-color: var(--black) !important;
    border-color: var(--black) !important;
    opacity: 1 !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }

  .products-sidebar-filters .filter-chip.is-active,
  .products-sidebar-filters .filter-chip[aria-pressed="true"],
  .products-sidebar-filters .filter-chip:active,
  .products-sidebar-filters .filter-chip:focus-visible {
    background: var(--yellow) !important;
    color: var(--black) !important;
    -webkit-text-fill-color: var(--black) !important;
    border-color: var(--black) !important;
    opacity: 1 !important;
    text-shadow: none !important;
  }

  html[data-theme="dark"] .products-sidebar-filters .filter-chip,
  html[data-theme="dark"] .products-sidebar-filters .filter-chip.is-active,
  html[data-theme="dark"] .products-sidebar-filters .filter-chip[aria-pressed="true"],
  html[data-theme="dark"] .products-sidebar-filters .filter-chip:active,
  html[data-theme="dark"] .products-sidebar-filters .filter-chip:focus-visible {
    color: var(--black) !important;
    -webkit-text-fill-color: var(--black) !important;
    opacity: 1 !important;
  }

  html[data-theme="dark"] .products-sidebar-filters .filter-chip {
    background: #fff6ea !important;
    border-color: rgba(255, 246, 234, 0.22) !important;
    box-shadow: none !important;
  }

  html[data-theme="dark"] .products-sidebar-filters .filter-chip.is-active,
  html[data-theme="dark"] .products-sidebar-filters .filter-chip[aria-pressed="true"],
  html[data-theme="dark"] .products-sidebar-filters .filter-chip:active,
  html[data-theme="dark"] .products-sidebar-filters .filter-chip:focus-visible {
    background: var(--yellow) !important;
    border-color: rgba(255, 246, 234, 0.2) !important;
  }

  .products-sidebar-card h2,
  .products-content-head .eyebrow,
  .contact-copy .eyebrow,
  .site-footer p,
  .eyebrow {
    display: none;
  }

  .products-content-head {
    margin-bottom: 0.55rem;
  }

  .category-section,
  #inspiracoes,
  .story-band,
  .sales-section {
    display: none;
  }

  .store-section {
    border-top-width: 0;
  }

  html[data-theme="dark"] .hero {
    background: var(--paper);
  }

  html[data-theme="dark"] .hero-copy {
    background: #302716;
  }

  html[data-theme="dark"] .hero-stage {
    background:
      radial-gradient(circle at 78% 14%, rgba(255, 159, 199, 0.42) 0 18%, transparent 18.5%),
      linear-gradient(180deg, var(--paper) 0%, var(--paper) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
