:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f5efe8;
  --ink: #171514;
  --muted: #665f59;
  --line: #ddd3ca;
  --brand: #2c2420;
  --brand-soft: #6f5445;
  --accent: #95642b;
  --accent-dark: #70491f;
  --success: #5f6f5d;
  --shadow: 0 18px 46px rgba(23, 21, 20, 0.1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 88px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    "Segoe UI",
    Arial,
    system-ui,
    -apple-system,
    sans-serif;
}

body.has-overlay {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(95, 111, 93, 0.35);
  outline-offset: 3px;
}

button:active,
a:active {
  transform: translateY(1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 96px;
  padding: 18px clamp(22px, 5.2vw, 96px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 21, 20, 0.66);
  border-radius: 50%;
  background: var(--surface);
}

.brand-mark::before {
  color: var(--ink);
  content: "S";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.header-actions a {
  min-height: 42px;
  padding: 11px 10px;
  border-radius: 6px;
}

.header-actions a:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.social-link {
  display: inline-grid;
  width: 42px;
  min-height: 42px;
  padding: 0 !important;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50% !important;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.whatsapp-link {
  color: var(--success);
}

.social-link:hover {
  border-color: var(--line);
  background: #fff;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding: 11px 16px 11px 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #403d3a, #282421);
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(23, 21, 20, 0.12);
}

.cart-icon,
.action-icon,
.contact-icon svg,
.benefit-strip svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.cart-pill strong {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: var(--brand);
  background: #fff;
  font-size: 0.86rem;
}

main {
  overflow: clip;
}

.payment-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1510px;
  margin: 18px auto 0;
  padding: 15px clamp(22px, 5.2vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.payment-status[hidden] {
  display: none;
}

.payment-status > div {
  min-width: 0;
}

.payment-status strong {
  display: block;
  margin-bottom: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.payment-status p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.payment-status button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
}

.payment-status > a {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
  text-align: center;
}

.payment-status > a:hover {
  border-color: var(--success);
  color: var(--success);
}

.payment-status.is-success {
  border-color: rgba(95, 111, 93, 0.46);
  background: #f1f5ef;
}

.payment-status.is-pending {
  border-color: rgba(149, 100, 43, 0.42);
  background: #fff8ed;
}

.payment-status.is-failure {
  border-color: rgba(143, 59, 48, 0.4);
  background: #fff4f1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
  max-width: 1510px;
  margin: 0 auto;
  padding: 46px clamp(22px, 5.2vw, 96px) 34px;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow::after {
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 20px;
  background: var(--accent);
  content: "";
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 26px;
  color: #3b3937;
  font-size: 5.15rem;
  line-height: 0.98;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 47ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 178px;
  min-height: 58px;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.primary-link {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(185, 140, 74, 0.24);
}

.secondary-link {
  border: 1px solid var(--line);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.72);
}

.hero-contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: min(100%, 390px);
  margin-top: 26px;
  padding: 18px 22px;
  border: 0;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 10px 24px rgba(23, 21, 20, 0.06);
}

.hero-contact:hover {
  background: #fff;
  box-shadow: 0 16px 32px rgba(23, 21, 20, 0.1);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--accent-dark);
  border-radius: 50%;
  color: var(--accent-dark);
  background: #fff;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.hero-contact strong {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-contact b {
  color: var(--accent-dark);
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-still-life {
  position: relative;
  align-self: start;
  margin-top: 38px;
  aspect-ratio: 1.14 / 1;
  min-height: 0;
  border: 0;
  border-radius: 22px;
  background: var(--surface-soft);
  box-shadow: 0 18px 50px rgba(23, 21, 20, 0.08);
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 21, 20, 0) 55%, rgba(23, 21, 20, 0.16));
  content: "";
  pointer-events: none;
}

.aroma-notes {
  position: absolute;
  left: 44px;
  right: 24px;
  top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 1;
}

.aroma-notes span {
  min-width: 88px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.action-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1510px;
  margin: 0 auto;
  padding: 28px clamp(22px, 5.2vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-strip article {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  min-width: 0;
}

.benefit-strip svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--accent-dark);
}

.benefit-strip strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.98rem;
}

.benefit-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.shop-layout {
  scroll-margin-top: -86px;
  max-width: 1510px;
  margin: 0 auto;
  padding: 34px clamp(22px, 5.2vw, 96px) 58px;
}

.shop-controls {
  position: sticky;
  top: 82px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(230px, 0.95fr) minmax(260px, 1fr) minmax(270px, 1.04fr) minmax(160px, 0.68fr) minmax(330px, 1.38fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 30px;
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(23, 21, 20, 0.08);
  backdrop-filter: blur(14px);
}

.shop-controls > * {
  min-width: 0;
}

.control-intro {
  display: grid;
  gap: 6px;
  align-content: center;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.control-intro strong {
  font-size: 1.02rem;
}

.control-intro span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.control-block + .control-block {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.control-block label,
.control-label {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-shell,
.select-shell {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
}

.search-shell {
  gap: 10px;
  padding: 0 14px;
}

.search-shell svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#searchInput {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 1rem;
  outline: 0;
}

#categorySelect {
  width: 100%;
  min-height: 48px;
  padding: 0 38px 0 13px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.98rem;
  outline: 0;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-soft);
}

.segmented button,
.category-list button {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.segmented button {
  display: grid;
  min-height: 48px;
  align-content: center;
  gap: 2px;
  border-radius: 8px;
  line-height: 1.15;
}

.segmented button strong {
  font-size: 0.91rem;
  font-weight: 950;
}

.segmented button small {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 750;
}

.segmented button.is-active {
  color: #fff;
  background: linear-gradient(180deg, #332b26, #211b18);
}

.segmented button.is-active small {
  color: rgba(255, 255, 255, 0.76);
}

.buyer-mode-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: -10px 0 30px;
  padding: 13px 16px;
  border: 1px solid #dfd4c6;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #fffdf9;
}

.buyer-mode-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
}

.buyer-mode-note div {
  min-width: 0;
}

.buyer-mode-note strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.92rem;
}

.buyer-mode-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.38;
}

