:root {
  --green: #1a3321;
  --green-deep: #102018;
  --green-mid: #2c4a35;
  --copper: #8b5a2b;
  --brown: #5d3a1a;
  --cream: #f7f3ea;
  --cream-2: #efe7d6;
  --paper: #fbf8f2;
  --gold: #d4a24a;
  --gold-deep: #c49032;
  --teal: #6f9b9b;
  --ink: #1c1915;
  --muted: #6b6258;
  --line: rgba(26, 51, 33, 0.12);
  --white: #fff;
  --shadow: 0 18px 50px rgba(26, 51, 33, 0.12);
  --radius: 18px;
  --header-h: 108px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.sp-theme {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--copper); }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.7rem); }
h3 { font-size: 1.15rem; font-family: var(--font-sans); letter-spacing: 0.08em; text-transform: uppercase; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--green);
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus { left: 12px; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 10px;
  font-weight: 600;
}

.btn,
a.btn,
button.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none !important;
}
.btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--copper);
  color: var(--cream) !important;
  transform: translateY(-1px);
}
.btn-gold { background: var(--gold); color: var(--green-deep) !important; }
.btn-gold:hover { background: var(--gold-deep); color: var(--green-deep) !important; }
.btn-outline {
  background: transparent;
  color: var(--green) !important;
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--cream) !important; }

/* Topbar */
.topbar {
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.topbar-track {
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding: 9px 0;
}
.topbar .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  /* background: rgba(247, 243, 234, 0.94); */
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 18px;
  min-height: var(--header-h);
}
.site-logo {
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 106px;
  width: auto;
  object-fit: contain;
  background: transparent;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--green);
}

.primary-nav {
  display: flex;
  align-items: stretch;
}
.primary-nav .nav-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.primary-nav .nav-list > li {
  display: flex;
  align-items: stretch;
}
.primary-nav a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.primary-nav a.is-active,
.primary-nav a:hover { color: var(--copper); }

.has-mega { position: static; }
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  padding: 28px 0 34px;
}
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 28px;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.mega-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.mega-kicker {
  margin: 0 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}
.mega-grid,
.drawer-mega {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.mega-card {
  display: flex;
  flex-direction: column;
  color: var(--green) !important;
  padding: 0 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.mega-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cream-2);
}
.mega-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.mega-card:hover .mega-thumb img { transform: scale(1.06); }
.mega-copy {
  padding: 10px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-copy strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}
.mega-copy em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.78rem;
}

.header-tools { display: flex; align-items: center; align-self: center; gap: 6px; }
.nav-toggle { align-self: center; }
.search-toggle,
.header-cart {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}
.header-search { position: relative; }
.search-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: min(380px, 86vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: none;
  z-index: 20;
}
.header-search.is-open .search-panel { display: block; }
.ajax-search-form {
  display: flex;
  gap: 8px;
  background: var(--cream);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
}
.ajax-search-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 0;
  outline: none;
}
.ajax-search-form button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  cursor: pointer;
}
.ajax-search-results { margin-top: 10px; }
.ajax-search-list { list-style: none; margin: 0; padding: 0; }
.ajax-search-list a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  color: var(--ink);
}
.ajax-search-list a:hover { background: var(--cream); }
.ajax-search-list img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; }
.ajax-search-list strong { display: block; font-size: 0.92rem; }
.ajax-search-list em { font-style: normal; color: var(--copper); font-size: 0.85rem; }
.ajax-search-all {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ajax-empty { padding: 12px; color: var(--muted); font-size: 0.9rem; }

.cart-count {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
}
.cart-count[data-count="0"] { display: none; }

.site-drawer { display: none; }
.drawer-backdrop { display: none; }
.drawer-backdrop[hidden] { display: none !important; }

/* Hero — split: solid copy + full photo, fixed height */
.hero { position: relative; background: var(--cream); }
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 640px;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) 1.18fr;
}
.hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) 1.18fr;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-media {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 48px 40px 48px 8%;
  height: 100%;
  z-index: 2;
}
.hero-panel {
  max-width: 460px;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
  color: var(--ink);
}
.hero-panel h1 {
  color: var(--green);
  max-width: 13ch;
  margin: 0 0 14px;
}
.hero-panel .eyebrow {
  color: var(--copper);
  margin-bottom: 14px;
}
.hero-lede {
  font-size: 1.05rem;
  max-width: 40ch;
  color: var(--muted);
  margin: 0 0 26px;
  line-height: 1.6;
}
.hero-cta,
.hero-panel .hero-cta {
  background: var(--green) !important;
  color: var(--cream) !important;
  min-height: 50px;
  padding: 0 28px;
}
.hero-cta:hover,
.hero-panel .hero-cta:hover {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
}
.hero-controls {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 4;
  pointer-events: none;
}
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--paper);
  color: var(--green);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 8px 22px rgba(16, 32, 24, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.2s ease;
}
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-slider:hover .hero-prev,
.hero-slider:hover .hero-next,
.hero-slider:focus-within .hero-prev,
.hero-slider:focus-within .hero-next {
  opacity: 1;
  visibility: visible;
}
.hero-prev:hover,
.hero-next:hover { background: var(--gold); }

