:root {
  --ivory: #fffaf0;
  --cream: #fbf2df;
  --warm-cream: #f4e4c6;
  --champagne: #f7dfae;
  --soft-gold: #e8bf6a;
  --gold: #c8922f;
  --deep-gold: #8b5d16;
  --mahogany: #2f1c0b;
  --text: #33210f;
  --muted: #725a3d;
  --glass: rgba(255, 255, 255, 0.80);
  --glass-rich: rgba(255, 250, 240, 0.82);
  --border: rgba(200, 146, 47, 0.30);
  --shadow: 0 28px 90px rgba(103, 63, 14, 0.18);
  --shadow-strong: 0 32px 110px rgba(104, 61, 9, 0.25);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232,191,106,0.32), transparent 34rem),
    radial-gradient(circle at 90% 20%, rgba(200,146,47,0.18), transparent 28rem),
    linear-gradient(135deg, var(--ivory) 0%, var(--cream) 42%, #fff7e7 100%);
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 72%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 55px rgba(87, 51, 8, 0.14);
}
.header-inner {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
  filter: drop-shadow(0 10px 22px rgba(127, 82, 18, 0.16));
  transition: transform .25s ease, filter .25s ease;
}
.brand:hover { transform: translateY(-2px); filter: drop-shadow(0 16px 32px rgba(127, 82, 18, 0.22)); }
.logo-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  padding: 4px;
  background: linear-gradient(145deg, #fff8df, var(--gold), #fff3c7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 38px rgba(141, 91, 18, .28);
}
.logo-wrap::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(232,191,106,.45), transparent 62%);
  z-index: -1;
}
.brand-logo {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.75);
}
.brand-title {
  font-family: "Playfair Display", Georgia, serif;
  color: #6f4711;
  font-weight: 800;
  font-size: clamp(1.02rem, 1.7vw, 1.54rem);
  letter-spacing: .095em;
  text-transform: uppercase;
  line-height: 1.04;
  text-shadow: 0 1px 0 rgba(255,255,255,.7), 0 12px 24px rgba(113, 70, 12, .18);
}
.brand-subtitle {
  margin-top: 5px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .30em;
  text-transform: uppercase;
}

.nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(116px, 1fr));
  gap: 10px;
  justify-self: end;
  width: min(780px, 100%);
}
.nav-btn {
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255,255,255,.90), rgba(247,223,174,.40));
  border: 1px solid rgba(255,255,255,.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -14px 22px rgba(200,146,47,.08),
    0 13px 30px rgba(103, 63, 14, .13),
    0 2px 0 rgba(112, 73, 15, .08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  color: #5e3e12;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}
.nav-btn:hover,
.nav-btn.active {
  transform: translateY(-5px) scale(1.02);
  color: #251605;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(200,146,47,.34));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -16px 24px rgba(200,146,47,.16),
    0 22px 46px rgba(103, 63, 14, .24),
    0 0 0 1px rgba(200,146,47,.22);
}
.nav-icon {
  width: 23px;
  height: 23px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(200,146,47,.38);
  box-shadow: 0 4px 12px rgba(127, 82, 18, .16);
  flex: 0 0 auto;
}

.menu-toggle,
.menu-button { display: none; }

.menu-button {
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 15px;
  border-radius: 18px;
  cursor: pointer;
  user-select: none;
  color: #5e3e12;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(247,223,174,.48));
  border: 1px solid rgba(255,255,255,.76);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.96),
    inset 0 -14px 20px rgba(200,146,47,.10),
    0 15px 34px rgba(103, 63, 14, .18),
    0 2px 0 rgba(112, 73, 15, .10);
  backdrop-filter: blur(20px) saturate(165%);
  -webkit-backdrop-filter: blur(20px) saturate(165%);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.menu-button:hover,
.menu-toggle:checked + .menu-button {
  transform: translateY(-3px);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(200,146,47,.36));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -16px 24px rgba(200,146,47,.16),
    0 22px 46px rgba(103, 63, 14, .24),
    0 0 0 1px rgba(200,146,47,.22);
}
.menu-label {
  font-size: .70rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.menu-gift {
  position: relative;
  width: 30px;
  height: 26px;
  border-radius: 9px;
  background: linear-gradient(145deg, #fff8df, var(--soft-gold) 48%, #9d6818);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 8px 18px rgba(127, 82, 18, .22);
}
.menu-gift::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 0 0 1px rgba(140,91,19,.10);
}
.menu-gift::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 10px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 0 0 1px rgba(140,91,19,.10);
}
.menu-gift span {
  position: absolute;
  left: 50%;
  top: -7px;
  width: 24px;
  height: 10px;
  transform: translateX(-50%);
}
.menu-gift span::before,
.menu-gift span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 13px;
  height: 10px;
  border: 2px solid #c8922f;
  background: rgba(255,255,255,.36);
  border-radius: 999px 999px 999px 4px;
}
.menu-gift span::before { left: 0; transform: rotate(-28deg); }
.menu-gift span::after { right: 0; transform: rotate(28deg) scaleX(-1); }