.buyer-mode-note.is-wholesale {
  border-color: #c9d7cc;
  border-left-color: var(--success);
  background: #f8fcf8;
}

.buyer-mode-note.is-wholesale .buyer-mode-mark {
  background: var(--success);
}

.category-list {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.category-list button {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 13px;
  min-height: 56px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 900;
}

.category-teaser img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.category-teaser span {
  display: grid;
  gap: 3px;
}

.category-teaser em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.category-list button.is-active {
  border-color: transparent;
  color: var(--ink);
  background: transparent;
}

.category-next {
  display: grid !important;
  width: 40px;
  height: 40px;
  min-height: 40px !important;
  place-items: center;
  border-radius: 50% !important;
  color: var(--brand) !important;
  font-size: 1.45rem !important;
  line-height: 1;
}

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

.mobile-help-card,
.mobile-category-strip {
  display: none;
}

.mobile-section-hint {
  display: none;
}

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

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.45rem;
  line-height: 1;
}

.count-label {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 900;
}

.product-grid {
  display: grid;
  gap: 46px;
}

.category-rail {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.category-rail.is-leading .rail-head {
  display: none;
}

.rail-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.rail-head h3 {
  margin-bottom: 4px;
  font-size: 2.4rem;
  line-height: 1.05;
}

.rail-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 900;
}

.rail-controls {
  display: flex;
  gap: 12px;
}

.rail-controls button {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand);
  background: #fff;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.rail-controls button:hover {
  border-color: var(--brand);
}

.rail-track {
  display: flex;
  gap: 22px;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 2px 16px;
  scroll-padding: 2px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-soft) transparent;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  flex: 0 0 352px;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(23, 21, 20, 0.08);
  overflow: hidden;
  scroll-snap-align: start;
}

.product-photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.48 / 1;
  min-height: 0;
  padding: 0;
  border: 0;
  background: var(--surface-soft);
  cursor: zoom-in;
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-photo:hover img {
  transform: scale(1.03);
}

.visual-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 900;
}

.view-cue {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 950;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.product-photo:hover .view-cue,
.product-photo:focus-visible .view-cue {
  opacity: 1;
  transform: translateY(0);
}

.product-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 19px 21px 21px;
}

.product-body h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.14;
}

.product-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fffaf4;
  font-size: 0.78rem;
  font-weight: 900;
}

.chip svg,
.add-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chip svg {
  width: 15px;
  height: 15px;
}

.chip-whatsapp:hover {
  border-color: var(--success);
  color: var(--success);
  background: #fff;
}

.product-buy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.price {
  font-size: 1.42rem;
  font-weight: 950;
}

.price-pending {
  color: var(--brand-soft);
  font-size: 1.08rem;
}

.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #332b26, #211b18);
  font-weight: 900;
  cursor: pointer;
}

.add-button svg {
  width: 17px;
  height: 17px;
}

.add-button:hover,
.cart-pill:hover {
  background: #000;
}

.add-button.is-added {
  background: var(--success);
}

.primary-link:hover {
  background: var(--accent-dark);
}

.empty-results {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
}

.empty-results strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.empty-results p {
  margin-bottom: 0;
  color: var(--muted);
}

.order-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto 54px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
}

.order-band .eyebrow {
  color: #dbc6b6;
}

.order-band h2 {
  margin-bottom: 0;
  font-size: 2.55rem;
  line-height: 1;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.order-steps span {
  min-height: 86px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  line-height: 1.22;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  justify-items: end;
  background: rgba(23, 21, 20, 0);
  pointer-events: none;
  transition: background 180ms ease;
}

.cart-drawer:not(.is-open),
.product-viewer:not(.is-open) {
  display: none;
}

.cart-drawer.is-open {
  background: rgba(23, 21, 20, 0.38);
  pointer-events: auto;
}

.drawer-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(470px, 100%);
  height: 100%;
  background: var(--bg);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.drawer-head h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
}

.cart-items {
  min-height: 0;
  overflow: auto;
  padding: 12px 22px;
}

.empty-cart {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

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

.cart-item img {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--surface-soft);
}

.cart-item h3 {
  margin-bottom: 5px;
  font-size: 1.02rem;
  line-height: 1.15;
}

.cart-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.qty-controls {
  display: inline-grid;
  grid-template-columns: 36px 36px 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.qty-controls button {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 950;
}

.qty-controls span {
  text-align: center;
  font-weight: 900;
}

.cart-footer {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.total-row strong {
  text-align: right;
}

.cart-helper {
  margin: -3px 0 13px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.cart-mode-badge {
  display: inline-flex;
  margin: 6px 0 0;
  padding: 4px 8px;
  border: 1px solid #ddc9ae;
  border-radius: 999px;
  color: var(--accent-dark);
  background: #fffaf2;
  font-size: 0.72rem;
  font-weight: 900;
}

.cart-mode-badge.is-wholesale {
  border-color: #b9cebd;
  color: #285a35;
  background: #f2faf3;
}

.mercadopago-button,
.checkout-button,
.copy-button,
.clear-button {
  width: 100%;
  min-height: 48px;
  border-radius: 7px;
  font-weight: 950;
  cursor: pointer;
}

.mercadopago-button {
  border: 0;
  color: #082032;
  background: #00b1ea;
}

.mercadopago-button:disabled {
  cursor: not-allowed;
  color: rgba(8, 32, 50, 0.52);
  background: #d9edf5;
}

.checkout-button:disabled,
.copy-button:disabled,
.clear-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.payment-helper {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.32;
}

.checkout-button {
  border: 0;
  color: #fff;
  background: var(--success);
}

.copy-button {
  margin-top: 9px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.clear-button {
  margin-top: 9px;
  border: 0;
  color: var(--muted);
  background: transparent;
}

.cart-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.product-viewer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 21, 20, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    background 180ms ease,
    opacity 180ms ease;
}

.product-viewer.is-open {
  background: rgba(23, 21, 20, 0.62);
  opacity: 1;
  pointer-events: auto;
}

.viewer-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  width: min(1030px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  transform: translateY(12px);
  transition: transform 180ms ease;
}

.product-viewer.is-open .viewer-dialog {
  transform: translateY(0);
}

.viewer-media {
  display: grid;
  min-height: min(70vh, 680px);
  place-items: center;
  background: var(--surface-soft);
}

.viewer-media img {
  width: 100%;
  height: 100%;
  max-height: min(70vh, 680px);
  display: block;
  object-fit: contain;
}

.viewer-info {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 42px 38px;
  background: #fffaf6;
}

.viewer-info .eyebrow {
  margin-bottom: 0;
}

.viewer-info h2 {
  margin-bottom: 0;
  font-size: 2.65rem;
  line-height: 1;
}

.viewer-info p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

#viewerPrice {
  color: var(--ink);
  font-size: 1.3rem;
}

.viewer-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.viewer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brand);
  background: #fff;
  font-weight: 950;
}