.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head p { color: var(--muted); }
.section-cta { text-align: center; margin-top: 36px; }

/* Products */
.products-home {
  padding-top: 64px;
  padding-bottom: 64px;
}
ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-product-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 51, 33, 0.06);
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sp-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(26, 51, 33, 0.12);
}
.sp-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-2);
}
.sp-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease, transform 0.5s ease;
}
.sp-img-hover { opacity: 0; }
.sp-product-card:hover .sp-img-main { opacity: 0; transform: scale(1.05); }
.sp-product-card:hover .sp-img-hover { opacity: 1; transform: scale(1.05); }
.sp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 2;
}
.sp-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--cream);
}
.sp-card-body h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  letter-spacing: 0;
  text-transform: none;
  margin: 8px 0 6px;
  line-height: 1.25;
}
.sp-card-body h2 a { color: var(--green); }
.sp-card-price,
.woocommerce ul.products li.product .price {
  color: var(--copper);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.woocommerce ul.products li.product .price del {
  color: var(--muted);
  opacity: 0.7;
  margin-right: 6px;
  font-weight: 500;
}
.sp-card-excerpt {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0 0 16px;
  min-height: 2.6em;
  flex: 1;
}

.sp-product-card .star-rating {
  position: relative;
  width: 5.6em;
  height: 1em;
  font-size: 13px;
  line-height: 1;
  overflow: hidden;
  color: transparent;
  margin: 0 0 2px;
}
.sp-product-card .star-rating::before {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  color: #ddd2c2;
  letter-spacing: 0.12em;
  font-family: Georgia, "Times New Roman", serif;
}
.sp-product-card .star-rating span {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  white-space: nowrap;
  height: 1em;
  color: transparent;
}
.sp-product-card .star-rating span::before {
  content: "★★★★★";
  color: var(--gold);
  letter-spacing: 0.12em;
  font-family: Georgia, "Times New Roman", serif;
}

.sp-product-card a.button,
.sp-product-card a.add_to_cart_button,
.sp-product-card .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto !important;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--green) !important;
  color: var(--cream) !important;
  font-size: 0.72rem !important;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 1px 0 rgba(16, 32, 24, 0.15);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.sp-product-card a.button:hover,
.sp-product-card a.add_to_cart_button:hover,
.woocommerce ul.products li.product a.button:hover {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
  transform: translateY(-1px);
}
.sp-product-card a.button.loading,
.sp-product-card a.button.is-adding {
  pointer-events: none;
  opacity: 0.92;
}
.sp-product-card a.button.loading .btn-spinner,
.sp-product-card a.button.is-adding .btn-spinner {
  border-color: rgba(247, 243, 234, 0.28);
  border-top-color: var(--cream);
}
.sp-product-card a.button.is-added,
.sp-product-card a.button.added {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
  animation: sp-added-pop 0.4s ease;
}
@keyframes sp-added-pop {
  0% { transform: scale(0.96); }
  55% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
a.added_to_cart,
.added_to_cart.wc-forward {
  display: none !important;
}

/* Collections */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 240px;
  color: var(--cream) !important;
}
.collection-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-card:hover img { transform: scale(1.06); }
.collection-label {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 20px 18px;
  background: linear-gradient(transparent, rgba(16, 32, 24, 0.82));
  display: flex;
  flex-direction: column;
}
.collection-label strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
}
.collection-label em { font-style: normal; opacity: 0.85; font-size: 0.88rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.about-photo img { border-radius: 20px; width: 100%; height: 460px; object-fit: cover; }
.about-copy p { color: var(--muted); }

.reviews-home { background: var(--cream-2); }
.reviews-carousel {
  position: relative;
  padding: 0 52px;
}
.reviews-viewport { overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s ease;
}
.review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 22px 22px;
  box-shadow: 0 10px 28px rgba(26, 51, 33, 0.06);
  min-height: 240px;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.review-stars { color: #ddd2c2; font-size: 0.95rem; letter-spacing: 0.08em; line-height: 1; }
.review-stars .is-on { color: var(--gold); }
.review-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green);
  margin-top: 4px;
}
.review-place {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
  font-family: var(--font-serif);
  font-style: italic;
}
.reviews-nav {
  position: absolute;
  top: 42%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(26, 51, 33, 0.08);
}
.reviews-prev { left: 0; }
.reviews-next { right: 0; }
.reviews-nav:hover { background: var(--green); color: var(--cream); }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.reviews-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 51, 33, 0.22);
  cursor: pointer;
}
.reviews-dots button.is-active { background: var(--gold); }