.header-image-frame {
  width: 100%;
  height: clamp(320px, 54vw, 720px);
  overflow: hidden;
  background: var(--warm-cream);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 22px 70px rgba(91, 58, 13, .13);
}
.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02) brightness(1.01);
  transform: scale(1.002);
  transition: transform 1s ease, filter 1s ease;
}
.header-image-frame:hover .header-image {
  transform: scale(1.028);
  filter: saturate(1.10) contrast(1.04) brightness(1.03);
}
.header-spacer { height: 34px; }

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}
.page-intro {
  position: relative;
  margin-top: -20px;
  margin-bottom: 46px;
  padding: clamp(28px, 4vw, 56px);
  text-align: center;
}
.glass {
  background: var(--glass-rich);
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-gold);
  font-size: .78rem;
  line-height: 1.6;
  font-weight: 900;
  letter-spacing: .30em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  color: #6e4610;
}
h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  letter-spacing: .065em;
  text-transform: uppercase;
}
h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}
h3 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}
.lead {
  max-width: 860px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.86;
}

.section { padding: 34px 0 70px; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  padding: clamp(24px, 3vw, 34px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(200,146,47,.44);
}
.card p, .info-list p {
  color: var(--muted);
  line-height: 1.78;
  margin: 0;
}
.gold-line {
  width: 88px;
  height: 1px;
  margin: 22px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff9ed;
  background: linear-gradient(145deg, #d7a546, #8c5b13);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 18px 40px rgba(112,73,15,.24);
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.cta:hover { transform: translateY(-5px); filter: brightness(1.05); box-shadow: inset 0 1px 0 rgba(255,255,255,.68), 0 26px 52px rgba(112,73,15,.30); }
.cta.secondary {
  color: #5e3e12;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(247,223,174,.58));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  background: var(--warm-cream);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 18px 52px rgba(103,63,14,.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .65s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(200,146,47,.16));
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.12) contrast(1.04); }
.gallery-item:hover::after { opacity: 1; }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.contact-box {
  padding: clamp(26px, 3vw, 42px);
}
.contact-line {
  padding: 18px 0;
  border-bottom: 1px solid rgba(200,146,47,.20);
}
.contact-line:last-child { border-bottom: 0; }
.contact-label {
  display: block;
  color: var(--deep-gold);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-value {
  font-family: "Playfair Display", Georgia, serif;
  color: #5f3d0e;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.store-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.store-pill {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.70);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 12px 28px rgba(103,63,14,.08);
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  margin-top: 42px;
  padding: 42px 0;
  background: rgba(255,255,255,.52);
  border-top: 1px solid rgba(200,146,47,.24);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  line-height: 1.7;
}
.footer strong { color: #6e4610; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 1fr; justify-items: center; }
  .brand { justify-content: center; min-width: 0; }
  .nav { justify-self: stretch; width: 100%; grid-template-columns: repeat(5, 1fr); }
  .nav-btn { min-width: 0; font-size: .66rem; padding: 0 8px; }
}
@media (max-width: 780px) {
  .site-header { border-bottom-color: rgba(200,146,47,.20); }
  .header-inner {
    width: min(100% - 22px, 1440px);
    min-height: 86px;
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    gap: 10px 12px;
    padding: 10px 0;
  }
  .brand { justify-content: flex-start; min-width: 0; }
  .menu-button { display: inline-flex; justify-self: end; }
  .nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top;
    transition: max-height .34s ease, opacity .24s ease, transform .30s ease, padding .30s ease;
    padding: 0;
  }
  .menu-toggle:checked ~ .nav {
    max-height: 460px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    padding: 6px 0 10px;
  }
  .nav-btn {
    height: 42px;
    min-height: 0;
    border-radius: 18px;
    padding: 0 8px;
    gap: 6px;
    font-size: .58rem;
    letter-spacing: .055em;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.94),
      inset 0 -10px 16px rgba(200,146,47,.08),
      0 9px 20px rgba(103,63,14,.12);
  }
  .nav-btn:hover,
  .nav-btn.active {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.98),
      inset 0 -12px 18px rgba(200,146,47,.14),
      0 14px 26px rgba(103,63,14,.20),
      0 0 0 1px rgba(200,146,47,.20);
  }
  .nav-icon { width: 18px; height: 18px; }
  .header-image-frame { height: clamp(270px, 68vw, 460px); }
  .grid-3, .grid-2, .gallery-grid, .contact-panel { grid-template-columns: 1fr; }
  .page-intro { margin-top: -8px; }
  h1 { font-size: clamp(2.1rem, 11vw, 4.2rem); }
  .brand-title { font-size: 1rem; letter-spacing: .075em; }
  .brand-subtitle { font-size: .58rem; letter-spacing: .21em; }
  .logo-wrap { width: 62px; height: 62px; }
}
@media (max-width: 430px) {
  .header-inner { width: min(100% - 18px, 1440px); }
  .brand { gap: 10px; }
  .logo-wrap { width: 54px; height: 54px; }
  .brand-title { font-size: .78rem; letter-spacing: .055em; }
  .brand-subtitle { font-size: .48rem; letter-spacing: .15em; }
  .menu-button { min-height: 42px; padding: 0 10px; border-radius: 15px; gap: 7px; }
  .menu-label { font-size: .56rem; letter-spacing: .12em; }
  .menu-gift { width: 24px; height: 21px; border-radius: 7px; }
  .menu-gift::after { top: 8px; height: 3px; }
  .menu-gift::before { width: 3px; }
  .menu-gift span { width: 20px; height: 8px; top: -6px; }
  .menu-gift span::before,
  .menu-gift span::after { width: 11px; height: 8px; border-width: 2px; }
  .nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .nav-btn { height: 38px; border-radius: 15px; padding: 0 6px; font-size: .50rem; letter-spacing: .035em; gap: 4px; }
  .nav-icon { width: 15px; height: 15px; }
  .page-intro { padding: 24px 18px; }
}