.viewer-whatsapp:hover {
  border-color: var(--success);
  color: var(--success);
}

.viewer-close,
.viewer-nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(23, 21, 20, 0.12);
}

.viewer-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
}

.viewer-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  transform: translateY(-50%);
}

.viewer-prev {
  left: 16px;
}

.viewer-next {
  right: 16px;
}

.viewer-close:hover,
.viewer-nav:hover {
  border-color: var(--brand);
}

.mobile-action-bar {
  display: none;
}

body.has-overlay .mobile-action-bar {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1510px;
  margin: 0 auto;
  padding: 26px clamp(22px, 5.2vw, 96px) 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer > div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.site-footer nav {
  display: flex;
  gap: 8px;
}

.site-footer a {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--ink);
  background: var(--surface-soft);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  max-width: min(92vw, 460px);
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .hero,
  .order-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    max-width: 12ch;
    font-size: 3.8rem;
  }

  .hero-still-life,
  .hero-photo img {
    min-height: 440px;
  }

  .hero-still-life {
    margin-top: 0;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .category-list {
    display: flex;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 84px;
  }

  .shop-layout {
    scroll-margin-top: 0;
  }

  .site-header {
    align-items: center;
    gap: 10px;
    min-height: 66px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark::before {
    font-size: 1.16rem;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small,
  .header-actions a:not(.social-link) {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .social-link {
    display: inline-grid;
    width: 40px;
    min-height: 40px;
  }

  .social-link svg {
    width: 17px;
    height: 17px;
  }

  .cart-pill {
    gap: 7px;
    min-height: 42px;
    padding: 8px 9px;
  }

  .cart-icon {
    display: block;
    width: 17px;
    height: 17px;
  }

  .cart-pill span {
    display: none;
  }

  .cart-pill strong {
    min-width: 22px;
    height: 22px;
    font-size: 0.76rem;
  }

  .hero {
    gap: 14px;
    padding: 18px 14px 12px;
  }

  h1 {
    max-width: 11ch;
    margin-bottom: 13px;
    font-size: 2.2rem;
    line-height: 1;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .hero-copy .eyebrow::after {
    width: 34px;
    margin-top: 12px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .section-head h2,
  .order-band h2 {
    font-size: 2rem;
  }

  .hero-still-life,
  .hero-photo img {
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .hero-still-life {
    aspect-ratio: 1.55 / 1;
    border-radius: 16px;
  }

  .hero-photo img {
    object-position: center 44%;
  }

  .hero-actions,
  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .primary-link,
  .secondary-link {
    min-height: 50px;
    padding: 13px 18px;
  }

  .hero-actions .secondary-link {
    display: none;
  }

  .hero-contact {
    width: 100%;
    gap: 11px;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 11px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
  }

  .contact-icon svg {
    width: 21px;
    height: 21px;
  }

  .hero-contact strong {
    margin-bottom: 3px;
    font-size: 0.78rem;
  }

  .hero-contact b {
    font-size: 0.98rem;
  }

  .aroma-notes {
    left: 12px;
    right: 12px;
    top: 12px;
    gap: 7px;
  }

  .aroma-notes span {
    min-width: 0;
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .benefit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 13px 10px;
  }

  .benefit-strip article {
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }

  .benefit-strip svg {
    width: 24px;
    height: 24px;
  }

  .benefit-strip strong {
    margin-bottom: 0;
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .benefit-strip p {
    display: none;
  }

  .shop-layout {
    padding: 18px 0 34px;
  }

  .shop-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    margin: 0 12px 18px;
    padding: 10px;
    border-radius: 12px;
  }

  .control-intro,
  .control-category,
  .category-preview-block {
    display: none;
  }

  .control-search,
  .control-price {
    grid-column: 1 / -1;
  }

  .control-block label,
  .control-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .search-shell,
  .select-shell {
    min-height: 44px;
    border-radius: 8px;
  }

  .search-shell {
    padding: 0 12px;
  }

  #searchInput,
  #categorySelect {
    min-height: 42px;
    font-size: 0.92rem;
  }

  #categorySelect {
    padding-right: 28px;
  }

  .segmented {
    min-height: 44px;
    padding: 3px;
  }

  .segmented button {
    min-height: 44px;
  }

  .segmented button strong {
    font-size: 0.84rem;
  }

  .segmented button small {
    font-size: 0.66rem;
  }

  .buyer-mode-note {
    margin: -8px 12px 12px;
    padding: 10px 11px;
  }

  .buyer-mode-mark {
    width: 30px;
    height: 30px;
  }

  .buyer-mode-note strong {
    font-size: 0.86rem;
  }

  .buyer-mode-note p {
    font-size: 0.78rem;
  }

  .products-panel {
    padding: 0 12px;
  }

  .mobile-help-card {
    display: grid;
    gap: 9px;
    margin: 0 12px 12px;
    padding: 10px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(23, 21, 20, 0.06);
  }

  .mobile-help-card strong {
    font-size: 0.9rem;
  }

  .mobile-help-card ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-help-card li {
    display: grid;
    justify-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
  }

  .mobile-help-card li span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: var(--brand);
    font-size: 0.74rem;
    font-weight: 950;
  }

  .mobile-category-strip {
    display: flex;
    gap: 8px;
    margin: 0 -12px 16px;
    padding: 0 12px 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-category-strip::-webkit-scrollbar {
    display: none;
  }

  .mobile-category-strip button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 39px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: #fff;
    font-size: 0.86rem;
    font-weight: 950;
    white-space: nowrap;
    cursor: pointer;
  }

  .mobile-category-strip button.is-active {
    border-color: var(--brand);
    color: #fff;
    background: linear-gradient(180deg, #332b26, #211b18);
  }

  .mobile-category-strip em {
    display: grid;
    min-width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 999px;
    color: var(--brand);
    background: var(--surface-soft);
    font-size: 0.72rem;
    font-style: normal;
  }

  .mobile-category-strip button.is-active em {
    background: #fff;
  }

  .order-steps {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: center;
    flex-direction: row;
    margin-bottom: 14px;
  }

  .section-head .eyebrow {
    margin-bottom: 7px;
  }

  .count-label {
    margin-top: 6px;
    font-size: 0.9rem;
  }

  .mobile-section-hint {
    display: block;
    max-width: 26ch;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.3;
  }

  .product-grid {
    gap: 26px;
  }

  .rail-head {
    align-items: center;
  }

  .rail-head h3 {
    font-size: 1.42rem;
  }

  .rail-head p {
    font-size: 0.9rem;
  }

  .rail-controls {
    display: none;
  }

  .section-controls {
    display: flex;
    gap: 8px;
  }

  .section-controls button {
    width: 44px;
    height: 44px;
    font-size: 1.45rem;
  }

  .rail-track {
    gap: 13px;
    margin: 0 -12px;
    padding: 0 12px 13px;
    scroll-padding: 12px;
  }

  .product-card {
    flex: 0 0 min(84vw, 315px);
    min-height: auto;
    border-radius: 13px;
  }

  .view-cue {
    opacity: 1;
    transform: none;
  }

  .product-body {
    gap: 11px;
    padding: 14px 14px 15px;
  }

  .product-body h3 {
    margin-bottom: 7px;
    font-size: 1.18rem;
  }

  .product-body p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .product-meta {
    gap: 6px;
    margin-top: 10px;
  }

  .chip {
    min-height: 27px;
    padding: 5px 9px;
    font-size: 0.76rem;
  }

  .price {
    font-size: 1.22rem;
  }

  .add-button {
    min-height: 46px;
    border-radius: 9px;
  }

  .product-viewer {
    padding: 10px;
  }

  .viewer-dialog {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: calc(100vh - 20px);
    overflow: auto;
  }

  .viewer-media {
    min-height: 58vh;
  }

  .viewer-media img {
    max-height: 58vh;
  }

  .viewer-info {
    gap: 13px;
    padding: 22px 18px 18px;
  }

  .viewer-info h2 {
    font-size: 1.9rem;
  }

  .viewer-whatsapp {
    min-height: 46px;
  }

  .viewer-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .viewer-nav {
    top: 30vh;
    width: 42px;
    height: 42px;
    font-size: 1.55rem;
  }

  .viewer-prev {
    left: 12px;
  }

  .viewer-next {
    right: 12px;
  }

  .cart-item {
    grid-template-columns: 56px 1fr;
  }

  .qty-controls {
    grid-column: 2;
    justify-self: start;
  }

  .drawer-panel {
    width: 100%;
  }

  .cart-footer {
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .mobile-action-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(44, 36, 32, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 40px rgba(23, 21, 20, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 54px;
    place-items: center;
    gap: 3px;
    border: 0;
    border-radius: 13px;
    color: var(--brand);
    background: transparent;
    font-size: 0.76rem;
    font-weight: 950;
    cursor: pointer;
  }

  .mobile-action-bar a:nth-child(2) {
    color: var(--success);
  }

  .mobile-action-bar button {
    color: #fff;
    background: linear-gradient(180deg, #332b26, #211b18);
  }

  .mobile-action-bar svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-action-bar strong {
    position: absolute;
    top: 7px;
    right: 12px;
    display: grid;
    min-width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 999px;
    color: var(--brand);
    background: #fff;
    font-size: 0.68rem;
  }

  .toast {
    bottom: calc(92px + env(safe-area-inset-bottom));
    width: max-content;
    max-width: calc(100vw - 32px);
    border-radius: 10px;
    text-align: center;
  }

  body.has-overlay .toast {
    bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .payment-status {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
    padding: 12px 14px;
  }

  .payment-status strong {
    font-size: 1.02rem;
  }

  .payment-status p {
    font-size: 0.86rem;
  }

  .payment-status > div {
    width: calc(100% - 56px);
  }

  .payment-status > a {
    order: 3;
    width: 100%;
  }

  .order-band {
    margin: 0 12px 28px;
    padding: 24px 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 22px 14px 28px;
  }

  .site-footer nav {
    width: 100%;
  }

  .site-footer a {
    flex: 1;
    border: 1px solid var(--line);
    text-align: center;
  }
}

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

/* Storefront refinement: a quieter, mobile-first catalog. */
:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-soft: #eff0ec;
  --ink: #1e1d1b;
  --muted: #686761;
  --line: #d9d9d3;
  --brand: #26231f;
  --brand-soft: #6a625a;
  --accent: #a77b3f;
  --accent-dark: #775425;
  --success: #3f6952;
  --shadow: 0 12px 30px rgba(25, 24, 22, 0.09);
}

body {
  background: var(--bg);
}

.site-header {
  min-height: 82px;
  padding: 13px clamp(20px, 4.5vw, 72px);
  border-color: rgba(30, 29, 27, 0.12);
  background: rgba(247, 247, 245, 0.96);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-color: rgba(30, 29, 27, 0.48);
  background: transparent;
}

.brand-mark::before {
  font-size: 1.55rem;
}

.brand strong {
  font-size: 1.55rem;
}

.brand small {
  margin-top: 5px;
}

.header-actions {
  gap: 14px;
  font-size: 0.94rem;
}

.cart-pill {
  min-height: 48px;
  border-radius: 8px;
  background: var(--brand);
  box-shadow: none;
}

.hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(34px, 5vw, 72px);
  max-width: 1400px;
  padding: 46px clamp(20px, 4.5vw, 72px) 42px;
}

.hero-copy {
  max-width: 540px;
}

.hero-copy .eyebrow::after {
  height: 1px;
  background: var(--accent);
}

h1 {
  max-width: 12.5ch;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3.55rem, 4.35vw, 4.65rem);
  line-height: 0.96;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 44ch;
  font-size: 1.04rem;
  line-height: 1.58;
}

.hero-actions {
  gap: 12px;
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  min-height: 52px;
  border-radius: 6px;
  box-shadow: none;
}

.primary-link {
  background: var(--brand);
}

.hero-contact {
  gap: 12px;
  min-width: 0;
  margin-top: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-contact:hover {
  background: transparent;
  box-shadow: none;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-color: var(--success);
  color: var(--success);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.hero-still-life {
  margin-top: 0;
  aspect-ratio: 1.24 / 1;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(25, 24, 22, 0.12);
}

.hero-photo::after,
.aroma-notes {
  display: none;
}

.benefit-strip {
  max-width: 1400px;
  gap: 16px;
  padding: 22px clamp(20px, 4.5vw, 72px);
}

.benefit-strip article {
  justify-content: flex-start;
}

.benefit-strip svg {
  width: 29px;
  height: 29px;
}

.shop-layout {
  max-width: 1400px;
  padding: 38px clamp(20px, 4.5vw, 72px) 66px;
}

.shop-controls {
  top: 76px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.35fr) minmax(180px, 0.7fr);
  gap: 28px;
  margin-bottom: 16px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 26px rgba(25, 24, 22, 0.07);
}

.control-intro {
  padding-right: 24px;
}

.control-intro strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.control-intro span {
  font-size: 0.86rem;
}

.control-block label,
.control-label {
  margin-bottom: 8px;
  font-size: 0.72rem;
}

.search-shell,
.select-shell {
  min-height: 46px;
  border-radius: 6px;
}

#searchInput,
#categorySelect {
  min-height: 44px;
  font-size: 0.94rem;
}

.wholesale-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding: 13px 16px;
  border: 1px solid rgba(63, 105, 82, 0.3);
  border-radius: 8px;
  color: var(--ink);
  background: #f4f8f5;
}

.wholesale-cta:hover {
  border-color: var(--success);
  background: #fff;
}

.wholesale-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
}

.wholesale-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wholesale-cta > span:nth-child(2) {
  min-width: 0;
}

.wholesale-cta strong,
.wholesale-cta small {
  display: block;
}

.wholesale-cta strong {
  margin-bottom: 2px;
  font-size: 0.92rem;
}

.wholesale-cta small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.wholesale-cta b {
  color: var(--success);
  font-size: 0.88rem;
}

.mobile-category-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  padding: 0 0 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.mobile-category-strip::-webkit-scrollbar {
  display: none;
}

.mobile-category-strip button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.mobile-category-strip button.is-active {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.mobile-category-strip em {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: var(--surface-soft);
  font-size: 0.7rem;
  font-style: normal;
}

.mobile-category-strip button.is-active em {
  background: #fff;
}

.section-head {
  margin-bottom: 24px;
}

.section-head .eyebrow {
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.count-label {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.rail-controls {
  gap: 8px;
}

.rail-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.45rem;
}

.product-grid {
  gap: 52px;
}

.category-rail {
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.category-rail.is-leading {
  padding-top: 0;
  border-top: 0;
}

.rail-head h3 {
  font-size: 2rem;
}

.rail-track {
  gap: 16px;
  padding: 2px 2px 12px;
}

.product-card {
  flex: 0 0 clamp(278px, 23vw, 326px);
  min-height: 438px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(25, 24, 22, 0.07);
}

.product-photo {
  aspect-ratio: 1.18 / 1;
}

.visual-label {
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 5px;
  font-size: 0.72rem;
}

.view-cue {
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border-radius: 50%;
}

.view-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
}

.product-body h3 {
  margin-bottom: 7px;
  font-size: 1.28rem;
}

.product-body p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-buy {
  grid-template-columns: auto minmax(112px, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 13px;
}

.price {
  font-size: 1.22rem;
}

.price-pending {
  font-size: 0.94rem;
}

.add-button {
  min-height: 44px;
  border-radius: 6px;
  background: var(--brand);
}

.order-band {
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 1256px;
  margin-bottom: 44px;
  padding: 34px 38px;
  border-radius: 8px;
  background: var(--brand);
}

.order-band h2 {
  margin-bottom: 10px;
  font-size: 2.25rem;
}

.order-band p:not(.eyebrow) {
  max-width: 58ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.order-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  color: #fff;
  background: var(--success);
  font-weight: 850;
}

.order-whatsapp:hover {
  background: #315642;
}

.cart-mode-badge {
  border-radius: 5px;
}

.viewer-dialog {
  border-radius: 8px;
}

.viewer-info {
  background: #f8f8f6;
}

.mobile-action-bar button {
  background: var(--brand);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

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

  .control-intro span {
    display: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 66px;
  }

  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 62px;
    padding: 9px 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark::before {
    font-size: 1.18rem;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small,
  .header-actions a:not(.social-link) {
    display: none;
  }

  .header-actions {
    gap: 3px;
  }

  .header-actions .social-link {
    width: 38px;
    min-height: 38px;
  }

  .cart-pill {
    min-height: 40px;
    padding: 7px 8px;
    border-radius: 6px;
  }

  .cart-pill span {
    display: none;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 14px 28px;
  }

  .hero-still-life {
    order: -1;
    width: calc(100% + 28px);
    margin: 0 -14px;
    aspect-ratio: 1.48 / 1;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-photo img {
    object-position: center 44%;
  }

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

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero-copy .eyebrow::after {
    width: 30px;
    margin-top: 10px;
  }

  h1 {
    max-width: 13ch;
    margin-bottom: 14px;
    font-size: clamp(2.18rem, 9.7vw, 2.55rem);
    line-height: 0.98;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.46;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
    min-height: 50px;
  }

  .hero-actions .secondary-link {
    display: none;
  }

  .hero-contact {
    width: auto;
    margin-top: 16px;
  }

  .hero-contact strong {
    font-size: 0.76rem;
  }

  .hero-contact b {
    font-size: 0.94rem;
  }

  .benefit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 14px 8px;
  }

  .benefit-strip article {
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }

  .benefit-strip svg {
    width: 23px;
    height: 23px;
  }

  .benefit-strip strong {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .benefit-strip p {
    display: none;
  }

  .shop-layout {
    padding: 24px 0 44px;
  }

  .shop-controls {
    position: static;
    display: block;
    margin: 0 14px 12px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .control-intro,
  .control-category {
    display: none;
  }

  .search-shell {
    min-height: 48px;
    border-radius: 6px;
    background: #fff;
  }

  #searchInput {
    min-height: 46px;
    font-size: 1rem;
  }

  .wholesale-cta {
    gap: 10px;
    margin: 0 14px 22px;
    padding: 11px 12px;
  }

  .wholesale-icon {
    width: 34px;
    height: 34px;
  }

  .wholesale-cta strong {
    font-size: 0.84rem;
  }

  .wholesale-cta small {
    display: none;
  }

  .wholesale-cta b {
    font-size: 0.8rem;
  }

  .products-panel {
    padding: 0 14px;
  }

  .mobile-category-strip {
    gap: 7px;
    margin: 0 -14px 20px;
    padding: 0 14px 3px;
  }

  .mobile-category-strip button {
    min-height: 38px;
    padding: 7px 11px;
    font-size: 0.8rem;
  }

  .section-head {
    align-items: end;
    margin-bottom: 16px;
  }

  .section-head h2 {
    font-size: 2.15rem;
  }

  .section-head .eyebrow {
    margin-bottom: 6px;
    font-size: 0.68rem;
  }

  .count-label {
    margin-top: 5px;
    font-size: 0.84rem;
  }

  .section-controls {
    display: none;
  }

  .product-grid {
    gap: 34px;
  }

  .category-rail {
    gap: 12px;
    padding-top: 22px;
  }

  .rail-head h3 {
    font-size: 1.45rem;
  }

  .rail-head p {
    font-size: 0.8rem;
  }

  .rail-controls {
    display: none;
  }

  .rail-track {
    gap: 12px;
    margin: 0 -14px;
    padding: 0 14px 10px;
    scroll-padding: 14px;
    scrollbar-width: none;
  }

  .rail-track::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 min(78vw, 286px);
    min-height: 388px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(25, 24, 22, 0.07);
  }

  .product-photo {
    aspect-ratio: 1.12 / 1;
  }

  .view-cue {
    opacity: 1;
    transform: none;
  }

  .product-body {
    gap: 11px;
    padding: 13px;
  }

  .product-body h3 {
    font-size: 1.12rem;
  }

  .product-body p {
    font-size: 0.84rem;
  }

  .product-buy {
    grid-template-columns: auto minmax(102px, 1fr);
    gap: 9px;
    padding-top: 11px;
  }

  .price {
    font-size: 1.08rem;
  }

  .add-button {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 0.88rem;
  }

  .add-button svg {
    width: 15px;
    height: 15px;
  }

  .order-band {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0 14px 30px;
    padding: 24px 20px;
  }

  .order-band h2 {
    font-size: 1.8rem;
    line-height: 1.06;
  }

  .order-band p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .order-whatsapp {
    width: 100%;
  }

  .mobile-action-bar {
    left: 0;
    right: 0;
    bottom: 0;
    gap: 0;
    padding: 5px 8px calc(5px + env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 24px rgba(25, 24, 22, 0.09);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    min-height: 52px;
    border-radius: 6px;
    font-size: 0.72rem;
  }

  .mobile-action-bar strong {
    top: 4px;
    right: max(14px, 16%);
  }

  .toast {
    bottom: calc(72px + env(safe-area-inset-bottom));
    border-radius: 6px;
  }

  .viewer-dialog {
    max-height: calc(100dvh - 16px);
    border-radius: 8px;
  }

  .viewer-media {
    min-height: 0;
    aspect-ratio: 1 / 0.92;
  }

  .viewer-media img {
    max-height: 50dvh;
  }

  .viewer-info {
    gap: 11px;
    padding: 18px 16px 16px;
  }

  .viewer-info h2 {
    font-size: 1.7rem;
  }

  .drawer-head {
    padding: 18px 16px;
  }

  .cart-items {
    padding: 10px 16px;
  }

  .cart-footer {
    padding: 16px 16px calc(18px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 340px) {
  .header-actions .instagram-link {
    display: none;
  }

  .hero {
    padding-inline: 12px;
  }

  .hero-still-life {
    width: calc(100% + 24px);
    margin-inline: -12px;
  }

  .wholesale-cta b {
    display: none;
  }

  .product-card {
    flex-basis: 80vw;
  }

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

  .price {
    font-size: 1.12rem;
  }
}

/* Editorial storefront v3 */
:root {
  --bg: #f3f3f0;
  --surface: #ffffff;
  --surface-soft: #e9e9e4;
  --ink: #111110;
  --muted: #686862;
  --line: #d2d2cc;
  --brand: #111110;
  --brand-soft: #5e5b54;
  --accent: #b98d3f;
  --accent-dark: #79591f;
  --success: #3c6950;
  --shadow: 0 18px 46px rgba(17, 17, 16, 0.12);
}

body {
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", Arial, sans-serif;
}

h1,
h2,
h3,
.brand strong,
.site-footer strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  color: #e7c36c;
  background: #080807;
  transition:
    transform 680ms cubic-bezier(0.76, 0, 0.24, 1),
    visibility 680ms;
  animation: intro-failsafe 0s 2.2s forwards;
}

.site-intro.is-leaving {
  visibility: hidden;
  transform: translateY(-100%);
}

.intro-brand {
  display: grid;
  justify-items: center;
  gap: 5px;
  animation: intro-brand-in 620ms ease both;
}

.intro-seal {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin-bottom: 14px;
  border: 1px solid #d9b35d;
  border-radius: 50%;
  background: #080807;
  box-shadow:
    inset 0 0 0 5px #080807,
    inset 0 0 0 6px rgba(217, 179, 93, 0.45);
}

.brand-monogram-letter {
  color: #e2bb61;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
}

.intro-seal .brand-monogram-letter {
  font-size: 5.2rem;
}

.intro-brand strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0;
}

.intro-brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
}

@keyframes intro-brand-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-failsafe {
  to {
    visibility: hidden;
    pointer-events: none;
  }
}

.site-header {
  min-height: 76px;
  padding: 11px clamp(24px, 4vw, 68px);
  border-color: rgba(17, 17, 16, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  gap: 12px;
}

.brand-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid #cda956;
  border-radius: 50%;
  background: #080807;
  box-shadow:
    inset 0 0 0 2px #080807,
    inset 0 0 0 3px rgba(205, 169, 86, 0.42);
}

.brand strong {
  font-size: 1.46rem;
  font-weight: 600;
}

.brand small {
  margin-top: 4px;
  color: #716f68;
  font-size: 0.61rem;
  font-weight: 700;
}

.header-actions {
  gap: 11px;
  color: #34332f;
  font-size: 0.84rem;
  font-weight: 600;
}

.header-actions > a:not(.social-link) {
  padding-inline: 13px;
}

.cart-pill {
  min-height: 46px;
  border-radius: 6px;
  background: #111110;
}

.hero-carousel {
  position: relative;
  height: min(720px, calc(100svh - 128px));
  min-height: 570px;
  color: #fff;
  background: #111110;
  overflow: hidden;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 760ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.04);
  transition: transform 6.5s ease;
}

.hero-slide:nth-child(2) > img {
  object-position: center 58%;
}

.hero-slide:nth-child(3) > img {
  object-position: center 54%;
}

.hero-slide.is-active > img {
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 7, 0.48);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 1440px);
  height: 100%;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 60px clamp(28px, 6vw, 96px) 124px;
}

.hero-content > * {
  max-width: 650px;
}

.hero-kicker {
  margin: 0 0 22px;
  color: #e4c475;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-content h1,
.hero-content h2 {
  max-width: 11ch;
  margin: 0 0 22px;
  color: #fff;
  font-size: 4.75rem;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-content > p:not(.hero-kicker) {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-content .hero-actions {
  margin-top: 30px;
}

.hero-content .primary-link,
.hero-content .secondary-link {
  min-width: 184px;
  min-height: 50px;
  border-radius: 4px;
  box-shadow: none;
}

.hero-content .primary-link {
  color: #111110;
  background: #fff;
}

.hero-content .primary-link:hover {
  color: #111110;
  background: #e4c475;
}

.hero-content .secondary-link {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.hero-navigation {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 4;
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  width: min(calc(100% - 56px), 1248px);
  margin: 0 auto;
}

.hero-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-counter i {
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.hero-dots button {
  width: 34px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-dots button::after {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.38);
  content: "";
}

.hero-dots button.is-active::after {
  background: #e4c475;
}

.hero-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.hero-arrows button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 17, 16, 0.3);
  cursor: pointer;
}

.hero-arrows svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-strip {
  max-width: none;
  gap: 0;
  padding: 0 clamp(24px, 4vw, 68px);
  border: 0;
  color: #fff;
  background: #111110;
}

.benefit-strip article {
  justify-content: center;
  min-height: 84px;
  padding: 16px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.benefit-strip article:last-child {
  border-right: 0;
}

.benefit-strip svg {
  width: 26px;
  height: 26px;
  color: #e4c475;
}

.benefit-strip strong {
  font-size: 0.85rem;
}

.benefit-strip p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.shop-layout {
  max-width: 1440px;
  padding: 54px clamp(24px, 4vw, 68px) 88px;
}

.shop-controls {
  top: 74px;
  grid-template-columns: minmax(250px, 0.8fr) minmax(320px, 1.3fr) minmax(190px, 0.6fr);
  margin-bottom: 0;
  padding: 19px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(243, 243, 240, 0.96);
  box-shadow: none;
}

.control-intro {
  border-color: var(--line);
}

.control-intro strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.24rem;
  font-weight: 600;
}

.search-shell,
.select-shell {
  min-height: 48px;
  border-radius: 4px;
  background: #fff;
}

.wholesale-cta {
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 0 42px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.wholesale-cta:hover {
  border-color: var(--accent);
  background: transparent;
}

.wholesale-icon {
  width: 34px;
  height: 34px;
}

.wholesale-cta b {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-category-strip {
  gap: 26px;
  margin-bottom: 44px;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.mobile-category-strip button {
  position: relative;
  min-height: 48px;
  padding: 0 0 13px;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 600;
}

.mobile-category-strip button::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: transparent;
  content: "";
}

.mobile-category-strip button.is-active {
  color: var(--ink);
  background: transparent;
}

.mobile-category-strip button.is-active::after {
  background: var(--ink);
}

.mobile-category-strip em,
.mobile-category-strip button.is-active em {
  min-width: auto;
  height: auto;
  color: inherit;
  background: transparent;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: 3.8rem;
  line-height: 1;
}

.section-head .eyebrow,
.rail-head p,
.product-overline {
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.count-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.product-grid {
  gap: 74px;
}

.category-rail,
.category-rail.is-leading {
  gap: 22px;
  padding-top: 0;
  border-top: 0;
}

.category-rail.is-leading .rail-head {
  display: flex;
}

.category-rail.is-single .rail-head {
  display: none;
}

.rail-head h3 {
  margin-bottom: 3px;
  font-size: 2.25rem;
  font-weight: 500;
}

.rail-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
}

.rail-track {
  gap: 24px;
  padding: 0 0 8px;
  scrollbar-width: none;
}

.rail-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 306px;
  min-height: 520px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.product-photo {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: #e2e2dd;
}

.product-photo img {
  object-position: center 48%;
}

.product-body {
  gap: 16px;
  padding: 15px 2px 0;
}

.product-overline {
  display: block;
  margin-bottom: 7px;
}

.product-body h3 {
  margin-bottom: 6px;
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1.12;
}

.product-body p {
  color: #77766f;
  font-size: 0.82rem;
  line-height: 1.4;
}

.product-buy {
  grid-template-columns: auto minmax(116px, 0.72fr);
  gap: 15px;
  padding-top: 0;
  border-top: 0;
}

.price {
  font-size: 1rem;
  font-weight: 700;
}

.add-button {
  min-height: 42px;
  border-radius: 4px;
  background: #111110;
  font-size: 0.82rem;
  font-weight: 700;
}

.view-cue {
  width: 40px;
  height: 40px;
  color: #111110;
}

.order-band {
  max-width: 1304px;
  margin-bottom: 54px;
  padding: 42px 46px;
  border-radius: 6px;
  background: #111110;
}

.order-band h2 {
  font-size: 2.8rem;
  font-weight: 500;
}

.order-whatsapp {
  border-radius: 4px;
  color: #111110;
  background: #e4c475;
}

.order-whatsapp:hover {
  color: #111110;
  background: #fff;
}

.site-footer {
  max-width: none;
  padding: 34px clamp(24px, 4vw, 68px) 40px;
  color: rgba(255, 255, 255, 0.62);
  background: #111110;
}

.site-footer strong {
  color: #e4c475;
  font-size: 1.45rem;
}

.site-footer a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.viewer-dialog {
  border-radius: 6px;
}

.viewer-info {
  background: #f3f3f0;
}

@media (max-width: 980px) {
  .hero-content h1,
  .hero-content h2 {
    font-size: 3.8rem;
  }

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

  .product-card {
    flex-basis: 286px;
  }
}

@media (max-width: 760px) {
  .intro-seal {
    width: 104px;
    height: 104px;
  }

  .intro-brand strong {
    font-size: 1.85rem;
  }

  .site-header {
    min-height: 62px;
    padding: 8px 12px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1.06rem;
  }

  .brand small {
    display: block;
    font-size: 0.52rem;
  }

  .header-actions .whatsapp-link {
    display: none;
  }

  .hero-carousel {
    height: min(610px, calc(100svh - 112px));
    min-height: 520px;
  }

  .hero-slide > img,
  .hero-slide:nth-child(2) > img,
  .hero-slide:nth-child(3) > img {
    object-position: center 54%;
  }

  .hero-shade {
    background: rgba(8, 8, 7, 0.5);
  }

  .hero-content {
    justify-content: flex-end;
    padding: 32px 16px 112px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 0.64rem;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 10.5ch;
    margin-bottom: 14px;
    font-size: 2.75rem;
    line-height: 0.98;
  }

  .hero-content > p:not(.hero-kicker) {
    max-width: 34ch;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .hero-content .hero-actions {
    width: 100%;
    margin-top: 19px;
  }

  .hero-content .primary-link {
    width: auto;
    min-width: 176px;
    min-height: 46px;
    padding: 11px 15px;
    font-size: 0.82rem;
  }

  .hero-content .secondary-link {
    display: none;
  }

  .hero-navigation {
    bottom: 20px;
    grid-template-columns: 66px 1fr 94px;
    width: calc(100% - 32px);
  }

  .hero-counter {
    gap: 7px;
    font-size: 0.64rem;
  }

  .hero-counter i {
    width: 20px;
  }

  .hero-dots button {
    width: 24px;
  }

  .hero-arrows button {
    width: 40px;
    height: 40px;
  }

  .benefit-strip {
    padding: 0 6px;
  }

  .benefit-strip article {
    min-height: 76px;
    padding: 11px 5px;
  }

  .benefit-strip svg {
    width: 21px;
    height: 21px;
  }

  .benefit-strip strong {
    font-size: 0.65rem;
  }

  .shop-layout {
    padding: 32px 0 58px;
  }

  .shop-controls {
    margin: 0 14px;
    padding: 0 0 15px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .wholesale-cta {
    margin: 0 14px 30px;
    padding: 13px 0;
  }

  .products-panel {
    padding: 0 14px;
  }

  .mobile-category-strip {
    gap: 22px;
    margin: 0 -14px 34px;
    padding: 0 14px;
  }

  .mobile-category-strip button {
    min-height: 44px;
    padding-bottom: 11px;
    font-size: 0.78rem;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: 2.55rem;
    line-height: 1;
  }

  .section-head .eyebrow {
    margin-bottom: 8px;
  }

  .product-grid {
    gap: 52px;
  }

  .category-rail {
    gap: 16px;
  }

  .rail-head h3 {
    font-size: 1.75rem;
  }

  .rail-track {
    gap: 15px;
    margin: 0 -14px;
    padding: 0 14px 4px;
    scroll-padding: 14px;
  }

  .product-card {
    flex: 0 0 min(76vw, 280px);
    min-height: 500px;
  }

  .product-photo {
    aspect-ratio: 4 / 5;
  }

  .product-body {
    gap: 13px;
    padding: 13px 1px 0;
  }

  .product-overline {
    margin-bottom: 5px;
  }

  .product-body h3 {
    font-size: 1.2rem;
  }

  .product-body p {
    font-size: 0.78rem;
  }

  .product-buy {
    grid-template-columns: auto minmax(104px, 0.75fr);
    gap: 10px;
  }

  .price {
    font-size: 0.94rem;
  }

  .add-button {
    min-height: 40px;
    padding: 8px 10px;
  }

  .order-band {
    margin-inline: 14px;
    padding: 27px 21px;
  }

  .order-band h2 {
    font-size: 2rem;
  }

  .site-footer {
    padding-bottom: 30px;
  }
}

@media (max-width: 340px) {
  .brand small {
    display: none;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 2.35rem;
  }

  .hero-navigation {
    grid-template-columns: 58px 1fr 84px;
  }

  .hero-arrows button {
    width: 36px;
    height: 36px;
  }

  .product-card {
    flex-basis: 80vw;
  }

  .product-buy {
    grid-template-columns: auto minmax(96px, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro {
    display: none;
  }

  .hero-slide,
  .hero-slide > img,
  .hero-content > * {
    transition: none !important;
    animation: none !important;
  }
}