.newsletter-home { padding-top: 30px; }
.newsletter-band {
  background: var(--green);
  color: var(--cream);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.newsletter-band h2 { color: var(--cream); }
.newsletter-band p { color: rgba(247, 243, 234, 0.8); }
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.newsletter-form input[type="email"] {
  flex: 1 1 160px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--cream);
  color: var(--ink);
}
.newsletter-form button[type="submit"],
.newsletter-band .btn,
.newsletter-band button,
.footer-newsletter button[type="submit"] {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--gold) !important;
  color: var(--green-deep) !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}
.newsletter-form button[type="submit"]:hover,
.newsletter-band .btn:hover,
.footer-newsletter button[type="submit"]:hover {
  background: var(--gold-deep) !important;
  color: var(--green-deep) !important;
  transform: none;
}
.newsletter-form button[type="submit"]:disabled,
.footer-newsletter button[type="submit"]:disabled {
  opacity: 0.85;
  cursor: wait;
}
.newsletter-form.is-loading button[type="submit"] {
  pointer-events: none;
}
.btn-spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(16, 32, 24, 0.25);
  border-top-color: var(--green-deep);
  border-radius: 50%;
  animation: sp-spin 0.6s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes sp-spin {
  to { transform: rotate(360deg); }
}
.form-note { width: 100%; margin: 4px 0 0; font-size: 0.88rem; }
.form-note.is-ok { color: var(--gold); }
.form-note.is-err { color: #e8b4a2; }

.section.contact-home { padding: 48px 0 56px; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px 32px;
  align-items: start;
}
.contact-grid h2 { margin-bottom: 8px; }
.contact-grid > div > p { margin: 0 0 10px; }
.contact-form-wrap {
  background: var(--white);
  padding: 20px 22px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(26, 51, 33, 0.05);
}
.contact-form-wrap .wpcf7 { margin: 0; }
.contact-form-wrap .wpcf7 form { margin: 0; }
.sp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}
.sp-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.sp-form-grid .full { grid-column: 1 / -1; }
.wpcf7 p { margin: 0; }
.wpcf7-form-control-wrap { display: block; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 9px 12px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}
.wpcf7 select { min-height: 40px; }
.wpcf7 textarea { min-height: 84px; resize: vertical; }
.wpcf7 input[type="submit"],
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  margin: 4px 0 0;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7-submit:hover { background: var(--copper); }
.wpcf7-response-output { margin: 8px 0 0 !important; padding: 8px 10px !important; font-size: 0.88rem; }
.wpcf7-not-valid-tip { font-size: 0.75rem; margin-top: 2px; }
.contact-aside { color: var(--muted); margin-top: 14px !important; font-size: 0.92rem; line-height: 1.55; }

.page-wrap { padding: 48px 0 72px; }
.page-hero {
  padding: 56px 0 20px;
  background: linear-gradient(180deg, var(--cream-2), var(--paper));
  text-align: center;
}
.center-copy { text-align: center; padding: 80px 0; }
.shop-page-head { text-align: center; margin: 20px 0 36px; }
.shop-intro { color: var(--muted); max-width: 52ch; margin: 0 auto; }

