:root {
  --bg: #fbf7f1;
  --paper: #fffaf4;
  --paper-strong: #f4eadc;
  --line: #e5d8c8;
  --text: #171311;
  --muted: #75685f;
  --gold: #b98239;
  --gold-dark: #8a5a24;
  --shadow: 0 18px 50px rgba(79, 54, 34, .10);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --number: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  min-height: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at top right, #fff, transparent 32rem), var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  overflow-x: hidden;
}
main {
  flex: 1 0 auto;
  width: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { max-width: 100%; min-width: 0; font: inherit; }

.cart-link b,
.qty input,
.price,
.price-old,
.price-sale,
.price-omnibus,
.price-block,
.cart-section-head > b,
.cart-item-tags,
.cart-price-block b,
.order-summary p b,
.summary-total b,
.tax-line b,
.discount-chip,
.delivery-note,
.checkout-summary b,
.checkout-summary span[data-checkout-delivery],
.checkout-summary [data-checkout-total],
.checkout-summary [data-checkout-net],
.checkout-summary [data-checkout-vat],
.account-stats small,
.account-order-row,
.contact-quick-card a,
.contact-help-grid span,
.payment-method-mark {
  font-family: var(--number);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.top-ribbon {
  height: 34px;
  background: #e8d6c0;
}
.top-ribbon-inner {
  width: min(1460px, calc(100% - 72px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #5e391d;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 600;
}
.top-ribbon-separator { width: 4px; height: 4px; flex: 0 0 4px; border-radius: 50%; background: var(--gold-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 244, .92);
  backdrop-filter: blur(14px);
}
.site-header-inner {
  width: min(1460px, calc(100% - 72px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px 1fr minmax(330px, 420px);
  align-items: center;
}
.brand img { width: 92px; height: auto; }
.shop-menu-toggle,
.shop-nav-close,
.mobile-nav-head,
.shop-nav-backdrop {
  display: none;
}
.main-nav { display: flex; justify-content: center; gap: 34px; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 600; }
.main-nav a { white-space: nowrap; }
.main-nav a:hover, .main-nav a.is-active, .header-actions a:hover { color: var(--gold-dark); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 14px; font-size: 28px; line-height: 1; }
.header-search {
  width: min(210px, 40vw);
  height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  overflow: hidden;
}
.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 0 0 14px;
  font-size: 12px;
  outline: 0;
}
.header-search button {
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  font-size: 24px;
}
.account-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.cart-link {
  position: relative;
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.cart-icon {
  position: relative;
  width: 22px;
  height: 19px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
}
.cart-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -9px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}
.cart-link b { position: absolute; top: -4px; right: -7px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--gold); color: #fff; font-size: 10px; display: grid; place-items: center; }

.container { width: min(1460px, calc(100% - 72px)); margin: 0 auto; }
.section { margin: 26px auto; }
.eyebrow { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .18em; font-weight: 700; font-size: 12px; }
.admin-edit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}
.admin-edit-row-tight {
  margin-top: 8px;
  margin-bottom: -10px;
}
.admin-edit-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(47,111,115,.28);
  border-radius: 999px;
  background: rgba(233,246,246,.92);
  color: #2f6f73;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.admin-edit-chip:hover {
  border-color: rgba(47,111,115,.54);
  background: #fff;
}
.product-card .admin-edit-row {
  margin-top: 10px;
}
.product-card .admin-edit-chip {
  min-height: 30px;
  padding: 0 10px;
  font-size: 10px;
}
.h-serif { font-family: var(--serif); font-weight: 600; line-height: .96; letter-spacing: 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 44px; padding: 0 28px; border: 1px solid var(--gold); background: transparent; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; cursor: pointer; }
.btn:disabled { opacity: .62; cursor: not-allowed; }
.btn-primary { background: linear-gradient(180deg, #c9954d, #a66f2d); color: white; border-color: #a66f2d; }
.btn-secondary { background: transparent; color: var(--gold-dark); border-color: var(--line); }
.btn-wide { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.flash-wrap { width: min(1460px, calc(100% - 72px)); margin: 16px auto 0; display: grid; gap: 8px; }
.flash { padding: 13px 16px; border-radius: 8px; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.flash-ok { border-color: #b9d7c4; background: #eef8f1; color: #286342; }
.flash-error { border-color: #e2a69c; background: #fff1ee; color: #81352d; }

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  background: #eadcca;
}
.hero-copy { padding: 76px 0 70px 118px; align-self: center; }
.hero h1 { max-width: 560px; margin: 18px 0; font-size: clamp(52px, 6vw, 92px); }
.hero p { max-width: 480px; line-height: 1.8; color: #473d35; }
.hero-actions { display: flex; gap: 18px; margin-top: 28px; }
.hero-image { min-height: 520px; }

.about-hero {
  min-height: 0;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 14px 42px rgba(60, 34, 18, .06);
}
.about-hero .hero-copy {
  padding: 58px 58px 56px;
}
.about-hero h1 {
  max-width: 470px;
  font-size: clamp(52px, 4.8vw, 82px);
}
.about-hero p {
  max-width: 430px;
}
.about-hero .about-slider {
  min-height: 430px;
}

.about-slider {
  position: relative;
  min-height: 520px;
  background: #d8c3aa;
  overflow: hidden;
}
.about-slide-stage,
.about-slide {
  position: absolute;
  inset: 0;
}
.about-slide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.about-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,15,11,.34), rgba(20,15,11,.06) 52%, rgba(20,15,11,.20));
}
.about-slide-copy {
  position: absolute;
  z-index: 2;
  left: 40px;
  bottom: 86px;
  width: min(420px, calc(100% - 80px));
  padding: 22px 24px;
  background: rgba(255, 250, 244, .88);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(47, 31, 18, .18);
  backdrop-filter: blur(10px);
}
.about-slide-copy h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}
.about-slide-copy p {
  margin: 0;
  color: #4b4038;
  line-height: 1.65;
}
.about-slide-copy a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.about-slider-controls {
  position: absolute;
  z-index: 3;
  left: 40px;
  right: 40px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.about-slider-controls button {
  pointer-events: auto;
  cursor: pointer;
}
.about-slider-controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,250,244,.75);
  border-radius: 50%;
  background: rgba(255,250,244,.72);
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(47, 31, 18, .18);
}
.about-slider-dots {
  display: flex;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,250,244,.68);
  border: 1px solid rgba(255,255,255,.52);
  box-shadow: 0 10px 28px rgba(47, 31, 18, .14);
}
.about-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(138, 90, 36, .42);
  background: rgba(255,255,255,.78);
}
.about-slider-dots button.is-active {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.home-hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(430px, 47vw) minmax(0, 1fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 14%, rgba(255,255,255,.82), transparent 25rem),
    linear-gradient(105deg, #fffaf4 0%, #fffaf4 47%, #ead8c1 47%, #d7bea1 100%);
}
.home-hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 84px 48px 84px max(48px, calc((100vw - 1460px) / 2 + 48px));
}
.home-hero-copy h1 {
  max-width: 540px;
  margin: 18px 0;
  font-size: clamp(56px, 4.9vw, 88px);
}
.home-hero-copy p {
  max-width: 430px;
  color: #473d35;
  line-height: 1.85;
}
.home-hero-media {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  padding: 54px max(48px, calc((100vw - 1460px) / 2 + 48px)) 54px 30px;
}
.home-hero-media::before {
  content: "";
  position: absolute;
  inset: 8% max(36px, calc((100vw - 1460px) / 2 + 36px)) 10% 0;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,250,244,.16);
  box-shadow: 0 28px 90px rgba(69,42,20,.18);
}
.hero-lifestyle-slider {
  position: relative;
  z-index: 2;
  width: min(980px, 94%);
  aspect-ratio: 3 / 2;
}
.hero-lifestyle-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(14px);
  transition: opacity .75s ease, transform .75s ease;
}
.hero-lifestyle-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.hero-lifestyle-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: 0 32px 90px rgba(62, 38, 18, .24);
}
.hero-lifestyle-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(25, 17, 12, .12), transparent 42%, rgba(25, 17, 12, .08));
  pointer-events: none;
}
.hero-lifestyle-dots {
  position: absolute;
  left: 50%;
  bottom: -44px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.promo-banner-section {
  padding-top: 28px;
  padding-bottom: 0;
}
.promo-banner-carousel {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f3eadf;
  border: 1px solid rgba(229,216,200,.76);
}
.promo-banner-slide {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--banner-text, #fff);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .65s ease;
}
.promo-banner-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.promo-banner-slide picture,
.promo-banner-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: var(--banner-overlay, #000);
  opacity: var(--banner-opacity, .35);
}
.promo-banner-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  align-content: center;
  width: min(680px, 100%);
  box-sizing: border-box;
  padding: 42px clamp(24px, 6vw, 76px);
  display: grid;
  gap: 12px;
}
.promo-banner-copy span {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
}
.promo-banner-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 64px);
  line-height: .98;
}
.promo-banner-copy p {
  max-width: 540px;
  margin: 0;
  line-height: 1.7;
}
.promo-banner-copy b {
  width: fit-content;
  margin-top: 8px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 999px;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
}
.promo-banner-slide.is-image-only .promo-banner-overlay,
.promo-banner-slide.is-image-only .promo-banner-copy {
  display: none;
}
.promo-banner-dots {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 18px;
  display: flex;
  gap: 9px;
}
.promo-banner-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.34);
}
.promo-banner-dot.is-active {
  background: #fff;
}
.hero-lifestyle-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 250, 244, .62);
  border: 1px solid rgba(138, 90, 36, .34);
  box-shadow: 0 4px 16px rgba(62, 38, 18, .12);
  cursor: pointer;
}
.hero-lifestyle-dot.is-active {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.hero-lifestyle-dot:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 4px;
}
.featured-products-section {
  margin-top: 28px;
}
.section-title-compact {
  margin-bottom: 12px;
}
.featured-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.featured-product {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 244, .78);
  box-shadow: 0 10px 30px rgba(60, 34, 18, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.featured-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(60, 34, 18, .09);
}
.featured-product-image {
  position: relative;
  width: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: #eadcca;
}
.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .18s ease;
}
.featured-product-body {
  min-width: 0;
  display: grid;
  gap: 8px;
}
.featured-product b {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}
.price-block--featured {
  gap: 3px;
}
.price-block--featured .price-row {
  gap: 7px;
}
.price-block--featured .price {
  font-size: 15px;
}
.price-block--featured .price-old {
  font-size: 11px;
}
.price-block--featured .price-omnibus {
  max-width: 180px;
  font-size: 9px;
}

