:root {
  --ink: #171412;
  --muted: #766d66;
  --line: #eee5dc;
  --hairline: rgba(46, 36, 29, 0.09);
  --paper: #fffdf9;
  --soft: #f7f0ea;
  --blush: #ead2d4;
  --rose: #b66f74;
  --gold: #b78a3b;
  --gold-dark: #7a5820;
  --black: #15120f;
  --green: #264338;
  --shadow: 0 26px 70px rgba(22, 20, 18, 0.14);
  --soft-shadow: 0 18px 46px rgba(34, 27, 21, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.86), rgba(255, 253, 249, 0) 520px),
    var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1160px, calc(100% - 32px));
  max-width: 100%;
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 16px 16px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 66px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(18, 16, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  pointer-events: none;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header > * {
  pointer-events: auto;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(22, 20, 18, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #15120f, #4b3618 52%, #b78a3b);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.84;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  align-content: center;
  gap: 5px;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
}

.site-header.is-scrolled .cart-pill {
  color: #fff;
  background: var(--black);
}

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

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 132px 16px 76px;
  color: #fff;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.82), rgba(12, 10, 8, 0.32) 55%, rgba(12, 10, 8, 0.58)),
    url("assets/brand/hero-01.jpeg") center 42% / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(12, 10, 8, 0.82), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin-left: max(0px, calc((100vw - 1160px) / 2));
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.faq-grid h2,
.contact-grid h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

.hero h1 {
  margin-top: 10px;
  font-size: clamp(3.1rem, 12vw, 7.8rem);
  max-width: 900px;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.hero-actions,
.contact-actions,
.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(22, 20, 18, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(22, 20, 18, 0.12);
}

.button-primary {
  color: #fff;
  background: linear-gradient(145deg, #171310, #2a211b);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero .button-primary,
.drawer-actions .button-primary {
  color: var(--ink);
  background: #fff;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button-soft {
  color: var(--ink);
  border-color: var(--line);
  background: var(--soft);
}

.button-text {
  min-height: auto;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.button.is-disabled {
  opacity: 0.48;
  pointer-events: none;
}

.hero-strip {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 680px;
}

.hero-strip span {
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.intro-band,
.about-section,
.faq-section {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: end;
  padding: 54px 0;
}

.intro-grid h2 {
  margin: 8px 0 0;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.intro-grid h2 span {
  display: inline;
}

.intro-grid p,
.section-heading p,
.about-copy p,
.policy-grid p,
.tips-grid p,
.faq-list p,
.contact-grid p {
  color: var(--muted);
}

.needs-section,
.shop-section,
.tips-section {
  padding: 72px 0;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 24px;
}

.section-heading h2,
.about-copy h2,
.faq-grid h2,
.contact-grid h2 {
  max-width: 100%;
  font-size: clamp(2.1rem, 5vw, 4rem);
  overflow-wrap: anywhere;
}

.section-heading p {
  margin: 10px 0 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.shop-tools {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.search-box {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box input,
.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.search-box input {
  padding: 0 14px;
}

.search-box input:focus,
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183, 138, 59, 0.16);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-tabs button {
  min-height: 40px;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(34, 27, 21, 0.04);
}

.filter-tabs button.is-active {
  color: #fff;
  background: linear-gradient(145deg, var(--green), #1d3028);
  border-color: var(--green);
}

.needs-section {
  padding-top: 42px;
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.needs-grid article {
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #fff9f3);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.needs-grid h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

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

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

.product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  scroll-margin-top: 116px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transform: translateZ(0);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  will-change: transform;
}

.product-card:hover {
  border-color: rgba(183, 138, 59, 0.18);
  box-shadow: 0 24px 58px rgba(34, 27, 21, 0.13);
  transform: translateY(-3px);
}

.product-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(145deg, #fbf4ed, #ffffff);
  border: 0;
  outline: 0;
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
  text-decoration: none;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
  backface-visibility: hidden;
  transform: scale(1.006);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-card:hover .product-media img {
  filter: saturate(1.07) contrast(1.035);
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 6px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(34, 27, 21, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.product-body h3 {
  min-height: 3rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-row strong {
  color: var(--gold-dark);
  font-size: 1rem;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 8px;
}

.variant-field {
  display: grid;
  gap: 7px;
  margin: 2px 0 4px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.variant-field select {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 0.86rem;
  text-transform: none;
}

.card-actions .button {
  min-height: 42px;
  padding-inline: 12px;
  font-size: 0.88rem;
}

.quick-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  min-height: 42px;
  color: var(--ink);
  background: rgba(247, 240, 234, 0.86);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.product-media,
.card-actions button {
  scroll-margin-top: 126px;
}

.about-section {
  padding: 84px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.about-copy p {
  font-size: 1.05rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stats-row div {
  padding: 16px;
  background: rgba(247, 240, 234, 0.76);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(34, 27, 21, 0.05);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.stats-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.84fr 0.66fr;
  gap: 12px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img + img {
  height: 330px;
}

.policy-section {
  padding: 72px 0;
  color: #fff;
  background: var(--black);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.policy-grid article {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.policy-grid h3,
.tips-grid h3 {
  margin: 10px 0 8px;
  font-size: 1.3rem;
}

.policy-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tips-grid article {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fffaf5);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.tips-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.tips-grid h3,
.tips-grid p {
  margin-left: 18px;
  margin-right: 18px;
}

.tips-grid p {
  margin-bottom: 20px;
}

.faq-section {
  padding: 74px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 36px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(34, 27, 21, 0.04);
}

.faq-list summary {
  padding: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.contact-section {
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(90deg, var(--green), #171311);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-section .button-primary {
  color: var(--ink);
  background: #fff;
}

.contact-section .button-soft {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.cart-drawer,
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background: rgba(12, 10, 8, 0.56);
  backdrop-filter: blur(8px);
}

.cart-drawer.is-open,
.product-modal.is-open {
  display: block;
}

.drawer-panel {
  position: absolute;
  inset: 0 0 0 auto;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto auto;
  width: min(460px, 100%);
  padding: 22px;
  overflow: auto;
  background: linear-gradient(180deg, #fffdf9, #fbf4ee);
  box-shadow: var(--shadow);
}

.drawer-intro {
  margin: 10px 0 0;
  color: var(--muted);
}

.drawer-head,
.cart-total,
.modal-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.drawer-head h2 {
  margin: 2px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(34, 27, 21, 0.06);
  font-size: 1.7rem;
  line-height: 1;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 0;
}

.empty-cart {
  padding: 24px;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(34, 27, 21, 0.05);
}

.cart-item img {
  width: 72px;
  height: 88px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item h3 {
  margin: 0;
  font-size: 0.94rem;
}

.cart-item p {
  margin: 4px 0 8px;
  color: var(--gold-dark);
  font-weight: 900;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-row button {
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
}

.qty-row button[data-remove],
.qty-row button[data-checkout-remove] {
  width: auto;
  min-width: 72px;
  padding: 0 10px;
}

.order-form {
  display: grid;
  gap: 10px;
}

.order-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-form input,
.order-form select,
.order-form textarea {
  padding: 0 12px;
}

.order-form textarea {
  min-height: 86px;
  padding-top: 12px;
  resize: vertical;
}

.cart-total {
  margin-top: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.cart-total strong {
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.drawer-actions .button {
  flex: 1;
}

.drawer-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.drawer-reassurance span {
  padding: 7px 9px;
  color: var(--gold-dark);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.modal-panel {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.12fr);
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 18px;
  background: linear-gradient(180deg, #fffdf9, #fbf4ee);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
}

.modal-gallery {
  display: grid;
  gap: 10px;
}

.modal-gallery > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: linear-gradient(145deg, #fbf4ed, #ffffff);
  border-radius: var(--radius);
  filter: saturate(1.03) contrast(1.02);
}

.modal-thumbs {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.modal-thumbs button {
  flex: 0 0 60px;
  height: 72px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: none;
}

.modal-thumbs button.is-active {
  border-color: var(--gold);
}

.modal-thumbs img {
  width: 60px;
  height: 72px;
  object-fit: cover;
}

.modal-copy {
  align-self: center;
  padding: 22px 12px 22px 0;
}

.modal-copy h2 {
  margin: 8px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.modal-copy p {
  color: var(--muted);
}

.product-meta-row,
.modal-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.product-meta-row span,
.modal-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.modal-subtitle {
  margin: 18px 0 8px;
  font-size: 0.86rem;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.modal-copy ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.modal-copy li {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font-weight: 700;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.modal-info-grid article {
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.modal-info-grid h3 {
  margin: 0 0 6px;
  font-size: 0.86rem;
}

.modal-info-grid p {
  margin: 0;
  font-size: 0.88rem;
}

.related-products {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.related-products h3 {
  margin: 0;
  font-size: 0.92rem;
}

.related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.related-list button {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 58px;
  padding: 7px;
  text-align: left;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.related-list img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
}

.related-list span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.modal-bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.modal-variant {
  margin: 12px 0;
}

.modal-variant .variant-field {
  margin: 0;
}

.modal-bottom strong {
  color: var(--gold-dark);
  font-size: 1.3rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  color: #fff;
  background: #1f8f54;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(31, 143, 84, 0.32);
  font-weight: 900;
}

.whatsapp-icon {
  display: none;
  width: 26px;
  height: 26px;
}

.whatsapp-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-footer {
  padding: 22px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid div {
  display: flex;
  gap: 14px;
  font-weight: 800;
}

.product-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(183, 138, 59, 0.12), transparent 30vw),
    linear-gradient(180deg, #fffdf9, #fbf4ee);
}

.product-page-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1180px, calc(100% - 28px));
  min-height: 66px;
  margin: 14px auto 0;
  padding: 10px 14px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(34, 27, 21, 0.08);
  backdrop-filter: blur(18px);
}

.product-page-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 800;
}

.product-main {
  width: min(1180px, calc(100% - 28px));
  margin: 34px auto 80px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--gold-dark);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: start;
}

.product-detail-gallery,
.product-detail-content {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.product-detail-gallery {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.product-detail-main-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fbf4ed, #ffffff);
}

.product-detail-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.product-detail-thumbs button {
  flex: 0 0 62px;
  width: 62px;
  height: 74px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 6px;
}

.product-detail-thumbs button.is-active {
  border-color: var(--gold);
}

.product-detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.product-detail-secondary img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.product-detail-content {
  padding: clamp(22px, 4vw, 38px);
}

.product-detail-content h1 {
  margin: 8px 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.product-price {
  margin: 22px 0;
  color: var(--gold-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.product-detail-content > .variant-field {
  margin: -8px 0 16px;
  max-width: 360px;
}

.product-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.product-feedback {
  min-height: 24px;
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-weight: 800;
}

.product-feedback a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-description-block,
.product-info-panels article,
.product-related-section {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.product-description-block {
  margin-top: 20px;
  padding: 18px;
}

.product-description-block h2,
.product-info-panels h2 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.raw-description {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.68;
}

.product-info-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.product-info-panels article {
  padding: 14px;
}

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

.product-related-section {
  margin-top: 34px;
  padding: 28px;
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 104px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(34, 27, 21, 0.05);
  font-weight: 900;
}

.related-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 6px;
}

.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(183, 138, 59, 0.12), transparent 34vw),
    linear-gradient(180deg, #fffdf9, #fbf4ee);
}

.checkout-main {
  width: min(1180px, calc(100% - 28px));
  margin: 34px auto 80px;
}

.checkout-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.checkout-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
}

.checkout-hero p {
  width: min(700px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkout-steps span {
  padding: 8px 12px;
  color: var(--gold-dark);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-weight: 900;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr) minmax(280px, 0.78fr);
  gap: 16px;
  align-items: start;
}

.checkout-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.checkout-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.checkout-card-head h2,
.checkout-summary h2 {
  margin: 4px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.checkout-card-head a {
  color: var(--gold-dark);
  font-weight: 900;
}

.checkout-items {
  display: grid;
  gap: 12px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.checkout-item img {
  width: 92px;
  height: 112px;
  object-fit: cover;
  border-radius: 6px;
}

.checkout-item span {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-item h3 {
  margin: 4px 0;
  font-size: 1rem;
}

.checkout-item p {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-weight: 900;
}

.checkout-empty {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.checkout-empty h3,
.checkout-empty p {
  margin: 0;
}

.checkout-empty p {
  color: var(--muted);
}

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

.checkout-fields label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-fields input,
.checkout-fields select,
.checkout-fields textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  outline: 0;
}

.checkout-fields textarea {
  min-height: 100px;
  padding-top: 12px;
  resize: vertical;
}

.checkout-field-wide {
  grid-column: 1 / -1;
}

.checkout-summary {
  position: sticky;
  top: 100px;
}

.checkout-summary-lines {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.checkout-summary-lines p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.checkout-summary-lines span,
.checkout-note {
  color: var(--muted);
}

.checkout-note {
  margin: 0 0 18px;
}

.checkout-submit {
  width: 100%;
}

.checkout-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkout-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--gold-dark);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
  }

  .nav-links {
    position: absolute;
    inset: calc(100% + 8px) 0 auto;
    display: none;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

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

  .needs-grid,
  .shop-tools,
  .about-grid,
  .policy-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
  }

  .modal-copy {
    padding: 0;
  }

  .product-detail-layout,
  .product-info-panels,
  .product-related-grid {
    grid-template-columns: 1fr;
  }

  .product-page-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .checkout-summary {
    position: static;
  }

  .product-page-nav {
    justify-content: flex-start;
    order: 3;
    grid-column: 1 / -1;
    overflow-x: auto;
  }

  .product-detail-gallery {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    inset: 10px 10px auto;
    gap: 10px;
    min-height: 60px;
  }

  .brand span:last-child {
    display: none;
  }

  .product-page-header .brand span:last-child {
    display: block;
  }

  .cart-pill span {
    display: inline;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 16px 112px;
  }

  .hero-bg {
    background-position: 58% 50%;
    transform: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .hero-strip {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: auto;
    left: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    box-shadow: 0 10px 24px rgba(31, 143, 84, 0.28);
  }

  .floating-whatsapp .whatsapp-label {
    display: none;
  }

  .floating-whatsapp .whatsapp-icon {
    display: block;
  }

  .intro-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .section-heading,
  .shop-tools,
  .about-grid,
  .faq-grid,
  .contact-grid {
    min-width: 0;
    max-width: 100%;
  }

  .intro-grid > *,
  .section-heading > *,
  .shop-tools > *,
  .about-grid > *,
  .faq-grid > *,
  .contact-grid > * {
    min-width: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .product-body {
    padding: 12px;
  }

  .product-body h3 {
    min-height: 4.4rem;
    font-size: 0.92rem;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .quick-view {
    width: 100%;
  }

  .stats-row,
  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img + img {
    height: 320px;
  }

  .policy-grid,
  .needs-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .drawer-panel {
    padding: 18px;
  }

  .modal-panel {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    padding: 12px;
  }

  .modal-bottom,
  .modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .modal-actions .button {
    width: 100%;
  }

  .related-list {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-grid div {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-page-header {
    top: 8px;
    width: calc(100% - 20px);
    margin-top: 8px;
  }

  .product-main {
    width: calc(100% - 20px);
    margin-top: 24px;
  }

  .checkout-main {
    width: calc(100% - 20px);
    margin-top: 24px;
  }

  .checkout-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .checkout-card {
    padding: 18px;
  }

  .checkout-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .checkout-item img {
    width: 78px;
    height: 96px;
  }

  .product-detail-content {
    padding: 18px;
  }

  .product-action-row {
    flex-direction: column;
  }

  .product-action-row .button {
    width: 100%;
  }

  .product-detail-content h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .product-related-section {
    padding: 18px;
  }

  .related-card {
    grid-template-columns: 72px 1fr;
  }

  .related-card img {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 420px) {
  .site-header {
    inset: 8px 8px auto;
    grid-template-columns: auto 46px auto;
    gap: 8px;
    min-height: 56px;
    padding: 8px;
  }

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

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .cart-pill {
    min-height: 42px;
    padding: 0 10px;
    gap: 7px;
    font-size: 0.82rem;
  }

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

  .hero {
    min-height: 100svh;
    display: grid;
    align-content: end;
    gap: 10px;
    padding: 90px 14px 14px;
  }

  .hero-content {
    width: 100%;
    margin-left: 0;
  }

  .hero-bg {
    background-position: 56% 50%;
  }

  .hero h1 {
    font-size: clamp(2.42rem, 13vw, 3.2rem);
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.42;
  }

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

  .hero .button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero-strip {
    position: relative;
    inset: auto;
    gap: 6px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    width: 100%;
    max-width: none;
    align-items: start;
  }

  .hero-strip span {
    padding: 6px 9px;
    font-size: 0.72rem;
    max-width: 100%;
    white-space: normal;
    min-width: 0;
    justify-self: start;
  }

  .floating-whatsapp {
    width: 48px;
    height: 48px;
    min-height: 48px;
  }

  .intro-grid h2,
  .section-heading h2,
  .about-copy h2,
  .faq-grid h2,
  .contact-grid h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.35rem);
    line-height: 1.08;
    word-break: break-word;
    hyphens: auto;
  }

  .intro-grid h2 span {
    display: block;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 24px);
  }

  .needs-section,
  .shop-section,
  .tips-section {
    padding: 54px 0;
  }

  .section-heading {
    gap: 10px;
  }

  .intro-grid h2,
  .section-heading h2,
  .about-copy h2,
  .faq-grid h2,
  .contact-grid h2 {
    font-size: clamp(1.42rem, 7.4vw, 1.78rem);
    line-height: 1.12;
  }

  .section-heading p,
  .about-copy p {
    font-size: 0.92rem;
  }

  .hero-strip span {
    padding: 5px 7px;
    font-size: 0.64rem;
  }
}

@media (max-width: 420px) and (max-height: 640px) {
  .hero {
    padding-top: 84px;
    padding-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 2.9rem);
  }

  .hero-copy {
    font-size: 0.82rem;
  }

  .hero-strip span {
    padding: 5px 8px;
    font-size: 0.68rem;
  }
}
