:root {
  --bg: #0f0f10;
  --paper: #f5f1ea;
  --paper-strong: #fcf9f4;
  --panel: #18181a;
  --panel-soft: #222225;
  --card: #ffffff;
  --ink: #161616;
  --ink-soft: #5a544f;
  --gold: #c7a46a;
  --gold-strong: #d7b882;
  --gold-soft: #efe2cd;
  --line: rgba(22, 22, 22, 0.12);
  --line-soft: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  --shadow-deep: 0 28px 80px rgba(0, 0, 0, 0.2);
  --radius-card: 28px;
  --radius-soft: 22px;
  --max: 1200px;
  --section-space: clamp(72px, 8vw, 96px);
  --stack-space: clamp(28px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

main {
  overflow: hidden;
}

section[id],
article[id] {
  scroll-margin-top: 110px;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 15, 16, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.nav-wrap {
  min-height: 78px;
}

.brand {
  color: var(--paper);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 2.4vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.desktop-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem 1.4rem;
}

.desktop-nav {
  margin-left: auto;
  color: rgba(245, 241, 234, 0.84);
  font-size: 0.96rem;
}

.desktop-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.desktop-nav a.active {
  color: var(--gold);
}

.mobile-nav {
  position: relative;
  display: none;
  margin-left: auto;
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 234, 0.2);
  color: var(--paper);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav[open] summary {
  border-color: rgba(199, 164, 106, 0.7);
  background: rgba(199, 164, 106, 0.12);
}

.mobile-nav-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  min-width: min(88vw, 280px);
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  background: rgba(15, 15, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-deep);
}

.mobile-nav-menu a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 14px;
  color: rgba(245, 241, 234, 0.88);
  font-weight: 600;
}

.mobile-nav-menu a.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-outline {
  border-color: rgba(245, 241, 234, 0.2);
  color: var(--paper);
}

.button-outline:hover {
  border-color: rgba(199, 164, 106, 0.7);
  background: rgba(199, 164, 106, 0.12);
}

.button-primary {
  background: var(--gold);
  color: #1d1711;
}

.button-primary:hover {
  background: var(--gold-strong);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--paper);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(11, 11, 12, 0.82) 0%, rgba(20, 20, 22, 0.62) 58%, rgba(56, 42, 31, 0.54) 100%),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 58%);
}

.hero-grid,
.philosophy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: min(92svh, 860px);
  padding: 72px 0 64px;
}

.hero-copy {
  max-width: 44rem;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong,
.brand {
  font-family: "Cormorant Garamond", serif;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.25rem, 7vw, 5.75rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.85rem, 2.7vw, 2.35rem);
  line-height: 1;
}

.hero-text,
.footer-wrap p,
.disclosure-wrap p {
  color: rgba(245, 241, 234, 0.88);
}