/* Footer — cloned structure from Bespoke Furniture */
.site-footer { background: var(--green-deep); color: var(--cream); margin-top: 40px; }
.footer-cta {
  background: var(--green);
  border-bottom: 1px solid rgba(247, 243, 234, 0.08);
  padding: 36px 0;
  text-align: center;
}
.footer-cta h2 { color: var(--cream); margin: 0; }
.footer-cta .eyebrow { color: var(--gold); }
.footer-main { padding: 52px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 1.1fr;
  gap: 32px;
}
.footer-logo { height: 140px; width: auto; margin-bottom: 12px; background: transparent; padding: 0; }
.footer-col h3 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 0.78rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links a,
.footer-col a { color: var(--cream); }
.footer-links a:hover,
.footer-col a:hover { color: var(--gold); }
.footer-links li { margin: 0 0 8px; }
.footer-phone { font-size: 1.1rem; }
.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
}
.footer-newsletter input[type="email"] {
  min-width: 0;
  width: 100%;
  background: #fff;
  color: var(--ink);
  border: 0;
}
.footer-newsletter input::placeholder { color: var(--muted); }
.footer-newsletter .form-note {
  grid-column: 1 / -1;
  width: auto;
  flex: none;
  order: unset;
}
.footer-bottom {
  border-top: 1px solid rgba(247, 243, 234, 0.08);
  padding: 18px 0 28px;
}
.footer-bottom-inner { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.pay-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pay-icons img {
  display: block;
  height: 24px;
  width: auto;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(247, 243, 234, 0.12);
}
.copyright { margin: 0; font-size: 0.85rem; opacity: 0.75; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* WooCommerce polish */
.woocommerce ul.products,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
  width: 100%;
  float: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after { display: none !important; content: none !important; }
.woocommerce ul.products li.product,
ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.shop-main { padding: 18px 0 64px; }
.sp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 8px 0 22px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.sp-breadcrumb a { color: var(--muted); }
.sp-breadcrumb a:hover { color: var(--green); }
.sp-bc-sep { color: var(--gold); font-weight: 600; }

.sp-single { margin-top: 0; }
.sp-product-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px 48px;
  align-items: start;
  margin-bottom: 48px;
}
.sp-gallery-col { position: relative; }
.woocommerce div.product.sp-single div.images,
.woocommerce div.product .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
}
.woocommerce-product-gallery {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery .flex-viewport {
  flex: 1;
  width: auto !important;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream-2);
}
.woocommerce-product-gallery__image img,
.woocommerce div.product div.images img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}
.woocommerce-product-gallery .flex-control-thumbs,
.woocommerce-product-gallery ol.flex-control-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 84px;
  margin: 0 !important;
  padding: 0;
  list-style: none;
  float: none !important;
}
.woocommerce-product-gallery .flex-control-thumbs li {
  width: 84px !important;
  float: none !important;
  margin: 0 !important;
}
.woocommerce-product-gallery .flex-control-thumbs img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.55;
  cursor: pointer;
  border: 2px solid transparent;
  aspect-ratio: auto;
}
.woocommerce-product-gallery .flex-control-thumbs img.flex-active {
  opacity: 1;
  border-color: var(--green);
}
.woocommerce-product-gallery__trigger {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream) !important;
  box-shadow: var(--shadow);
}
.woocommerce span.onsale {
  background: var(--gold);
  color: var(--green-deep);
  left: 108px;
  top: 14px;
  z-index: 4;
  border-radius: 999px;
  padding: 6px 12px;
  min-height: 0;
  line-height: 1;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sp-gallery-col .onsale { position: absolute; }

.woocommerce div.product.sp-single .summary {
  width: 100% !important;
  float: none !important;
  padding-top: 8px;
}
.woocommerce div.product .product_title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 10px;
  color: var(--green);
}
.woocommerce div.product .woocommerce-product-rating {
  margin: 0 0 12px;
}
.woocommerce div.product p.price {
  color: var(--copper);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 14px;
}
.woocommerce div.product p.price del {
  color: var(--muted);
  font-size: 1rem;
  margin-right: 8px;
  opacity: 0.75;
}
.woocommerce div.product p.price ins { text-decoration: none; background: none; }
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 20px;
}
.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 18px !important;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.woocommerce div.product form.cart .quantity {
  margin: 0;
}
.woocommerce div.product form.cart .qty {
  width: 72px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  background: var(--white);
}
.woocommerce div.product form.cart .button {
  flex: 1;
  min-height: 48px;
  margin: 0 !important;
}
.woocommerce div.product .product_meta {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.woocommerce div.product .product_meta a { color: var(--green); }
.sp-product-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}
.sp-product-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}
.sp-product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.woocommerce div.product .woocommerce-tabs {
  margin: 8px 0 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px 22px 22px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 8px 0 0;
  margin: 0 0 8px;
  border: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: 0;
  border-radius: 999px;
  margin: 0 8px 8px 0;
  padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 8px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--green);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--cream); }
.woocommerce-Tabs-panel > h2:first-child { display: none; }
.woocommerce-Tabs-panel { color: var(--muted); padding-top: 8px !important; }
.woocommerce-Tabs-panel ul { padding-left: 18px; }

