:root {
  --bg: #f7f3ee;
  --paper: #ffffff;
  --soft: #efe6dc;
  --ink: #57453e;
  --muted: #8a7a71;
  --line: #e6ddd4;
  --brand: #f39200;
  --brand-deep: #d47e00;
  --brand-soft: #fff1d6;
  --brown: #57453e;
  --brown-deep: #3c2f2a;
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 72px;
  --font: "Nunito", "Segoe UI", sans-serif;
  --shadow: 0 10px 30px rgba(87, 69, 62, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.logo-img {
  width: auto;
  height: 42px;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
}

.pill-btn--ghost {
  background: var(--soft);
  color: var(--ink);
}

.pill-btn--cart {
  background: var(--brand);
  color: white;
}

.pill-btn--cart #cartCount,
.cart-count {
  font-variant-numeric: tabular-nums;
}

.icon-btn {
  position: relative;
  border: none;
  background: var(--paper);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: white;
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-soft {
  background: var(--soft);
  color: var(--ink);
}

.btn-light {
  background: white;
  color: var(--ink);
}

.btn-arrow {
  padding-right: 0.55rem;
}

.btn-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
}

/* Hero — 3-zone shell like reference */
.hero-aero {
  padding: 0.5rem 0 1.5rem;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.28fr);
  align-items: stretch;
  background: #f3ebe3;
  border-radius: 40px;
  overflow: hidden;
  min-height: 620px;
  box-shadow: 0 12px 40px rgba(87, 69, 62, 0.06);
}

.hero-aero-copy {
  padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1.4rem, 2.8vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f3ebe3;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  background: #e8ddd2;
  color: #7a6a62;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-aero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: var(--ink);
  max-width: 11ch;
}

.hero-lead {
  margin: 0 0 1.6rem;
  color: #8a7a71;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 32ch;
  font-weight: 500;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-aero-media {
  position: relative;
  min-height: 620px;
  background: #f3ebe3;
}

.hero-aero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 32%;
  background: linear-gradient(90deg, #f3ebe3 8%, transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-aero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 28%;
}

.hero-aside {
  position: absolute;
  right: 1.35rem;
  top: 50%;
  transform: translateY(calc(-50% - 1.2rem));
  width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 0;
  background: transparent;
  z-index: 3;
}

.hero-float-cards {
  display: grid;
  gap: 0.7rem;
}

.float-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.7rem;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 0.9rem 0.95rem;
  box-shadow: 0 10px 28px rgba(87, 69, 62, 0.1);
}

.float-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
}

.float-card strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.float-card > div > span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.25;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem 0.45rem 0.45rem;
  box-shadow: 0 10px 28px rgba(87, 69, 62, 0.1);
  margin-top: 0.35rem;
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  background: linear-gradient(135deg, #ffd59a, #f39200);
}