.promo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.promo-card { min-height: 132px; padding: 24px; border-radius: 8px; background: var(--paper); border: 1px solid var(--line); overflow: hidden; position: relative; }
.promo-card img { position: absolute; right: 0; bottom: 0; width: 48%; height: 100%; object-fit: cover; }
.promo-card h3 { position: relative; margin: 0 0 8px; font-family: var(--serif); font-size: 28px; }
.promo-card p, .promo-card a { position: relative; max-width: 50%; }
.promo-card p { color: var(--muted); line-height: 1.5; }
.promo-card a { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .14em; font-weight: 700; font-size: 12px; }

.section-title { display: flex; justify-content: space-between; align-items: end; margin: 22px 0 14px; }
.section-title > * { min-width: 0; }
.section-title h2 { margin: 0; font-family: var(--serif); font-size: 38px; font-weight: 600; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--paper);
  border: 1px solid #e6d8c8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(60, 34, 18, .06);
}
.product-card .image { position: relative; display: block; aspect-ratio: 4 / 3; background: #f0e6d9; overflow: hidden; }
.product-card .image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease, opacity .18s ease; }
.product-card:hover .image img { transform: scale(1.04); }
.featured-product-image img.is-switching,
.product-card .image img.is-switching { opacity: .2; }
.product-card .body {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(229, 216, 200, .74);
}
.product-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.08;
}
.product-card p {
  min-height: 3em;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.product-card .price-block {
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(229, 216, 200, .7);
}
.price { font-family: var(--number); font-weight: 800; font-size: 17px; }
.price-block { display: grid; gap: 4px; }
.price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-old { color: var(--muted); text-decoration: line-through; font-family: var(--number); font-size: 13px; }
.price-sale { color: #9f241d; }
.price-omnibus {
  color: var(--muted);
  font-family: var(--number);
  font-size: 10px;
  line-height: 1.35;
  max-width: 260px;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 6px; }
.product-card .image .badge-row { position: absolute; z-index: 2; top: 12px; left: 12px; right: 12px; }
.badge { display: inline-flex; align-items: center; min-height: 24px; padding: 0 9px; border-radius: 999px; background: rgba(255,250,244,.9); border: 1px solid rgba(229,216,200,.8); color: var(--gold-dark); text-transform: uppercase; letter-spacing: .09em; font-size: 10px; font-weight: 700; }
.promo-ribbon {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: -46px;
  width: 170px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: rotate(38deg);
  background: #c91f1a;
  color: #fff;
  box-shadow: 0 8px 18px rgba(80, 16, 12, .22);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  pointer-events: none;
}
.product-info .promo-ribbon { display: none; }
.featured-product-image .promo-ribbon {
  top: 8px;
  right: -58px;
  transform: rotate(38deg) scale(.72);
}
.product-card-swatches { display: flex; flex-wrap: wrap; gap: 8px; min-height: 24px; }
.variant-swatch { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; line-height: 1.2; }
.variant-swatch span { width: 18px; height: 18px; flex: 0 0 18px; border-radius: 50%; border: 2px solid #fff; outline: 1px solid var(--line); background: #8b5a2b; }
.variant-swatch b { font-weight: 500; }
.variant-swatch.is-active { color: var(--gold-dark); font-weight: 700; }
.variant-swatch.is-active span { outline: 2px solid var(--gold-dark); }
.lead { max-width: 720px; color: var(--muted); line-height: 1.75; }
.catalog-head { display: grid; gap: 10px; }
.filter-form { display: grid; gap: 12px; }
.plain-check { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); line-height: 1.4; }
.plain-check input { width: auto; min-height: 0; }
.compact { gap: 10px; }
.catalog-toolbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.filter-chips span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,250,244,.74); color: var(--muted); font-size: 12px; }
.empty-state { padding: 42px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); text-align: center; }
.empty-state h2, .empty-state h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 36px; }
.empty-state p { max-width: 620px; margin: 0 auto 22px; color: var(--muted); line-height: 1.7; }
.compact-empty { padding: 24px; text-align: left; }
.quick-add { margin-top: 4px; }