/* Requested updates: full-visible home header, full gallery images, mobile product previews */
.home-hero {
  height: auto;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #fff8eb, #f6e2ba);
}
.home-hero .header-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}
.gallery-item {
  aspect-ratio: auto;
  padding: 10px;
  background: rgba(255, 250, 240, .72);
}
.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 19px;
  background: #fffaf0;
}
.gallery-item:hover img {
  transform: none;
  filter: saturate(1.08) contrast(1.03);
}

.section-heading {
  padding: clamp(24px, 3vw, 40px);
  text-align: center;
  margin-bottom: 24px;
}
.products-section { padding-top: 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255,255,255,.66);
  width: 100%;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  color: inherit;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, filter .28s ease;
}
.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(200,146,47,.46);
  outline: none;
}
.product-media {
  display: block;
  aspect-ratio: 3 / 4;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(247,223,174,.34));
  border-bottom: 1px solid rgba(200,146,47,.18);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
  background: #f8f8f8;
  box-shadow: 0 14px 36px rgba(103,63,14,.10);
}
.product-body {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
}
.product-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.18;
  font-weight: 800;
  color: #6e4610;
}
.product-meta {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.product-meta strong { color: var(--deep-gold); }
.preview-pill {
  justify-self: start;
  margin-top: 6px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff8ec;
  background: linear-gradient(145deg, #d7a546, #8c5b13);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.56), 0 12px 26px rgba(112,73,15,.20);
}

body.modal-open { overflow: hidden; }
.product-preview {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.product-preview.is-open { display: flex; }
.preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(38, 23, 5, .48);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}
.preview-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(88vh, 880px);
  overflow: auto;
  border-radius: 34px;
  padding: clamp(18px, 3vw, 30px);
}
.preview-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(200,146,47,.26);
  color: #5e3e12;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 30px rgba(103,63,14,.16);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.preview-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 28px;
  align-items: center;
}
.preview-image-wrap {
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(247,223,174,.34));
  border: 1px solid rgba(255,255,255,.70);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 18px 42px rgba(103,63,14,.12);
}
.preview-image-wrap img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 22px;
  background: #f8f8f8;
}
.preview-content h2 { margin-right: 52px; }
.preview-details {
  display: grid;
  gap: 12px;
  margin: 20px 0 26px;
}
.preview-details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,146,47,.18);
}
.preview-details strong { color: var(--deep-gold); }