.hero-avatars span:first-child { margin-left: 0; }
.hero-avatars span:nth-child(2) { background: linear-gradient(135deg, #efe6dc, #57453e); }
.hero-avatars span:nth-child(3) { background: linear-gradient(135deg, #fff1d6, #d47e00); }
.hero-avatars span:nth-child(4) { background: linear-gradient(135deg, #c4b4a8, #3c2f2a); }

.hero-trust-meta {
  display: grid;
  gap: 0.1rem;
}

.hero-trust-text {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.hero-trust-text strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.hero-stars strong {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
}

.hero-stars span {
  color: #f39200;
  font-size: 0.65rem;
  letter-spacing: -0.04em;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.05rem;
}

.hero-dots span {
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: #e0d5cb;
}

.hero-dots span.is-active {
  background: var(--brand);
  width: 34px;
}

.text-link {
  font-weight: 600;
  color: var(--muted);
}

.text-link:hover {
  color: var(--brand);
}

/* Sections */
.section-block {
  padding: 2.5rem 0;
}

.section-head-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-head-row h2,
.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 2rem 0 0.5rem;
}

.page-hero h1 {
  margin: 0.2rem 0 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.breadcrumb {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.catalog-page {
  padding: 1rem 0 3rem;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-grid--home {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-media {
  aspect-ratio: 1;
  background: var(--soft);
  display: grid;
  place-items: center;
  padding: 1.1rem;
}

.product-media img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.product-body h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.price-row {
  display: flex;
  gap: 0.45rem;
  align-items: baseline;
  margin-top: auto;
  padding-top: 0.35rem;
}

.price {
  font-weight: 800;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.85rem;
}

.product-actions {
  margin-top: 0.7rem;
}

.product-actions .btn {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  color: var(--muted);
}

/* Filters */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.chip.active,
.chip:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

.search-wrap input {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  outline: none;
  min-width: 220px;
}

.results-count {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 1rem;
}

/* Categories */
.category-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.category-tile {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 25, 20, 0.1), rgba(15, 25, 20, 0.55)),
    var(--tile) center / cover no-repeat;
  color: white;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.15rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.category-tile::after {
  content: "→";
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 600;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.benefits-grid article {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.benefits-grid h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.benefits-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Club */
.club-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: #efe6dc;
  border-radius: 28px;
  padding: 1.25rem 1.4rem;
}

.club-card {
  width: 150px;
  height: 92px;
  border-radius: 16px;
  background: linear-gradient(145deg, #57453e, #3c2f2a);
  color: white;
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.club-card img {
  height: 34px;
  width: auto;
}

.club-card strong {
  font-size: 1.05rem;
}

.club-copy h2 {
  margin: 0 0 0.3rem;
  font-size: 1.3rem;
  font-weight: 800;
}

.club-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 40ch;
}

/* Voices */
.voices-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.voice-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.voice-card p {
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.voice-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Ask */
.ask {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 1rem 1rem 0;
  border-radius: 28px;
  overflow: hidden;
  min-height: 560px;
}

.ask-panel {
  min-height: 560px;
}

.ask-visual {
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.12) 20%, rgba(16, 16, 15, 0.55) 100%),
    url("../assets/ask.jpg") center / cover no-repeat;
  color: #f7f6f3;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.ask-visual-copy p {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ask-visual-copy p + p {
  margin-top: 0.2rem;
  opacity: 0.8;
  font-weight: 600;
}

.ask-form-panel {
  background: var(--brown);
  color: #f7f3ee;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ask-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}

.ask-form-panel h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 800;
}

.ask-intro {
  margin: 0 0 1.3rem;
  opacity: 0.75;
  max-width: 36ch;
}

.ask-form {
  display: grid;
  gap: 0.95rem;
}

.ask-form label {
  display: grid;
  gap: 0.3rem;
}

.ask-form label span {
  font-size: 0.8rem;
  opacity: 0.7;
}

.ask-form input,
.ask-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: white;
  padding: 0.5rem 0;
  outline: none;
  border-radius: 0;
}

.ask-form textarea {
  min-height: 80px;
  resize: vertical;
}

.ask-form .btn {
  justify-self: start;
  margin-top: 0.4rem;
}

/* Footer */
.site-footer {
  background: var(--brown-deep);
  color: rgba(247, 243, 238, 0.7);
  margin-top: 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.7fr;
  gap: 2rem;
  padding: 2.8rem 0 2.2rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-brand p {
  margin: 0;
  max-width: 28ch;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.footer-label {
  margin: 0 0 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}

.footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-cols a {
  color: rgba(244, 247, 245, 0.8);
}

.footer-cols a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1rem 0 1.2rem;
  font-size: 0.8rem;
  opacity: 0.55;
}

/* Product detail */
.product-page {
  padding: 1.1rem 0 0.5rem;
}

.product-page .breadcrumb {
  margin: 0 0 0.9rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem;
  background: var(--paper);
  border-radius: 28px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
  align-items: stretch;
}

.product-detail-media {
  position: relative;
  background: var(--soft);
  border-radius: 20px;
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.product-detail-media img {
  max-height: 420px;
  width: 100%;
  object-fit: contain;
}

.detail-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brand);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.35rem 0.4rem 0.2rem 0;
}

.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 0.8rem;
}

.detail-stock {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brown);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}

.product-detail-info h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.detail-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 600;
}

.detail-rating strong {
  color: var(--ink);
  font-weight: 800;
}

.detail-stars {
  color: var(--brand);
  letter-spacing: -0.04em;
  font-size: 0.8rem;
}

.detail-price-row {
  margin: 0;
  gap: 0.55rem;
  align-items: center;
}

.detail-price-row .price {
  font-size: 1.55rem;
  font-weight: 800;
}

.detail-save {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-deep);
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
}

.product-detail-desc {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  font-size: 0.95rem;
}

.detail-block {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.2rem;
}

.detail-block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.size-pill {
  min-width: 46px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.size-pill.is-active,
.size-pill:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brown);
}

.detail-buy-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  padding-top: 0.15rem;
}

.detail-buy-row .btn {
  width: 100%;
  min-height: 48px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 40px 44px 40px;
  align-items: center;
  background: var(--soft);
  border-radius: 999px;
  overflow: hidden;
}

.qty-control button {
  border: none;
  background: transparent;
  height: 48px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.qty-control input {
  width: 100%;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 800;
  color: var(--ink);
  padding: 0;
}

.detail-benefits {
  margin: 0.2rem 0 0;
  padding: 0.85rem 0 0.85rem 1.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.detail-benefits li::marker {
  color: var(--brand);
}

.detail-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.detail-trust div {
  background: var(--soft);
  border-radius: 14px;
  padding: 0.7rem 0.75rem;
  display: grid;
  gap: 0.12rem;
}

.detail-trust strong {
  font-size: 0.8rem;
  font-weight: 800;
}

.detail-trust span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

.product-detail-panels {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr;
  gap: 0.9rem;
  margin-top: 1rem;
}

.detail-panel {
  background: var(--paper);
  border-radius: 22px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: var(--shadow);
}

.detail-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.detail-panel ul,
.detail-panel ol {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.detail-panel--contact {
  background: linear-gradient(160deg, var(--brown), var(--brown-deep));
  color: #f7f3ee;
}

.detail-panel--contact h2 {
  color: white;
}

.detail-panel--contact p {
  margin: 0 0 0.9rem;
  color: rgba(247, 243, 238, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.detail-panel--contact .btn {
  margin-bottom: 0.7rem;
}

.detail-panel--contact .text-link {
  color: rgba(247, 243, 238, 0.85);
}

.detail-panel--contact .text-link:hover {
  color: white;
}

.related-section {
  padding: 1.6rem 0 3rem;
}

.loading-note {
  color: var(--muted);
}

/* About page leftovers (simplified) */
.about-hero {
  position: relative;
  min-height: 58vh;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  margin: 0 1rem;
  color: white;
  display: grid;
  align-items: end;
}

.about-hero-media {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 16, 0.1), rgba(10, 20, 16, 0.7));
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  padding: 2rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
}

.about-hero-copy h1 {
  margin: 0.3rem 0 0.6rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.about-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.about-story,
.about-split,
.about-video,
.about-stores {
  padding: 3rem 0;
}

.about-story-grid,
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.about-story h2,
.about-split h2,
.about-video-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.prose {
  display: grid;
  gap: 0.9rem;
  color: var(--muted);
}

.prose p {
  margin: 0;
}

.plain-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.plain-list li {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.about-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.about-marquee {
  overflow: hidden;
  padding: 0.9rem 0;
  background: var(--soft);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-weight: 700;
  color: var(--muted);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-note {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.store {
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.store img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.store h3,
.store p,
.store a {
  display: block;
  padding: 0 1rem;
}

.store h3 {
  margin: 0.9rem 0 0.2rem;
  font-weight: 800;
}

.store p {
  margin: 0;
  color: var(--muted);
}

.store a {
  padding-bottom: 1rem;
  font-weight: 700;
  color: var(--brand);
}

.stores-mail {
  margin: 1.5rem 0 0;
  font-weight: 700;
}

/* Cart */
body.cart-open {
  overflow: hidden;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(60, 47, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: var(--paper);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  border-radius: 20px 0 0 20px;
  box-shadow: -16px 0 40px rgba(87, 69, 62, 0.18);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-head,
.cart-foot {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.cart-foot {
  border-bottom: none;
  border-top: 1px solid var(--line);
  margin-top: auto;
  display: grid;
  gap: 0.75rem;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.close-btn {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
}

.cart-items {
  padding: 1rem 1.2rem;
  overflow: auto;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.cart-empty {
  color: var(--muted);
  padding: 1rem 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.7rem;
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--soft);
  border-radius: 12px;
}

.cart-item h4 {
  margin: 0 0 0.2rem;
  font-size: 0.88rem;
}

.qty-controls {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  margin-top: 0.35rem;
}

.qty-controls button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}

.remove-item {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
}

.toast {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  z-index: 220;
  transition: transform 0.3s ease;
  font-size: 0.88rem;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Checkout — minimal */
.hidden {
  display: none !important;
}

.checkout-page {
  padding: 1rem 0 3.5rem;
}

.checkout-title {
  margin: 0.15rem 0 1.75rem;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.checkout-main {
  display: grid;
  gap: 2rem;
}

.checkout-block {
  padding: 0 0 1.75rem;
  border-bottom: 1px solid var(--line);
}

.checkout-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checkout-block h2,
.checkout-summary h2 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
}

.checkout-grid .span-2 {
  grid-column: 1 / -1;
}

.checkout-grid label {
  display: grid;
  gap: 0.4rem;
}

.checkout-grid label span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.checkout-grid input,
.checkout-grid textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 0.55rem 0;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}

.checkout-grid input:focus,
.checkout-grid textarea:focus {
  border-bottom-color: var(--brown);
  box-shadow: none;
}

.checkout-grid textarea {
  resize: vertical;
  min-height: 56px;
}

.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}

.pay-method {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.pay-method input {
  accent-color: var(--brown);
  width: 16px;
  height: 16px;
  margin: 0;
}

.pay-method em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.85em;
}

.card-fields {
  margin-top: 1.15rem;
}

.checkout-note {
  margin: 0.7rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding-top: 0.15rem;
}

.checkout-items {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.checkout-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.75rem;
  align-items: start;
}

.checkout-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: 1px solid var(--line);
}

.checkout-item-info {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.checkout-item-info strong {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.checkout-item-info span,
.checkout-item-total {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.checkout-item-total {
  color: var(--ink);
  white-space: nowrap;
  font-weight: 600;
}

.checkout-totals {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.15rem;
}

.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.checkout-grand {
  color: var(--ink) !important;
  font-size: 1rem;
  font-weight: 700 !important;
  padding-top: 0.35rem;
}

.checkout-submit {
  width: 100%;
  min-height: 48px;
  border-radius: 4px;
}

.checkout-back {
  display: block;
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.checkout-back:hover {
  color: var(--ink);
}

.checkout-empty,
.checkout-success {
  padding: 2.5rem 0;
  max-width: 36ch;
}

.checkout-empty p,
.checkout-success p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-weight: 500;
}

.checkout-success h2,
.checkout-empty h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

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

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

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

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

  .detail-panel--contact {
    grid-column: 1 / -1;
  }
}

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

  .menu-toggle {
    display: grid;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
    gap: 0.85rem;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-aside {
    position: static;
    transform: none;
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0 1.25rem 1.35rem;
    gap: 1rem;
  }

  .hero-float-cards {
    flex: 1 1 280px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-trust {
    margin-top: 0;
  }

  .hero-aero-media {
    min-height: 380px;
    order: -1;
  }

  .hero-aero-copy h1 {
    max-width: none;
  }

  .pill-btn--ghost {
    display: none;
  }

  .product-detail-grid,
  .product-detail-panels,
  .checkout-layout,
  .ask,
  .about-story-grid,
  .about-split-grid,
  .footer-main,
  .club-banner {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    gap: 2rem;
  }

  .checkout-summary {
    position: static;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
  }

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

  .checkout-grid .span-2 {
    grid-column: auto;
  }

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

  .qty-control {
    width: max-content;
  }

  .detail-trust {
    grid-template-columns: 1fr;
  }

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

  .detail-panel--contact {
    grid-column: auto;
  }

  .ask {
    margin: 1rem;
  }

  .ask-panel {
    min-height: 380px;
  }

  .product-grid,
  .product-grid--home,
  .voices-modern,
  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid,
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .club-banner {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .product-grid--home,
  .category-tiles,
  .voices-modern,
  .stores-grid,
  .benefits-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .search-wrap input {
    width: 100%;
    min-width: 0;
  }

  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-float-cards {
    display: none;
  }

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

  .hero-aero-media {
    min-height: 300px;
    order: 0;
  }

  .hero-aside {
    padding-top: 0;
  }

  .hero-aero-copy {
    padding-bottom: 1.25rem;
  }
}