.story-band { display: grid; grid-template-columns: 1fr 1.2fr; align-items: stretch; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.story-band .story-img { min-height: 210px; background: #eadcca; }
.story-band-polished .story-img { min-height: 260px; }
.story-band .story-img img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; display: block; }
.story-band .story-copy { padding: 34px 44px; }
.story-band h2 { margin: 8px 0; font-family: var(--serif); font-size: 38px; }
.benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.benefit { padding: 26px; text-align: center; border-left: 1px solid var(--line); }
.benefit:first-child { border-left: 0; }
.benefit b { display: block; color: var(--gold-dark); margin-bottom: 7px; }
.benefit p { margin: 0; color: var(--muted); line-height: 1.5; }

.page-head { padding: 58px 0 28px; }
.breadcrumbs { color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; margin-bottom: 24px; }
.page-head h1 { margin: 0; font-family: var(--serif); font-size: 64px; }
.catalog-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 34px; }
.filter-panel, .soft-card { background: rgba(255, 250, 244, .8); border: 1px solid var(--line); border-radius: 8px; padding: 24px; }
.legal-content { max-width: 980px; line-height: 1.72; }
.legal-content h2 { margin: 34px 0 12px; font-family: var(--serif); font-size: 32px; font-weight: 600; }
.legal-content h2:first-of-type { margin-top: 20px; }
.legal-content p { margin: 0 0 13px; }
.legal-content ol { margin: 0 0 18px; padding-left: 24px; }
.legal-content li { margin: 0 0 10px; }
.legal-content a { color: var(--gold-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label { text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 700; }
.input, .field input, .field select, .field textarea { width: 100%; min-height: 46px; border: 1px solid #d8c7b5; background: rgba(255,255,255,.55); padding: 0 14px; color: var(--text); }
.field textarea { min-height: 120px; padding: 12px 14px; }

.contact-head { padding-bottom: 18px; }
.contact-head-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 34px;
  align-items: end;
}
.contact-head-grid p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.contact-quick-card,
.contact-main-card,
.contact-info-card,
.contact-help-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,250,244,.82);
  box-shadow: 0 14px 42px rgba(60, 34, 18, .055);
}
.contact-quick-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}
.contact-quick-card span,
.contact-line span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
}
.contact-quick-card a {
  color: var(--text);
  font-family: var(--number);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.contact-quick-card small {
  color: var(--muted);
  line-height: 1.5;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}
.contact-main-card {
  padding: 34px;
}
.contact-main-card h2 {
  margin: 10px 0 10px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
}
.contact-main-card > p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.75;
}
.contact-form {
  display: grid;
  gap: 2px;
}
.contact-form .btn {
  justify-self: start;
  margin-top: 4px;
}
.contact-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-alert-ok {
  border-color: #b9d7c4;
  background: #eef8f1;
  color: #286342;
}
.contact-side {
  display: grid;
  gap: 18px;
}
.contact-info-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}
.contact-line {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
}
.contact-line:first-of-type {
  border-top: 0;
}
.contact-line b {
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}
.contact-socials .btn {
  min-height: 38px;
  padding: 0 16px;
}
.contact-company-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.contact-company-card p:first-of-type {
  color: var(--text);
}
.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.contact-help-grid article {
  padding: 24px;
}
.contact-help-grid span {
  color: var(--gold-dark);
  font-family: var(--number);
  font-size: 30px;
  font-weight: 800;
}
.contact-help-grid h3 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: 28px;
}
.contact-help-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-page { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 58px; padding-bottom: 44px; }
.gallery-main { position: relative; aspect-ratio: 1.35 / 1; background: #eadcca; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 16px; }
.thumb-row img { aspect-ratio: 1.5 / 1; width: 100%; object-fit: cover; border: 1px solid var(--line); border-radius: 6px; cursor: pointer; }
.product-info h1 { margin: 10px 0; font-family: var(--serif); font-size: 64px; }
.product-info .price { font-family: var(--number); font-size: 34px; font-weight: 800; margin: 22px 0 4px; }
.product-info .price-block { margin: 22px 0 8px; }
.product-info .price-old { font-size: 18px; }
.product-info .price-sale { font-family: var(--number); font-size: 38px; font-weight: 800; }
.product-info .price-omnibus { font-size: 12px; max-width: none; }
.swatch { width: 42px; height: 42px; display: inline-block; border-radius: 50%; border: 2px solid #fff; outline: 1px solid var(--line); margin-right: 12px; }
.product-variant-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin: 10px 0 20px;
}
.product-variant-swatches .variant-swatch {
  width: 100%;
  min-height: 50px;
  padding: 8px 10px;
  border: 1px solid rgba(107, 93, 78, .2);
  border-radius: 8px;
  background: rgba(255,255,255,.72) !important;
  color: #1f1915;
  box-shadow: 0 8px 18px rgba(50, 38, 29, .05);
}
.product-variant-swatches .variant-swatch:hover {
  border-color: rgba(168, 115, 49, .55);
  background: #fffaf4 !important;
}
.product-variant-swatches .variant-swatch span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-width: 3px;
  outline-color: rgba(107, 93, 78, .25);
}
.product-variant-swatches .variant-swatch b {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-variant-swatches .variant-swatch.is-active {
  border-color: var(--gold-dark);
  background: #fffaf4 !important;
  color: #15110e;
  box-shadow: inset 0 0 0 1px rgba(168,115,49,.28), 0 10px 24px rgba(50,38,29,.08);
}
.product-variant-swatches .variant-swatch.is-active span {
  outline: 2px solid var(--gold-dark);
}
.qty { display: inline-flex; border: 1px solid var(--line); height: 42px; }
.qty button, .qty input { width: 44px; border: 0; background: transparent; text-align: center; }
.purchase-panel { margin: 22px 0; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,250,244,.74); }
.product-meta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 18px; }
.product-meta-grid div { padding: 12px; background: rgba(255,255,255,.55); border: 1px solid rgba(229,216,200,.7); border-radius: 6px; }
.product-meta-grid span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.buy-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
.accordion { margin-top: 24px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.accordion details { border-top: 1px solid var(--line); padding: 18px 22px; }
.accordion details:first-child { border-top: 0; }
.accordion summary { cursor: pointer; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.accordion summary::marker { color: var(--gold-dark); }
.accordion details p { margin: 12px 0 0; color: var(--muted); line-height: 1.7; }

/* === Odświeżony katalog i karta produktu === */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.breadcrumbs a { color: var(--muted); transition: color .2s ease; }
.breadcrumbs a:hover { color: var(--gold-dark); }
.breadcrumbs > span { color: rgba(117, 104, 95, .55); }
.breadcrumbs span[aria-current="page"] { color: var(--text); font-weight: 700; }

.catalog-head h1 { letter-spacing: -.012em; }

.catalog-toolbar {
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.66), rgba(255,250,244,.62));
  box-shadow: 0 10px 30px rgba(60, 34, 18, .05);
}
.catalog-toolbar .eyebrow { color: var(--gold-dark); white-space: nowrap; }
.catalog-toolbar .eyebrow:first-child { font-size: 13px; letter-spacing: .04em; color: var(--text); }

.filter-panel .btn-wide { margin-top: 2px; }
.filter-panel .filter-form > .field:first-child label { color: var(--gold-dark); }

.product-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: #dcc7b0;
  box-shadow: 0 24px 50px rgba(60, 34, 18, .13);
}
.product-card h3 a { transition: color .2s ease; }
.product-card:hover h3 a { color: var(--gold-dark); }

.gallery-main img { transition: transform .5s ease; }
.gallery-main:hover img { transform: scale(1.03); }
.thumb-row img { transition: border-color .2s ease, transform .2s ease; }
.thumb-row img:hover { border-color: var(--gold); transform: translateY(-2px); }

@media (min-width: 981px) {
  .catalog-layout { align-items: start; }
  .filter-panel { position: sticky; top: 92px; }
  .product-page { align-items: start; }
  .product-info { position: sticky; top: 92px; }
}

