:root {
  --ink: #211c1d;
  --muted: #6f6265;
  --line: #e7dddd;
  --paper: #fffafa;
  --soft: #f7eeee;
  --accent: #9e3150;
  --accent-dark: #741f39;
  --gold: #bd8a3b;
  --green: #57725e;
  --shadow: 0 18px 45px rgba(62, 35, 42, 0.12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: white;
  padding: 10px;
  z-index: 20;
}
.skip-link:focus { left: 10px; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.top-bar {
  background: #cdbc4b;
  color: #4a3326;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  z-index: 10;
}
.header-wrap {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: min(330px, 48vw);
  height: auto;
  object-fit: contain;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
}
.site-nav a { text-decoration: none; }
.cart-pill {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #6a564c;
  border-radius: 8px;
  padding: 10px 18px;
  color: #5a3829;
  background: white;
  text-decoration: none;
  font-size: 18px;
}
.cart-icon {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}
.cart-badge {
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -14px;
  margin-top: -22px;
  border-radius: 999px;
  background: #adca5c;
  color: white;
  font-size: 13px;
  font-weight: 700;
}
.contact-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #adbf5b;
  color: white;
  padding: 12px 32px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}
.hero-slider {
  position: relative;
  min-height: clamp(420px, 58vw, 700px);
  overflow: hidden;
  background: #3b2c22;
  border-bottom: 1px solid var(--line);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(63, 45, 28, 0.52);
}
.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  text-align: center;
}
.hero-caption h1 {
  margin: 0;
  color: #b7cc60;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  min-width: 56px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #3d2b22;
  font-weight: 700;
  cursor: pointer;
}
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.slider-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}
.slider-dots button.is-active {
  background: #b7cc60;
}
.page-intro h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: var(--accent-dark); }
.button.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
.button-small { min-height: 40px; padding: 9px 13px; font-size: 14px; }
.button.full { width: 100%; }
.section { padding: 58px 0; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.section-heading h2, .cart-summary h2 { margin: 0; font-size: 30px; }
.section-heading a { color: var(--accent); font-weight: 700; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(62, 35, 42, 0.06);
}
.product-media {
  display: block;
  background: var(--soft);
  aspect-ratio: 1 / 1;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-body { padding: 16px; }
.product-title {
  display: block;
  min-height: 48px;
  text-decoration: none;
  font-weight: 700;
}
.price {
  margin: 8px 0 14px;
  color: var(--green);
  font-weight: 700;
}
.price.large { font-size: 26px; }
.page-intro {
  padding: 58px 0 28px;
}
.page-intro p { color: var(--muted); max-width: 720px; }
.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 10px;
}
.category-links a {
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: 48px;
  padding: 58px 0 34px;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.gallery-strip img {
  aspect-ratio: 1 / 1;
}
.breadcrumbs {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.product-info h1 { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.05; }
.product-actions {
  display: flex;
  align-items: end;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
label { display: grid; gap: 7px; font-weight: 700; }
.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.check-row input { width: auto; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  background: white;
}
.product-actions input { width: 92px; }
.fine-print { color: var(--muted); font-size: 14px; }
.stock {
  color: var(--green);
  font-weight: 700;
}
.stock.out-of-stock { color: var(--accent-dark); }
.product-meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: 18px;
}
.price del {
  color: var(--muted);
  margin-right: 8px;
}
.price ins {
  color: var(--green);
  text-decoration: none;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.prose { max-width: 780px; }
.legal-page {
  padding-bottom: 70px;
}
.prose h2, .prose h3 { margin-top: 28px; }
.prose li { margin: 7px 0; }
.sitemap-page {
  padding-top: 18px;
}
.sitemap-page h2 {
  margin-top: 30px;
}
.sitemap-page a {
  color: var(--accent);
}
.sitemap-columns {
  columns: 2;
  column-gap: 46px;
}
.sitemap-columns li {
  break-inside: avoid;
  margin-bottom: 8px;
}
.cart-layout, .checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 24px 0 70px;
}
.cart-items {
  display: grid;
  gap: 12px;
}
.cart-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}
.cart-row img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 6px;
}
.cart-row h3 { margin: 0 0 4px; font-size: 16px; }
.cart-row-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}
.cart-summary {
  align-self: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  position: sticky;
  top: 104px;
}
.cart-summary p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.form {
  display: grid;
  gap: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.honeypot { display: none; }
.narrow {
  max-width: 760px;
  padding-bottom: 70px;
}
.compact .cart-row {
  grid-template-columns: 56px minmax(0, 1fr);
}
.compact .cart-row img { width: 56px; height: 56px; }
.compact .cart-row-controls { display: none; }
.lightbox[hidden] { display: none; }
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(42, 34, 36, 0.88);
}
.lightbox img {
  max-width: min(92vw, 1040px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.92);
  color: #2a2224;
  border-radius: 8px;
  min-width: 48px;
  height: 44px;
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.lightbox-close {
  top: 18px;
  right: 18px;
  width: 44px;
  min-width: 44px;
  padding: 0;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.site-footer {
  border-top: 1px solid var(--line);
  background: #2a2224;
  color: white;
  padding: 40px 0 22px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}
.footer-logo { width: 64px; height: 64px; object-fit: contain; background: white; border-radius: 8px; }
.site-footer nav {
  display: grid;
  gap: 8px;
}
.site-footer a { color: white; text-decoration: none; }
.copyright { text-align: center; color: #d8cfd1; font-size: 14px; margin: 28px 0 0; }
@media (max-width: 920px) {
  .product-detail, .cart-layout, .checkout-grid { grid-template-columns: 1fr; }
  .header-wrap {
    min-height: 104px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
    gap: 12px;
  }
  .header-actions { justify-content: flex-start; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cart-summary { position: static; }
}
@media (max-width: 640px) {
  .top-bar {
    min-height: 26px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .header-wrap {
    min-height: 0;
    gap: 8px;
    padding: 8px 0 12px;
  }
  .brand img { width: min(210px, 62vw); }
  .header-actions { gap: 8px; }
  .site-nav {
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 14px;
  }
  .cart-pill, .contact-button {
    min-height: 40px;
    font-size: 14px;
    padding: 7px 12px;
  }
  .cart-pill { gap: 8px; }
  .cart-badge {
    min-width: 22px;
    height: 22px;
    margin-left: -12px;
    margin-top: -20px;
    font-size: 12px;
  }
  .hero-slider { min-height: 420px; }
  .hero-caption h1 { font-size: 44px; }
  .slider-arrow { top: auto; bottom: 48px; transform: none; }
  .product-grid { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 64px minmax(0, 1fr); }
  .cart-row img { width: 64px; height: 64px; }
  .cart-row-controls { grid-column: 1 / -1; }
  .sitemap-columns { columns: 1; }
  .lightbox { padding: 18px; }
  .lightbox-nav {
    bottom: 18px;
    top: auto;
  }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
}