@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .home-hero { aspect-ratio: 16 / 9; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { border-radius: 24px; }
  .product-media { aspect-ratio: 4 / 5; padding: 10px; }
  .product-body { padding: 15px 15px 17px; gap: 7px; }
  .product-name { font-size: 1.12rem; }
  .product-meta { font-size: .86rem; }
  .preview-layout { grid-template-columns: 1fr; gap: 18px; }
  .preview-panel { max-height: 90vh; border-radius: 26px; }
  .preview-content h2 { margin-right: 40px; }
}
@media (max-width: 430px) {
  .home-hero { aspect-ratio: 16 / 9; }
  .section-heading { padding: 22px 16px; }
  .product-media { aspect-ratio: 3 / 4; }
  .preview-pill { font-size: .64rem; padding: 8px 11px; }
}


/* Refund Policy section and page */
.refund-cta-section { padding-top: 0; }
.refund-cta-card {
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.refund-cta-card h2 { margin-bottom: 8px; }
.refund-cta-card .lead { margin: 0; max-width: 680px; }
.refund-policy-button {
  min-width: 220px;
  min-height: 58px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    0 22px 52px rgba(112,73,15,.30),
    0 0 0 1px rgba(200,146,47,.20);
}
.policy-section .container {
  display: grid;
  gap: 20px;
}
.policy-card {
  padding: clamp(22px, 3vw, 36px);
}
.policy-card h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  margin-bottom: 14px;
}
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.78;
  font-size: 1rem;
}
.policy-card p { margin: 0 0 12px; }
.policy-card p:last-child { margin-bottom: 0; }
.policy-card ul {
  margin: 12px 0 18px;
  padding-left: 22px;
}
.policy-card li { margin: 8px 0; }
.policy-card strong,
.policy-contact-box strong { color: var(--deep-gold); }
.policy-contact-box {
  margin: 16px 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.70);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 12px 28px rgba(103,63,14,.08);
}
.policy-contact-box p { margin: 0 0 8px; }
.policy-contact-box p:last-child { margin-bottom: 0; }
@media (max-width: 780px) {
  .refund-cta-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .refund-policy-button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }
  .policy-card { border-radius: 24px; }
}


/* Business policy button groups and footer legal links */
.policy-button-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  min-width: min(720px, 100%);
}
.policy-button-row .cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  line-height: 1.25;
}
.policy-cta-card {
  align-items: center;
}
.policy-link-card .policy-button-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  max-width: 760px;
}
.inline-policy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  background: linear-gradient(145deg, #d8a84a, #8b5d16);
  box-shadow: 0 14px 30px rgba(112,73,15,.20), inset 0 1px 0 rgba(255,255,255,.34);
}
.footer-legal {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-legal a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #6e4610;
  font-weight: 800;
  font-size: .78rem;
  border: 1px solid rgba(200,146,47,.22);
  background: rgba(255,255,255,.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 8px 18px rgba(103,63,14,.08);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.footer-legal a:hover {
  transform: translateY(-2px);
  background: rgba(247,223,174,.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 13px 26px rgba(103,63,14,.14);
}
@media (max-width: 980px) {
  .policy-button-row {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .policy-link-card .policy-button-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 780px) {
  .policy-cta-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .footer-legal {
    width: 100%;
  }
  .footer-legal a {
    flex: 1 1 100%;
  }
}