.related.products { margin-top: 8px; }
.related.products > h2 {
  font-family: var(--font-display);
  margin-bottom: 22px;
}
.related.products ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin-top: 0;
}
.related.products .sp-card-excerpt { display: none; }
.related.products .sp-card-media { aspect-ratio: 1 / 1; }

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background: var(--cream);
  border-top-color: var(--green);
}
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: var(--cream);
  color: var(--green);
}
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; }
.woocommerce #reviews #comments ol.commentlist li {
  background: var(--cream);
  padding: 16px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 1100px) {
  .mega-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .site-logo img { height: 76px; }
  .sp-product-stage { gap: 28px; }
}

@media (max-width: 900px) {
  :root { --header-h: 84px; }
  .nav-toggle { display: flex; order: -1; }
  .primary-nav { display: none; }
  .site-logo { justify-self: center; }
  .header-inner { grid-template-columns: 44px 1fr auto; }
  .site-logo img { height: 68px; }

  .site-drawer {
    display: block;
    position: fixed;
    inset: 0 auto 0 0;
    width: min(420px, 88vw);
    background: var(--cream);
    z-index: 80;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    overflow: auto;
    padding: 18px 18px 40px;
    box-shadow: var(--shadow);
  }
  body.nav-open .site-drawer { transform: none; }
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(16, 32, 24, 0.45);
    z-index: 70;
  }
  body.nav-open .drawer-backdrop { display: block; }
  .drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  .drawer-close {
    border: 0;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    color: var(--green);
    cursor: pointer;
  }
  .drawer-nav { display: grid; gap: 4px; margin-bottom: 18px; }
  .drawer-nav a {
    padding: 10px 4px;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    border-bottom: 1px solid var(--line);
  }
  .drawer-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
  }
  .drawer-mega {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .drawer-mega .mega-copy strong { font-size: 1rem; }

  ul.products,
  .woocommerce ul.products,
  .collection-grid,
  .about-grid,
  .newsletter-band,
  .contact-grid,
  .sp-form-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-band { padding: 32px 22px; }
  .sp-product-stage { grid-template-columns: 1fr; gap: 24px; }
  .related.products ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .review-card { flex-basis: calc((100% - 22px) / 2); }
  .reviews-carousel { padding: 0 46px; }
  .hero-slider {
    display: block;
    height: auto;
  }
  .hero-slide,
  .hero-slide.is-active {
    position: relative;
    grid-template-columns: 1fr;
    height: auto;
    opacity: 0;
  }
  .hero-slide.is-active { opacity: 1; }
  .hero-slide:not(.is-active) { display: none; }
  .hero-media,
  .hero-img { height: 360px; min-height: 360px; }
  .hero-content { padding: 36px 28px 40px; order: 2; height: auto; }
  .hero-panel { max-width: 100%; }
  .hero-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 360px;
  }
  .hero-prev,
  .hero-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .hero-prev { left: 14px; }
  .hero-next { right: 14px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  ul.products,
  .woocommerce ul.products,
  .collection-grid,
  .about-grid,
  .newsletter-band,
  .contact-grid,
  .footer-grid,
  .sp-form-grid { grid-template-columns: 1fr; }
  .footer-newsletter { grid-template-columns: 1fr auto; }
  .sp-product-stage { grid-template-columns: 1fr; }
  .woocommerce-product-gallery {
    flex-direction: column;
  }
  .woocommerce-product-gallery .flex-control-thumbs,
  .woocommerce-product-gallery ol.flex-control-nav {
    flex-direction: row;
    width: 100%;
  }
  .woocommerce-product-gallery .flex-control-thumbs li,
  .woocommerce-product-gallery .flex-control-thumbs img {
    width: 64px !important;
    height: 64px;
  }
  .woocommerce span.onsale { left: 14px; }
  .related.products ul.products { grid-template-columns: 1fr !important; }
  .related.products ul.products li.product { max-width: 420px; }
  .review-card { flex-basis: 100%; }
  .reviews-carousel { padding: 0 40px; }
  .hero-media,
  .hero-img { height: 280px; min-height: 280px; }
  .hero-content { padding: 28px 20px 32px; }
  .hero-panel { padding: 0; max-width: 100%; }
  .hero-panel h1 { font-size: 1.85rem; }
  .hero-controls { height: 280px; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .section { padding: 48px 0; }
  .site-logo img { height: 58px; }
  .header-inner { min-height: 76px; }
  .search-panel { position: fixed; left: 14px; right: 14px; width: auto; top: 130px; }
  .about-photo img { height: 280px; }
  .footer-logo { height: 90px; }
}

@media (hover: none) {
  .sp-img-hover { opacity: 0; }
  .sp-product-card:hover .sp-img-hover { opacity: 1; }
  .hero-prev,
  .hero-next {
    opacity: 1;
    visibility: visible;
  }
}