.hero-text {
  max-width: 42rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1.4rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.trust-pills li {
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-panel,
.philosophy-panel {
  display: grid;
  gap: 1rem;
}

.hero-panel-card,
.hero-mini-card,
.feature-card,
.category-card,
.product-card,
.philosophy-panel article {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.hero-panel-card,
.hero-mini-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-panel-main {
  padding: 1.7rem;
}

.panel-label,
.feature-meta,
.pill,
.product-badge,
.point-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.panel-label,
.feature-meta {
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.hero-panel-main p,
.hero-mini-card p {
  color: rgba(245, 241, 234, 0.8);
}

.hero-panel-stack {
  display: grid;
  gap: 0.9rem;
}

.hero-mini-card {
  padding: 1.25rem;
}

.section {
  padding: var(--section-space) 0;
}

.disclosure-bar {
  background: #141416;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.disclosure-wrap {
  padding: 1rem 0;
}

.disclosure-wrap p {
  margin-bottom: 0;
  color: rgba(245, 241, 234, 0.7);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: var(--stack-space);
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  max-width: none;
}

.split-heading p,
.category-card p,
.philosophy-section .section-copy {
  color: var(--ink-soft);
}

.featured-section,
.catalog-section {
  background: linear-gradient(180deg, #f7f3ec 0%, #f0e8de 100%);
}

.categories-section {
  background: #f3ede4;
  border-top: 1px solid rgba(22, 22, 22, 0.04);
  border-bottom: 1px solid rgba(22, 22, 22, 0.04);
}

.featured-grid,
.category-grid,
.product-grid {
  display: grid;
  gap: 1.25rem;
}

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

.featured-grid-single {
  grid-template-columns: 1fr;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  background: linear-gradient(145deg, #181716 0%, #242120 100%);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
}

.feature-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.92fr);
  gap: 1.2rem;
  align-items: end;
}

.feature-copy {
  display: grid;
  gap: 0.9rem;
}

.feature-copy h3 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 0;
}

.feature-copy p {
  margin-bottom: 0;
  color: rgba(245, 241, 234, 0.84);
}

.feature-copy strong,
.hero-mini-card strong,
.philosophy-panel strong {
  display: block;
  margin-bottom: 0.1rem;
  color: inherit;
}

.pill {
  justify-self: start;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
}

.feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.feature-note {
  padding-top: 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.feature-links .primary-link {
  background: var(--gold);
  color: #1d1711;
}

.feature-links .secondary-link {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-art img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  padding: 1rem;
  background: #f6f1e7;
  border-radius: calc(var(--radius-soft) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

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

.category-card {
  position: relative;
  min-height: 100%;
  padding: 0;
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  background: linear-gradient(145deg, #171615 0%, #24201d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}

.category-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(180deg, #f8f4ed 0%, #efe6d9 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-image-wrap img {
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.category-card:hover .category-image-wrap img {
  transform: scale(1.04);
}

.category-overlay {
  display: none;
}

.category-content {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem 1.2rem 1.3rem;
}

.category-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.category-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(245, 241, 234, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-content h3 {
  margin-bottom: 0;
}

.category-card p {
  margin-bottom: 0;
  color: rgba(245, 241, 234, 0.8);
}

.category-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 700;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 22, 22, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-button:hover {
  transform: translateY(-1px);
}

.filter-button.active {
  border-color: rgba(199, 164, 106, 0.8);
  background: var(--gold-soft);
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.08);
  font-size: 0.8rem;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.product-media {
  position: relative;
  padding: 1rem 1rem 0.85rem;
  background: #f6f1e7;
}

.product-media img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  left: 1.75rem;
  bottom: 1rem;
  background: rgba(16, 16, 16, 0.72);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.25rem 1.25rem 1.35rem;
}

.product-head {
  display: grid;
  gap: 0.8rem;
}

.product-title-wrap h3 {
  margin-bottom: 0;
  font-size: 2rem;
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  color: #6b625b;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-dot {
  opacity: 0.55;
}

.product-head .pill {
  background: var(--gold-soft);
  color: #574120;
}

.product-intro,
.product-summary,
.product-fit {
  margin-bottom: 0;
}

.product-intro,
.product-summary,
.product-fit {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.product-intro,
.product-summary {
  color: var(--ink-soft);
}

.product-intro {
  font-size: 0.96rem;
  -webkit-line-clamp: 3;
}

.product-summary {
  font-size: 1rem;
  -webkit-line-clamp: 4;
}

.product-fit {
  color: #312c28;
  -webkit-line-clamp: 3;
}

.product-fit strong {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.point-pill {
  background: #faf6ef;
  color: #53483d;
  border: 1px solid rgba(199, 164, 106, 0.28);
  letter-spacing: 0;
}

.product-links {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
  margin-top: auto;
}

.product-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.product-links .buy-link {
  background: var(--ink);
  color: var(--paper);
}

.product-links .anchor-link {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(22, 22, 22, 0.12);
}

body[data-category-slug] {
  --category-glow: rgba(215, 184, 130, 0.18);
  --category-glow-soft: rgba(215, 184, 130, 0.1);
}

body[data-category-slug="smart-home-tech"] {
  --category-glow: rgba(104, 138, 190, 0.22);
  --category-glow-soft: rgba(213, 179, 123, 0.1);
}

body[data-category-slug="premium-outdoor-gear"] {
  --category-glow: rgba(168, 111, 66, 0.22);
  --category-glow-soft: rgba(210, 168, 112, 0.1);
}

body[data-category-slug="luxury-kitchen-essentials"] {
  --category-glow: rgba(145, 100, 76, 0.22);
  --category-glow-soft: rgba(222, 196, 154, 0.1);
}

body[data-category-slug="high-end-furniture-and-decor"] {
  --category-glow: rgba(140, 124, 103, 0.24);
  --category-glow-soft: rgba(207, 176, 128, 0.1);
}

.category-page-hero {
  background:
    radial-gradient(circle at top right, var(--category-glow) 0%, transparent 34%),
    radial-gradient(circle at left center, var(--category-glow-soft) 0%, transparent 38%),
    linear-gradient(135deg, #111213 0%, #181615 55%, #241e1a 100%);
}

.category-page-hero::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 60%);
}

.category-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  padding: 72px 0 64px;
}

.category-hero-text {
  max-width: 44rem;
}

.category-flagship-card {
  height: 100%;
}

.category-fresh-section,
.category-expansion-section {
  background: linear-gradient(180deg, #f7f3ec 0%, #f0e8de 100%);
}

.category-main-edit-section {
  background: #f3ede4;
  border-top: 1px solid rgba(22, 22, 22, 0.04);
  border-bottom: 1px solid rgba(22, 22, 22, 0.04);
}

.hub-product-grid {
  align-items: stretch;
}

.hub-link-grid,
.expansion-grid {
  display: grid;
  gap: 1.1rem;
}

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

.hub-link-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.hub-link-image {
  padding: 1rem;
  background: #f6f1e7;
}

.hub-link-image img {
  height: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.hub-link-copy {
  display: grid;
  gap: 0.55rem;
  align-content: center;
  padding: 1rem 1.1rem;
}

.hub-link-label {
  color: #6b625b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hub-link-copy strong {
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 0.98;
}

.hub-link-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.expansion-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.expansion-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: #5a4222;
  font-weight: 800;
}

.expansion-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
}

.expansion-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.philosophy-section {
  background: linear-gradient(135deg, #121213 0%, #1d1b1a 100%);
  color: var(--paper);
}

.philosophy-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
}

.philosophy-panel article {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.philosophy-panel p,
.philosophy-section .section-copy {
  color: rgba(245, 241, 234, 0.82);
}

.site-footer {
  background: #0a0a0b;
  color: rgba(245, 241, 234, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap {
  padding: 28px 0;
}

.footer-brand {
  margin-bottom: 0.55rem;
}

.footer-wrap p {
  margin-bottom: 0;
}

@media (max-width: 1160px) {
  .hero-grid,
  .philosophy-grid,
  .split-heading,
  .category-hero-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-shell {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  }

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

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .nav-wrap {
    min-height: 72px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  h1 {
    font-size: clamp(2.8rem, 11vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-grid {
    min-height: auto;
    padding: 42px 0 54px;
  }

  .hero-actions,
  .trust-pills,
  .product-links,
  .feature-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .feature-links a,
  .product-links a {
    width: 100%;
  }

  .feature-card,
  .category-card,
  .product-card,
  .hub-link-card,
  .expansion-card,
  .hero-panel-card,
  .hero-mini-card,
  .philosophy-panel article {
    border-radius: var(--radius-soft);
  }

  .feature-shell,
  .product-grid,
  .category-grid,
  .hub-link-grid,
  .expansion-grid,
  .hub-link-card {
    grid-template-columns: 1fr;
  }

  .category-hero-grid {
    padding: 42px 0 54px;
  }

  .feature-art {
    order: -1;
  }

  .feature-art img {
    aspect-ratio: 4 / 3;
  }

  .product-body {
    padding: 1.1rem 1.1rem 1.2rem;
  }

  .product-intro {
    display: none;
  }

  .product-summary {
    -webkit-line-clamp: 3;
  }

  .product-fit {
    -webkit-line-clamp: 2;
  }

  .catalog-filters {
    gap: 0.55rem;
  }

  .filter-button {
    width: 100%;
    justify-content: space-between;
  }
}