.cart-page-head { padding-bottom: 18px; }
.cart-head-grid {
  max-width: 640px;
}
.cart-page-head p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.cart-payment-marquee {
  margin: 0 auto 22px;
  overflow: hidden;
  border: 1px solid rgba(229,216,200,.86);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255,250,244,.9), rgba(235,245,238,.86), rgba(255,250,244,.9));
  box-shadow: 0 12px 32px rgba(79, 54, 34, .05);
}
.cart-payment-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 10px 14px;
  animation: cartPaymentMarquee 34s linear infinite;
}
.cart-payment-marquee:hover .cart-payment-track {
  animation-play-state: paused;
}
.cart-payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  padding: 0 8px;
  color: #253a30;
}
.cart-payment-pill > span:last-child {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}
.cart-payment-pill b {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-payment-pill small {
  color: #5c6b62;
  font-size: 11px;
}
.payment-method-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 20px;
  border-radius: 5px;
  background: #eef6f0;
  color: #2d684b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
}
@keyframes cartPaymentMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 30px; align-items: start; }
.cart-products-panel { display: grid; gap: 14px; }
.cart-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 2px;
}
.cart-section-head h2 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}
.cart-section-head > b {
  color: var(--gold-dark);
  font-family: var(--number);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.cart-table { display: grid; gap: 12px; }
.cart-row {
  display: grid;
  grid-template-columns: 210px minmax(190px, 1fr) 126px 172px 38px;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(229,216,200,.9);
  border-radius: 8px;
  background: rgba(255,250,244,.82);
  box-shadow: 0 14px 34px rgba(79, 54, 34, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cart-row:hover {
  transform: translateY(-2px);
  border-color: rgba(185,130,57,.34);
  box-shadow: 0 20px 42px rgba(79, 54, 34, .11);
}
.cart-item-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(238,226,213,.55);
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}
.cart-item-main h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}
.cart-item-main h3 a:hover { color: var(--gold-dark); }
.cart-item-main p { margin: 0; line-height: 1.45; }
.cart-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}
.cart-item-tags span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(216,199,181,.82);
  border-radius: 8px;
  background: rgba(255,255,255,.56);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
}
.cart-qty-block {
  display: grid;
  gap: 8px;
  justify-items: start;
}
.cart-qty-block > span,
.cart-price-block .muted {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cart-price-block {
  text-align: right;
}
.cart-price-block b {
  display: inline-block;
  font-family: var(--number);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}
.cart-price-block .muted {
  display: inline-block;
  margin-top: 7px;
  letter-spacing: .08em;
  line-height: 1.35;
  white-space: normal;
}
.cart-underbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 4px; }
.link-button { border: 0; background: transparent; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; cursor: pointer; }
.cart-inline-recommendations {
  margin-top: 18px;
  padding-top: 8px;
}
.cart-inline-recommendations .section-title {
  margin: 0 0 14px;
}
.cart-inline-recommendations .section-title h2 {
  font-size: 34px;
}
.cart-inline-recommendations .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cart-inline-recommendations .product-card h3 {
  font-size: 22px;
}
.cart-inline-recommendations .product-card .body {
  padding: 15px;
}
.remove-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216,199,181,.95);
  border-radius: 50%;
  background: rgba(255,255,255,.62);
  color: var(--gold-dark);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.remove-btn:hover {
  border-color: rgba(138,90,36,.42);
  background: #fff;
}
.order-summary {
  box-shadow: 0 18px 44px rgba(79, 54, 34, .08);
}
.order-summary-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.order-summary h2 { font-size: 34px; margin-top: 0; }
.order-summary-head h2 { margin-bottom: 0; }
.order-summary-head span {
  width: max-content;
  max-width: 100%;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  background: #e7f3eb;
  color: #276244;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.order-summary p { display: flex; justify-content: space-between; gap: 16px; }
.order-summary p b {
  font-family: var(--number);
  font-weight: 800;
}
.summary-total { font-size: 22px; }
.tax-line {
  color: var(--muted);
  font-size: 13px;
}
.tax-line b {
  color: var(--text);
}
.discount-form { display: grid; gap: 10px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.discount-form .field { margin-bottom: 0; }
.discount-list { display: grid; gap: 8px; margin-bottom: 16px; }
.discount-chip {
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #d8c7b5;
  border-radius: 8px;
  background: rgba(255,255,255,.52);
  color: var(--gold-dark);
  font-size: 12px;
}
.discount-chip button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
}
.delivery-note { padding: 12px; border-radius: 8px; background: #f6ede3; color: var(--gold-dark); line-height: 1.45; }
.cart-security-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.cart-security-note span {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cart-security-note p {
  display: block;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.summary-benefits { margin-top: 24px; color: var(--muted); line-height: 1.8; }
.summary-benefits p { display: block; margin: 0 0 8px; }
.payment-trust-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(173,122,53,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.5);
}
.payment-trust-title {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.payment-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(216,199,181,.95);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.payment-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.payment-logo-payu img {
  height: 24px;
}
.payment-logo-blik img {
  height: 28px;
}
.payment-logo-installments {
  gap: 8px;
  color: var(--gold-dark);
}
.payment-logo-installments span {
  font-size: 12px;
  font-weight: 900;
}
.payment-logo-installments img {
  height: 20px;
}
.payment-card-icon {
  position: relative;
  width: 24px;
  height: 16px;
  border: 1px solid rgba(107,93,78,.44);
  border-radius: 4px;
  background: linear-gradient(135deg, #fff 0%, #f6ede3 100%);
  box-shadow: inset 0 4px 0 rgba(173,122,53,.22);
}
.payment-card-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: rgba(107,93,78,.42);
}
.checkout-choice {
  display: grid;
  gap: 10px;
}
.checkout-choice p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.auth-page { min-height: calc(100vh - 110px); display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
.auth-panel { padding: 72px min(8vw, 120px); }
.auth-panel h1 { font-family: var(--serif); font-size: 76px; line-height: .94; margin: 28px 0; }
.auth-link-row { text-align: right; margin: -8px 0 18px; }
.auth-center-row { text-align: center; margin: 28px 0; }
.auth-guest-row { text-align: center; margin: 18px 0 0; }
.logout-button-form button { width: 100%; min-height: 44px; padding: 0 28px; border: 1px solid var(--gold); background: transparent; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; cursor: pointer; }
.auth-image {
  min-height: 720px;
  background: #eadcca;
  overflow: hidden;
}
.auth-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}
.register-image img { object-position: center; }
.auth-page-contained {
  min-height: 0;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(60, 34, 18, .06);
}
.auth-page-contained .auth-panel {
  padding: 58px 64px;
}
.auth-page-contained .auth-image {
  min-height: 560px;
}
.auth-note { color: var(--muted); line-height: 1.8; max-width: 500px; }
.form-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.alert { padding: 14px 18px; border: 1px solid #c98d83; background: #fff1ee; color: #81352d; margin: 16px 0; }

.checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: start; }
.checkout-steps { display: grid; gap: 18px; }
.checkout-step { position: relative; padding-left: 64px; }
.checkout-step h2 { margin-top: 0; }
.step-number { position: absolute; left: 22px; top: 24px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: #fff; font-weight: 700; }
.checkout-mode-card h2 {
  margin: 12px 0 8px;
}
.checkout-mode-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.checkout-mode-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}
.checkout-payment-logos {
  margin: 14px 0 18px;
}
.checkout-summary-payments {
  margin-top: 16px;
}
.bank-transfer-notice {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 16px;
  border: 1px solid #d6b47a;
  border-radius: 8px;
  background: #fff8ec;
  color: var(--ink);
}
.bank-transfer-notice[hidden] { display: none; }
.bank-transfer-notice b { font-size: 15px; }
.bank-transfer-notice small { color: var(--muted); line-height: 1.55; }
.bank-transfer-details {
  white-space: pre-line;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.order-bank-transfer { max-width: 760px; }
.terms-check a { color: var(--gold-dark); text-decoration: underline; }
.checkout-summary { position: sticky; top: 96px; }
.account-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 24px; align-items: start; }
.account-card { position: sticky; top: 96px; }
.account-main, .account-section, .address-form { display: grid; gap: 18px; }
.account-stats, .address-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.account-stats div, .address-card { padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.45); }
.account-stats span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 5px; }
.account-stats small,
.account-order-row strong small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 400;
}
.account-orders { display: grid; gap: 10px; }
.account-order-row { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr) minmax(0, 1fr) minmax(0, .8fr) minmax(0, 1fr); gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.order-items-list p { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.site-footer {
  --footer-green: #173b34;
  --footer-gold: #c28a37;
  --footer-line: #e4d8c8;
  background: linear-gradient(180deg, #fffcf8 0%, #f8f0e7 100%);
  border-top: 1px solid #d9b46f;
  color: #1f1d1b;
}
.site-footer-inner {
  width: min(1460px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.08fr) minmax(210px, .8fr) minmax(240px, .96fr) minmax(250px, 1fr);
  gap: clamp(42px, 5vw, 92px);
  padding: 88px 0 74px;
}
.footer-brand img { width: 174px; max-width: 100%; height: auto; }
.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: #2d2a27;
  font-size: 14px;
  line-height: 1.75;
}
.footer-brand::after {
  content: none;
}
.site-footer .footer-heading {
  margin: 0;
  color: var(--footer-green);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-footer .footer-heading::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin: 22px 0 26px;
  background: var(--footer-gold);
}
.site-footer a,
.site-footer p {
  color: #252321;
  line-height: 1.65;
  margin: 0;
}
.site-footer .socials {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 34px;
}
.site-footer .socials::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 78px;
  height: 1px;
  background: var(--footer-gold);
}
.site-footer .social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2d2a27;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
}
.site-footer .social-link + .social-link {
  padding-left: 18px;
  border-left: 1px solid #d7c7b6;
}
.site-footer a.social-link:hover { color: var(--footer-gold); }
.site-footer .social-link-disabled { cursor: default; }
.site-footer .social-link svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: var(--footer-gold);
}
.site-footer .social-link svg rect,
.site-footer .social-link svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.site-footer .social-link svg path { fill: currentColor; }
.footer-column { min-width: 0; }
.footer-links {
  display: grid;
  align-content: start;
}
.footer-links a {
  position: relative;
  display: block;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--footer-line);
  font-size: 15px;
  text-decoration: none;
}
.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--footer-gold);
  font-size: 26px;
  line-height: 1;
}
.footer-links a:hover { color: var(--footer-gold); }
.footer-contact {
  display: grid;
  align-content: start;
  gap: 22px;
}
.footer-contact .admin-edit-row { margin: -10px 0 0; }
.footer-contact-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  font-size: 14px;
}
.footer-contact-item svg {
  width: 32px;
  height: 32px;
  color: var(--footer-gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact-item strong,
.footer-contact-item span,
.footer-contact-item a {
  display: block;
}
.footer-contact-item strong {
  margin-bottom: 4px;
  font-weight: 700;
}
.footer-contact-item a {
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--footer-gold); }
.footer-trust {
  border-top: 1px solid #d9b46f;
  border-bottom: 1px solid var(--footer-line);
}
.footer-trust-inner {
  width: min(980px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  padding: 34px 0;
}
.footer-trust-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  color: #2f2a25;
  line-height: 1.45;
}
.footer-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #d7c7b6;
}
.footer-trust-item svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--footer-gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-trust-payment img {
  width: 75px;
  height: auto;
  margin-top: 2px;
}
.copyright {
  text-align: center;
  background: #fbf6ef;
  color: #6e6258;
  font-size: 14px;
}
.copyright-inner {
  width: min(1460px, calc(100% - 72px));
  margin: 0 auto;
  padding: 28px 0 30px;
}
.copyright-inner p {
  margin: 0;
  line-height: 1.5;
}
.copyright-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 18px;
}
.copyright-inner a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 24px;
  color: #5f554e;
  line-height: 1.4;
  text-decoration: none;
}
.copyright-inner a + a { border-left: 1px solid #d0c2b2; }
.copyright-inner a:hover { color: var(--gold-dark); }

@media (max-width: 980px) {
  .top-ribbon-inner,
  .site-header-inner,
  .site-footer-inner,
  .footer-trust-inner,
  .copyright-inner {
    width: min(100% - 32px, 1460px);
  }
  .site-header-inner {
    grid-template-columns: 110px 1fr;
    min-height: 0;
    padding-top: 12px;
  }
  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 22px;
    width: 100%;
    margin: 10px 0 0;
    padding: 11px 0 13px;
    overflow-x: auto;
    scrollbar-width: none;
    border-top: 1px solid rgba(229, 216, 200, .7);
  }
  .main-nav::-webkit-scrollbar { display: none; }
  .header-actions { gap: 14px; font-size: 24px; }
  .header-search { width: 100%; margin-top: 10px; }
  .hero, .home-hero, .product-page, .cart-layout, .checkout-grid, .auth-page, .catalog-layout, .story-band, .account-layout { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-copy { padding: 48px 24px; }
  .about-hero .hero-copy { padding: 42px 34px 36px; }
  .about-hero .about-slider { min-height: 380px; }
  .hero-image, .about-slider { min-height: 360px; }
  .home-hero {
    min-height: 0;
    background:
      radial-gradient(circle at 76% 20%, rgba(255,255,255,.8), transparent 22rem),
      linear-gradient(180deg, #fffaf4 0%, #fffaf4 45%, #ead8c1 45%, #d7bea1 100%);
  }
  .home-hero-copy { padding: 48px 24px 34px; }
  .home-hero-media { min-height: 420px; padding: 30px; }
  .home-hero-media::before { inset: 6% 8%; }
  .hero-lifestyle-slider {
    width: min(760px, 94%);
    min-height: 340px;
  }
  .featured-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-grid, .product-grid, .benefits, .site-footer-inner { grid-template-columns: 1fr 1fr; }
  .container { width: min(100% - 32px, 1460px); }
  .filter-panel { order: 2; }
  .checkout-summary, .account-card { position: static; }
  .account-stats { grid-template-columns: 1fr 1fr; }
  .page-head { padding: 42px 0 20px; }
  .page-head h1 { font-size: 56px; }
  .product-page { gap: 30px; }
  .auth-image { min-height: 420px; order: -1; }
  .auth-page-contained .auth-image {
    order: 0;
    min-height: 340px;
  }
  .auth-panel { padding: 48px 24px; }
  .cart-layout, .checkout-grid { gap: 20px; }
  .site-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 36px;
    padding: 56px 0 48px;
  }
  .footer-brand p { max-width: none; }
  .footer-trust-inner { width: min(100% - 32px, 980px); }
  .footer-trust-item { gap: 16px; }
}

.product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0;
  color: var(--footer-green);
  font-size: 12px;
  font-weight: 700;
}

.product-trust-row span,
.product-trust-row a {
  position: relative;
  padding-left: 18px;
}

.product-trust-row span::before,
.product-trust-row a::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}

@media (max-width: 640px) {
  body { font-size: 13px; }
  .top-ribbon {
    height: auto;
    min-height: 32px;
  }
  .top-ribbon-inner {
    width: min(100% - 24px, 1460px);
    min-height: 32px;
    padding-block: 7px;
    font-size: 9px;
    gap: 8px;
    letter-spacing: .08em;
    text-align: center;
    line-height: 1.35;
  }
  .top-ribbon-separator { display: none; }
  .site-header-inner {
    width: min(100% - 24px, 1460px);
    grid-template-columns: 86px 1fr;
  }
  .brand img { width: 76px; }
  .promo-banner-section { padding-top: 18px; }
  .promo-banner-copy { align-content: end; padding: 28px 20px 46px; }
  .promo-banner-copy h2 { font-size: 34px; }
  .promo-banner-dots { left: 20px; right: auto; bottom: 16px; }
  .main-nav {
    gap: 18px;
    font-size: 10px;
    letter-spacing: .12em;
  }
  .header-actions { gap: 10px; font-size: 22px; }
  .header-actions {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: end;
  }
  .header-search {
    grid-column: 1 / -1;
    order: 2;
    min-width: 0;
  }
  .account-link {
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: .08em;
  }
  .cart-link { width: 28px; height: 28px; }
  .container { width: min(100% - 24px, 1460px); }
  .section { margin: 18px auto; }
  .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    font-size: 11px;
    letter-spacing: .1em;
  }
  .hero-copy,
  .home-hero-copy { padding: 36px 18px 28px; }
  .about-hero {
    width: min(100% - 24px, 1460px);
  }
  .about-hero .hero-copy { padding: 34px 20px 28px; }
  .hero h1,
  .home-hero-copy h1 { font-size: 46px; line-height: .98; }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-image,
  .about-slider,
  .home-hero-media { min-height: 340px; }
  .about-hero .about-slider { min-height: 320px; }
  .about-slide-copy {
    left: 14px;
    right: 14px;
    bottom: 76px;
    width: auto;
    padding: 16px;
  }
  .about-slide-copy h2 { font-size: 28px; }
  .about-slider-controls {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .about-slider-controls > button {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }
  .home-hero-media { padding: 20px 12px 44px; }
  .hero-lifestyle-slider {
    width: 100%;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
  .hero-lifestyle-slide img {
    object-position: 56% center;
  }
  .featured-products, .promo-grid, .product-grid, .benefits, .site-footer-inner, .form-grid-2 { grid-template-columns: 1fr; }
  .featured-product {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 104px;
  }
  .featured-product-image { width: 86px; }
  .featured-product b { font-size: 20px; }
  .promo-card { min-height: 156px; padding: 20px; }
  .promo-card h3 { font-size: 25px; }
  .promo-card p,
  .promo-card a { max-width: 58%; }
  .section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .section-title h2 { font-size: 32px; }
  .product-card .body { padding: 16px; }
  .story-band .story-copy { padding: 26px 20px; }
  .story-band h2 { font-size: 32px; }
  .benefits { border-bottom: 0; }
  .benefit {
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 18px;
  }
  .filter-panel,
  .soft-card { padding: 18px; }
  .gallery-main { aspect-ratio: 1 / 1; }
  .thumb-row { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .product-info .price-sale { font-size: 34px; }
  .cart-row {
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 14px;
  }
  .catalog-toolbar, .cart-underbar, .account-order-row { align-items: stretch; grid-template-columns: 1fr; flex-direction: column; }
  .product-meta-grid, .buy-actions, .account-stats, .address-grid { grid-template-columns: 1fr; }
  .checkout-step { padding-left: 18px; padding-top: 54px; }
  .step-number { left: 18px; top: 18px; }
  .cart-item-image { aspect-ratio: 1 / 1; }
  .cart-qty-block,
  .cart-price-block { grid-column: 2; }
  .cart-row > .remove-btn { grid-column: 1 / -1; justify-self: end; }
  .auth-panel h1 { margin: 18px 0; }
  .auth-image { min-height: 300px; }
  .auth-page-contained .auth-image { min-height: 260px; }
  .site-footer-inner {
    width: min(100% - 24px, 1460px);
    gap: 24px;
    padding: 30px 0;
  }
  .footer-trust-inner,
  .copyright-inner { width: min(100% - 24px, 1460px); }
  .page-head h1, .auth-panel h1, .product-info h1 { font-size: 46px; }
}

@media (max-width: 420px) {
  .site-header-inner { grid-template-columns: 74px 1fr; }
  .brand img { width: 66px; }
  .header-actions { gap: 8px; }
  .account-link {
    max-width: 104px;
    padding-inline: 8px;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }
  .hero h1,
  .home-hero-copy h1,
  .page-head h1,
  .auth-panel h1,
  .product-info h1 { font-size: 38px; }
  .hero-lifestyle-slider { aspect-ratio: 3 / 2; }
  .promo-card img {
    width: 42%;
    opacity: .82;
  }
  .promo-card p,
  .promo-card a { max-width: 64%; }
}

/* Mobile storefront polish */
@media (max-width: 980px) {
  body.shop-nav-is-open {
    overflow: hidden;
  }

  .site-header {
    min-height: 64px;
    margin-bottom: 54px;
  }

  .site-header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 64px;
    padding: 10px 0;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .brand img {
    width: 78px;
  }

  .shop-menu-toggle,
  .shop-nav-close {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,250,244,.82);
    color: var(--text);
    cursor: pointer;
  }

  .shop-menu-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    border-color: transparent;
    background: transparent;
  }

  .shop-menu-toggle span,
  .shop-menu-toggle::before,
  .shop-menu-toggle::after,
  .shop-nav-close::before,
  .shop-nav-close::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .shop-menu-toggle span,
  .shop-menu-toggle::before,
  .shop-menu-toggle::after {
    position: absolute;
    left: 9px;
    width: 22px;
    height: 1.5px;
  }

  .shop-menu-toggle::before {
    top: calc(50% - 8px);
  }

  .shop-menu-toggle span {
    top: 50%;
    transform: translateY(-50%);
  }

  .shop-menu-toggle::after {
    top: calc(50% + 7px);
  }

  .shop-nav-close::before { transform: translateY(1px) rotate(45deg); }
  .shop-nav-close::after { transform: translateY(-1px) rotate(-45deg); }

  .shop-nav-close::before,
  .shop-nav-close::after {
    position: absolute;
    margin: 0;
  }

  .main-nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    width: min(86vw, 360px);
    height: 100vh;
    margin: 0;
    padding: 18px;
    overflow-y: auto;
    border: 0;
    background: #fffaf4;
    box-shadow: 22px 0 70px rgba(38, 25, 15, .22);
    transform: translateX(-104%);
    transition: transform .22s ease;
  }

  .shop-nav-is-open .main-nav {
    transform: translateX(0);
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-head img {
    width: 88px;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    border-bottom: 1px solid rgba(229,216,200,.68);
    font-size: 13px;
    letter-spacing: .13em;
  }

  .main-nav a.is-active {
    color: var(--gold-dark);
  }

  .shop-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: block;
    background: rgba(24,17,13,.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
  }

  .shop-nav-is-open .shop-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    justify-content: end;
    gap: 10px;
    font-size: 22px;
  }

  .header-search {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    width: auto;
    margin: 0;
    background: rgba(255,250,244,.98);
    box-shadow: 0 14px 34px rgba(79,54,34,.12);
  }

  .account-link {
    min-width: 42px;
    width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .account-link::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 12px 0 -5px currentColor;
  }

  .cart-link {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,250,244,.82);
  }

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

  .home-hero-copy {
    padding-inline: max(18px, calc((100vw - 720px) / 2 + 24px));
  }

  .product-grid {
    gap: 16px;
  }

  .filter-panel {
    order: 0;
  }

  .catalog-layout {
    gap: 18px;
  }

  .checkout-summary,
  .order-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .top-ribbon-inner {
    justify-content: flex-start;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }

  .site-header-inner {
    width: min(100% - 20px, 1460px);
  }

  .brand img {
    width: 70px;
  }

  .shop-menu-toggle,
  .cart-link,
  .account-link {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

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

  .header-search {
    left: 10px;
    right: 10px;
    height: 42px;
  }

  .home-hero {
    background:
      linear-gradient(180deg, rgba(255,250,244,.96), rgba(255,250,244,.92) 48%, rgba(232,213,190,.82)),
      #ead8c1;
  }

  .home-hero-copy {
    padding: 32px 16px 18px;
  }

  .home-hero-copy h1 {
    max-width: 360px;
    font-size: clamp(39px, 11vw, 48px);
    line-height: .96;
  }

  .home-hero-copy p {
    max-width: 34rem;
    line-height: 1.65;
  }

  .home-hero-media {
    min-height: 0;
    padding: 8px 10px 42px;
  }

  .home-hero-media::before {
    display: none;
  }

  .hero-lifestyle-slider {
    aspect-ratio: 4 / 5;
    max-height: 480px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 22px 56px rgba(62,38,18,.22);
  }

  .hero-lifestyle-slide img {
    border-radius: 0;
    box-shadow: none;
  }

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

  .featured-product {
    grid-template-columns: 92px minmax(0, 1fr);
    background: rgba(255,250,244,.9);
  }

  .promo-grid {
    gap: 12px;
  }

  .promo-card {
    min-height: 142px;
  }

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

  .product-card {
    border-radius: 7px;
    box-shadow: 0 8px 24px rgba(60,34,18,.055);
  }

  .product-card .image {
    aspect-ratio: 1 / 1.08;
  }

  .product-card .body {
    gap: 8px;
    padding: 12px;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .product-card p {
    display: none;
  }

  .product-card .price-block {
    padding-top: 9px;
  }

  .price {
    font-size: 14px;
  }

  .price-old {
    font-size: 11px;
  }

  .price-omnibus {
    font-size: 9px;
  }

  .quick-add .btn {
    min-height: 38px;
    padding-inline: 8px;
    font-size: 9px;
    letter-spacing: .06em;
  }

  .catalog-head {
    padding-top: 32px;
  }

  .catalog-head .lead {
    line-height: 1.6;
  }

  .filter-panel {
    padding: 14px;
  }

  .filter-form {
    gap: 8px;
  }

  .filter-form .field {
    margin-bottom: 8px;
  }

  .catalog-toolbar {
    gap: 10px;
    margin-bottom: 14px;
  }

  .product-page {
    gap: 22px;
  }

  .gallery-main {
    margin-inline: -12px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .thumb-row {
    display: flex;
    gap: 10px;
    margin-inline: -12px;
    padding-inline: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .thumb-row::-webkit-scrollbar {
    display: none;
  }

  .thumb-row img {
    flex: 0 0 92px;
  }

  .product-info h1 {
    margin-top: 8px;
  }

  .purchase-panel {
    padding: 14px;
  }

  .buy-actions {
    position: sticky;
    bottom: 0;
    z-index: 15;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 18px -12px 0;
    padding: 12px;
    border-top: 1px solid var(--line);
    background: rgba(255,250,244,.96);
    backdrop-filter: blur(12px);
  }

  .cart-table {
    border: 0;
    background: transparent;
    display: grid;
    gap: 12px;
  }

  .cart-row {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,250,244,.84);
  }

  .cart-row h3 {
    margin: 0 0 6px;
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1;
  }

  .cart-row .qty {
    width: max-content;
  }

  .order-summary h2 {
    font-size: 30px;
  }

  .checkout-step {
    padding: 60px 16px 18px;
  }

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

  .auth-page-contained {
    border-radius: 8px;
  }

  .auth-page-contained .auth-panel {
    padding: 34px 18px;
  }

  .auth-page-contained .auth-image {
    min-height: 220px;
  }

  .about-hero {
    width: min(100% - 20px, 1460px);
  }

  .about-slide-copy {
    background: rgba(255,250,244,.92);
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .product-grid {
    gap: 10px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card .body {
    padding: 10px;
  }

  .badge {
    min-height: 21px;
    padding-inline: 7px;
    font-size: 9px;
  }

  .product-card .image .badge-row {
    top: 8px;
    left: 8px;
    right: 8px;
  }

  .quick-add .btn {
    min-height: 36px;
  }

  .cart-row {
    grid-template-columns: 82px 1fr;
    padding: 12px;
  }

  .cart-item-image { aspect-ratio: 1 / 1; }
}

@media (min-width: 981px) {
  .order-summary {
    position: sticky;
    top: 96px;
  }
}

@media (max-width: 1280px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

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

  .cart-row {
    grid-template-columns: 170px minmax(0, 1fr) 124px 154px 38px;
  }

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

@media (max-width: 640px) {
  .cart-page-head {
    padding-bottom: 10px;
  }

  .cart-section-head {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cart-section-head,
  .cart-item-tags {
    gap: 10px;
  }

  .cart-payment-track {
    gap: 6px;
    padding-block: 10px;
    animation-duration: 28s;
  }

  .cart-payment-pill {
    gap: 8px;
    padding-inline: 10px;
  }

  .cart-payment-pill small {
    display: none;
  }

  .cart-inline-recommendations {
    margin-top: 12px;
  }

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

  .cart-section-head {
    display: grid;
  }

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

  .cart-section-head > b {
    font-size: 28px;
  }

  .cart-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .cart-item-image { aspect-ratio: 1 / 1; }

  .cart-item-main h3 {
    font-size: 22px;
  }

  .cart-item-tags span {
    min-height: 24px;
    font-size: 10px;
  }

  .cart-qty-block,
  .cart-price-block {
    grid-column: 2;
    text-align: left;
  }

  .cart-price-block b {
    font-size: 25px;
  }

  .cart-row > .remove-btn {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .cart-underbar {
    margin-top: 6px;
  }
}

@media (max-width: 420px) {
  .cart-row {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .cart-item-image { aspect-ratio: 1 / 1; }

  .cart-payment-pill b {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-payment-track {
    animation: none;
    transform: none;
  }
}

/* Reliable media scaling on public pages */
.home-hero img,
.featured-product img,
.promo-card img,
.product-card img,
.story-img img,
.gallery-main img,
.thumb-row img,
.cart-row img,
.auth-image img,
.about-slide img {
  max-width: 100%;
}

.home-hero picture,
.featured-product picture,
.promo-card picture,
.product-card picture,
.story-img picture,
.gallery-main picture,
.thumb-row picture,
.cart-row picture,
.auth-image picture,
.about-slide picture {
  display: contents;
}

.featured-product-image,
.product-card .image,
.story-img,
.gallery-main,
.thumb-row,
.cart-row,
.auth-image,
.about-slide {
  min-width: 0;
}

.featured-product-image img,
.product-card .image img,
.story-img img,
.gallery-main img,
.thumb-row img,
.cart-row img,
.auth-image img,
.about-slide img {
  display: block;
  width: 100%;
  max-width: none;
  object-fit: cover;
}

.gallery-main img,
.auth-image img,
.about-slide img {
  height: 100%;
}

@media (max-width: 640px) {
  .promo-card img {
    height: 100%;
    max-width: 46%;
  }

  .story-img img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .auth-image img,
  .about-slide img {
    min-height: inherit;
  }
}

/* Mobile overflow guards for iOS/Android intrinsic media sizing */
.hero > *,
.home-hero > *,
.catalog-layout > *,
.product-page > *,
.product-page > * > *,
.cart-layout > *,
.checkout-grid > *,
.auth-page > *,
.story-band > *,
.site-footer-inner > *,
.product-grid > *,
.promo-grid > *,
.benefits > *,
.account-layout > *,
.account-order-row > *,
.cart-row > * {
  min-width: 0;
}

.product-card h3,
.featured-product b,
.product-info h1,
.page-head h1,
.section-title h2,
.cart-row h3,
.order-summary p,
.price-omnibus,
.legal-content,
.auth-note,
.lead {
  overflow-wrap: anywhere;
}

/* Compact mobile footer */
@media (max-width: 640px) {
  .site-footer {
    background: linear-gradient(180deg, #fffcf8 0%, #f8f0e7 100%);
  }

  .site-footer-inner {
    width: min(100% - 28px, 1460px);
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 0 34px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    width: 150px;
  }

  .footer-brand p {
    max-width: 360px;
    margin: 20px auto 0;
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-brand::after {
    margin: 26px auto 0;
  }

  .site-footer .socials {
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
  }

  .site-footer .social-link {
    gap: 9px;
    font-size: 14px;
  }

  .site-footer .social-link svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .site-footer .social-link + .social-link {
    padding-left: 14px;
  }

  .site-footer .socials::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .site-footer .footer-heading {
    font-size: 23px;
    letter-spacing: .08em;
  }

  .site-footer .footer-heading::after {
    margin: 16px 0 10px;
  }

  .footer-links a {
    padding: 12px 0 12px 24px;
    font-size: 14px;
  }

  .footer-links a::before {
    top: 10px;
    font-size: 24px;
  }

  .footer-contact {
    gap: 18px;
  }

  .footer-contact-item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
  }

  .footer-contact-item svg {
    width: 28px;
    height: 28px;
  }

  .footer-trust-inner {
    width: min(100% - 28px, 520px);
    grid-template-columns: 1fr;
    padding: 22px 0;
  }

  .footer-trust-item {
    justify-content: flex-start;
    min-height: 0;
    padding: 16px 0;
  }

  .footer-trust-item:not(:last-child) {
    border-bottom: 1px solid var(--footer-line);
  }

  .footer-trust-item:not(:last-child)::after {
    display: none;
  }

  .copyright {
    font-size: 12px;
  }

  .copyright-inner {
    width: min(100% - 28px, 1460px);
    padding: 22px 0 26px;
  }

  .copyright-inner nav {
    gap: 10px 0;
  }

  .copyright-inner a {
    padding: 0 13px;
  }
}

@media (max-width: 380px) {
  .site-footer-inner {
    gap: 26px;
  }

  .site-footer a,
  .site-footer p,
  .site-footer .social-link {
    font-size: 11px;
  }
}

.error-page {
  min-height: 52vh;
  display: grid;
  align-content: center;
  justify-items: start;
  max-width: 820px;
}

.error-page h1 {
  max-width: 700px;
  margin: 12px 0;
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 84px);
  line-height: .98;
}

.error-page p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .main-nav {
    height: 100dvh;
    max-height: 100dvh;
    padding-top: max(18px, env(safe-area-inset-top));
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
  }

  .shop-nav-backdrop {
    min-height: 100dvh;
  }
}

@media (max-width: 640px) {
  .gallery-main,
  .product-info,
  .purchase-panel,
  .product-buy-form {
    max-width: 100%;
  }

  .thumb-row img {
    flex: 0 0 92px;
    width: 92px;
    min-width: 92px;
    max-width: 92px;
  }

  .buy-actions {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .thumb-row img {
    flex-basis: 84px;
    width: 84px;
    min-width: 84px;
    max-width: 84px;
  }
}

@media (max-width: 980px) {
  .contact-head-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-head-grid {
    align-items: stretch;
  }

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

  .contact-help-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-head-grid p {
    font-size: 16px;
  }

  .contact-main-card,
  .contact-info-card,
  .contact-help-grid article,
  .contact-quick-card {
    padding: 18px;
  }

  .contact-main-card h2 {
    font-size: 32px;
  }

  .contact-side,
  .contact-form .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    width: 100%;
  }
}

/* Product gallery thumbnails */
.product-page .thumb-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  overflow: visible;
}

.product-page .thumb-row picture {
  display: block;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f0e6d9;
}

.product-page .thumb-row img {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.product-page .thumb-row picture:has(img:hover),
.product-page .thumb-row picture:has(img:focus-visible) {
  border-color: var(--gold);
}

@media (max-width: 980px) {
  .product-page .thumb-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-inline: 0;
  }
}

@media (max-width: 640px) {
  .product-page .thumb-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .product-page .thumb-row img {
    flex: none;
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .product-page .thumb-row img {
    flex-basis: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}

/* Ukryj wszystkie skróty edycji administratora na stronie sklepu (front). */
.admin-edit-row,
.admin-edit-chip,
a.eyebrow[href*="/admin/"] {
  display: none !important;
}

/* Mobile hardening: final storefront safety layer. */
@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.shop-nav-is-open {
    width: 100%;
    overflow: hidden;
  }

  main,
  .container,
  .flash-wrap,
  .site-header,
  .site-header-inner,
  .site-footer,
  .copyright,
  .top-ribbon {
    max-width: 100%;
  }

  .site-header {
    margin-bottom: 58px;
  }

  .site-header-inner {
    width: calc(100% - 24px);
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .header-actions {
    min-width: 0;
    gap: 8px;
  }

  .header-search {
    max-width: none;
    z-index: 19;
  }

  .main-nav {
    max-width: 360px;
    padding-bottom: max(18px, env(safe-area-inset-bottom, 0px));
  }

  .auth-page,
  .auth-page-contained {
    width: calc(100% - 24px);
    min-height: 0;
    margin-top: 16px;
    overflow: hidden;
  }

  .auth-page-contained {
    display: flex;
    flex-direction: column;
  }

  .auth-page-contained .auth-panel {
    order: 1;
    width: 100%;
    padding: clamp(24px, 7vw, 42px) clamp(16px, 5vw, 28px);
  }

  .auth-page-contained .auth-image {
    order: 2;
    min-height: 220px;
    max-height: 320px;
  }

  .auth-page-contained .auth-image img,
  .auth-page-contained .auth-image picture {
    height: 100%;
  }

  .auth-panel h1 {
    max-width: 100%;
    margin: 14px 0 16px;
    font-size: clamp(38px, 11vw, 52px);
    line-height: .98;
  }

  .auth-note {
    max-width: none;
    line-height: 1.62;
  }

  .auth-panel form {
    display: grid;
    gap: 14px;
  }

  .auth-panel .field input,
  .auth-panel .field select,
  .auth-panel .field textarea,
  .checkout-step .field input,
  .checkout-step .field select,
  .checkout-step .field textarea,
  .order-summary .field input,
  .order-summary .field select,
  .order-summary .field textarea {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .catalog-layout,
  .product-page,
  .cart-layout,
  .checkout-grid,
  .account-layout {
    width: calc(100% - 24px);
    grid-template-columns: minmax(0, 1fr);
  }

  .page-head,
  .catalog-head,
  .cart-page-head {
    width: calc(100% - 24px);
  }

  .checkout-summary,
  .order-summary {
    position: static;
    width: 100%;
  }

  .payment-logo-row,
  .checkout-mode-actions,
  .hero-actions,
  .buy-actions,
  .cart-underbar {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .top-ribbon-inner,
  .site-header-inner,
  .container,
  .flash-wrap,
  .site-footer-inner,
  .footer-trust-inner,
  .copyright-inner,
  .auth-page,
  .auth-page-contained,
  .catalog-layout,
  .product-page,
  .cart-layout,
  .checkout-grid,
  .account-layout,
  .page-head,
  .catalog-head,
  .cart-page-head {
    width: calc(100% - 20px);
  }

  .site-header {
    margin-bottom: 56px;
  }

  .site-header-inner {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 6px;
  }

  .brand img {
    width: 66px;
  }

  .shop-menu-toggle,
  .account-link,
  .cart-link {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-search {
    left: 10px;
    right: 10px;
    height: 44px;
  }

  .main-nav {
    width: min(88vw, 340px);
  }

  .mobile-nav-head {
    min-height: 54px;
  }

  .main-nav a {
    min-height: 50px;
    line-height: 1.25;
  }

  .auth-page-contained .auth-panel {
    padding: 26px 16px 22px;
  }

  .auth-page-contained .auth-image {
    min-height: 150px;
    max-height: 210px;
  }

  .auth-panel h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .auth-link-row,
  .auth-center-row,
  .auth-guest-row {
    text-align: center;
  }

  .auth-link-row {
    margin: 0 0 6px;
  }

  .form-grid-2,
  .checkout-step .form-grid-2,
  .product-meta-grid,
  .buy-actions,
  .account-stats,
  .address-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-step,
  .soft-card,
  .order-summary,
  .checkout-summary {
    min-width: 0;
  }

  .checkout-step {
    padding-right: 14px;
    padding-left: 14px;
  }

  .checkout-summary p,
  .order-summary p,
  .discount-chip,
  .tax-line,
  .summary-total {
    min-width: 0;
    gap: 10px;
  }

  .checkout-summary p span,
  .order-summary p span,
  .discount-chip span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .payment-logo-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .payment-logo {
    min-width: 0;
    white-space: normal;
  }

  .cart-row {
    width: 100%;
    min-width: 0;
  }

  .cart-item-main,
  .cart-qty-block,
  .cart-price-block {
    min-width: 0;
  }

  .cart-underbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

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

  .product-card h3,
  .featured-product b {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .site-header-inner,
  .container,
  .flash-wrap,
  .auth-page,
  .auth-page-contained,
  .catalog-layout,
  .product-page,
  .cart-layout,
  .checkout-grid,
  .page-head,
  .catalog-head,
  .cart-page-head {
    width: calc(100% - 16px);
  }

  .site-header-inner {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .brand img {
    width: 62px;
  }

  .shop-menu-toggle,
  .account-link,
  .cart-link {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
  }

  .header-search {
    left: 8px;
    right: 8px;
  }

  .product-grid {
    gap: 9px;
  }

  .product-card .body {
    padding: 10px 9px;
  }

  .checkout-step,
  .soft-card,
  .order-summary,
  .checkout-summary {
    padding-right: 12px;
    padding-left: 12px;
  }

  .payment-logo-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Mobile nav open-state guard. Keep this after all responsive header rules. */
@media (max-width: 980px) {
  body.shop-nav-is-open .main-nav,
  html body.shop-nav-is-open nav#main-nav {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body.shop-nav-is-open .shop-nav-backdrop {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body:not(.shop-nav-is-open) .main-nav {
    transform: translate3d(-104%, 0, 0);
  }
}

/* Temporary sales pause */
.sales-pause-card {
  max-width: 820px;
  margin-top: 0;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(164, 118, 62, .24);
  text-align: center;
  box-shadow: 0 24px 70px rgba(49, 37, 27, .09);
}

.sales-pause-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  background: #f4eadc;
  color: #8b5e2a;
}

.sales-pause-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.sales-pause-card h2 {
  max-width: 650px;
  margin: 14px auto 12px;
}

.sales-pause-lead,
.sales-pause-apology {
  max-width: 660px;
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.75;
}

.sales-pause-details {
  display: grid;
  gap: 0;
  max-width: 650px;
  margin: 28px auto;
  border: 1px solid rgba(164, 118, 62, .2);
  border-radius: 14px;
  background: #fffdf9;
  text-align: left;
  overflow: hidden;
}

.sales-pause-details div {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 15px 18px;
}

.sales-pause-details div + div {
  border-top: 1px solid rgba(164, 118, 62, .16);
}

.sales-pause-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.sales-pause-details dd {
  margin: 0;
  font-weight: 650;
  line-height: 1.55;
}

.sales-pause-signature {
  margin: 14px 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
}

.sales-pause-card .checkout-mode-actions {
  justify-content: center;
}

@media (max-width: 620px) {
  .sales-pause-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sales-pause-card .checkout-mode-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Professional quality pass: accessibility and mobile conversion. */
.hero-lifestyle-dot {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-lifestyle-dot::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(138, 90, 36, .34);
  border-radius: 50%;
  background: rgba(255, 250, 244, .78);
  box-shadow: 0 4px 16px rgba(62, 38, 18, .12);
}

.hero-lifestyle-dot.is-active {
  background: transparent;
}

.hero-lifestyle-dot.is-active::before {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
}

.site-footer .footer-heading {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}

.contact-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 640px) {
  .top-ribbon-inner {
    justify-content: center;
    min-height: 38px;
    padding: 6px 8px;
    font-size: 9px;
    line-height: 1.3;
  }

  .top-ribbon-item {
    display: inline;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
  }

  .top-ribbon-item:not(:first-child)::before {
    content: "•";
    margin: 0 6px;
  }

  .top-ribbon-item-optional {
    display: none;
  }

  .home-hero-copy {
    padding: 26px 16px 16px;
  }

  .home-hero-copy h1 {
    margin-block: 12px;
    font-size: clamp(37px, 10.5vw, 44px);
  }

  .home-hero-copy p {
    margin-bottom: 18px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 46px;
  }

  .home-hero-media {
    padding: 4px 10px 28px;
  }

  .hero-lifestyle-slider {
    aspect-ratio: 3 / 2;
    max-height: 310px;
  }

  .hero-lifestyle-dots {
    bottom: 4px;
    gap: 0;
  }

  .hero-lifestyle-dot {
    width: 40px;
    height: 40px;
  }

  .hero-lifestyle-dot::before {
    inset: 16px;
  }

  .featured-products-section {
    margin-top: 8px;
    padding-top: 28px;
  }

  .product-buy-form {
    position: sticky;
    bottom: 8px;
    z-index: 12;
    margin-inline: -8px;
    padding: 12px;
    border: 1px solid rgba(164, 118, 62, .24);
    border-radius: 12px;
    background: rgba(255, 250, 244, .96);
    box-shadow: 0 16px 40px rgba(45, 35, 25, .18);
    backdrop-filter: blur(12px);
  }

  .product-buy-form .eyebrow,
  .product-buy-form .qty {
    display: none;
  }

  .product-buy-form .buy-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0;
  }

  .product-buy-form .btn {
    min-height: 48px;
  }

  .footer-links a,
  .footer-contact a,
  .copyright a {
    min-height: 38px;
  }
}

@media (max-width: 380px) {
  .top-ribbon-inner {
    font-size: 8px;
    letter-spacing: .04em;
  }

  .home-hero-copy h1 {
    font-size: 36px;
  }
}
