/* ==================== PAGE HERO (shared) ==================== */
.page-hero {
  background: var(--charcoal);
  padding: 160px var(--gutter) 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(184,115,51,0.05) 0%, transparent 60%);
}
.page-hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: 24px;
}
.page-hero h1 em { font-family: var(--font-serif); font-style: italic; color: var(--copper-bright); }
.hero-sub { font-size: 1rem; color: var(--greige); font-weight: 300; line-height: 1.8; max-width: 600px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--greige);
}
.breadcrumb a { color: var(--copper); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--copper-bright); }
.breadcrumb .sep { margin: 0 10px; color: rgba(255,255,255,0.15); }
.breadcrumb .current { color: var(--greige-light); }

/* ==================== ABOUT: STORY INTRO ==================== */
.story-intro { padding: 120px var(--gutter); background: var(--ivory); }
.story-intro-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.story-image-col { position: relative; }
.story-img-main { width: 100%; display: block; filter: brightness(0.9) saturate(0.9); }
.story-img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 2px solid var(--copper);
  z-index: -1;
}
.story-img-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--copper);
  color: #fff;
  padding: 8px 20px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.story-text-col .section-h2 { margin-bottom: 28px; }
.story-lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--copper);
  border-left: 3px solid var(--copper);
  padding-left: 20px;
  margin-bottom: 32px;
}
.story-body p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 20px;
}
.story-body strong { color: var(--copper); font-weight: 500; }

/* ==================== ABOUT: TIMELINE ==================== */
.timeline-section {
  padding: 120px var(--gutter);
  background: var(--cream);
  position: relative;
}
.timeline-section::before {
  content: '';
  position: absolute;
  left: 50%; top: 0;
  width: 2px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--copper), transparent);
  transform: translateX(-50%);
}
.timeline-header { text-align: center; margin-bottom: 80px; position: relative; }
.timeline { max-width: 1000px; margin: 0 auto; position: relative; }
.tl-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}
.tl-year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--copper);
  line-height: 1;
}
.tl-right .tl-year { text-align: right; }
.tl-left .tl-year { text-align: left; }
.tl-dot-col { display: flex; justify-content: center; }
.tl-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--copper);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--copper);
}
.tl-content { background: #fff; padding: 28px 32px; border: 1px solid rgba(181,173,163,0.2); }
.tl-content h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.tl-content p { font-size: 0.88rem; line-height: 1.7; color: var(--text-light); font-weight: 300; }

/* ==================== ABOUT: VALUES ==================== */
.values { padding: 120px var(--gutter); background: var(--charcoal); }
.values-header { text-align: center; margin-bottom: 64px; }
.values-header .section-h2 { color: var(--warm-white); }
.values-header .section-h2 em { color: var(--copper); }
.values-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.val-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s;
}
.val-card:hover { border-color: rgba(184,115,51,0.3); transform: translateY(-4px); }
.val-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(184,115,51,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--copper);
}
.val-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--warm-white); margin-bottom: 12px; }
.val-card p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.4); font-weight: 300; }

/* ==================== ABOUT: LOCATION ==================== */
.location { padding: 0; background: var(--ivory); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.loc-map { background: var(--cream); position: relative; overflow: hidden; }
.loc-map iframe { width: 100%; height: 100%; border: 0; }
.loc-info { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.loc-info .section-h2 { margin-bottom: 36px; }
.loc-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.loc-detail-icon { color: var(--copper); margin-top: 2px; flex-shrink: 0; }
.loc-detail-text h4 { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper); font-weight: 700; margin-bottom: 4px; }
.loc-detail-text p, .loc-detail-text a { font-size: 0.92rem; color: var(--text); font-weight: 300; line-height: 1.6; transition: color 0.3s; }
.loc-detail-text a:hover { color: var(--copper); }
.loc-hours { margin-top: 12px; padding-top: 24px; border-top: 1px solid rgba(181,173,163,0.2); }
.loc-hours h4 { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper); font-weight: 700; margin-bottom: 16px; }
.loc-hours-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.88rem; color: var(--text-light); font-weight: 300; border-bottom: 1px solid rgba(181,173,163,0.1); }

/* ==================== SERVICES PAGE ==================== */
.svc-page-grid {
  max-width: var(--max-width);
  margin: 0 auto;
}
.svc-page-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-bottom: 1px solid rgba(181,173,163,0.15);
}
.svc-page-item:nth-child(even) .svc-page-img { order: 2; }
.svc-page-item:nth-child(even) .svc-page-text { order: 1; }

.svc-page-img {
  background: linear-gradient(160deg, #5A4E42, #3A332B);
  position: relative;
  overflow: hidden;
}
.svc-page-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-page-text {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-page-text .section-h2 { font-size: clamp(2rem, 3vw, 2.6rem); margin-bottom: 20px; }
.svc-page-text p { font-size: 0.92rem; line-height: 1.85; color: var(--text-light); font-weight: 300; margin-bottom: 16px; }
.svc-page-text ul { margin: 16px 0 28px; padding-left: 0; }
.svc-page-text ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}
.svc-page-text ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 2px;
  background: var(--copper);
}
.svc-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--copper);
  margin-bottom: 8px;
}
.svc-price-note { font-size: 0.72rem; color: var(--text-light); font-weight: 300; margin-bottom: 28px; }

/* ==================== TESTIMONIALS PAGE ==================== */
.testimonials-page-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-form-section { padding: 80px var(--gutter); background: var(--cream); }
.review-form-wrap { max-width: 640px; margin: 0 auto; }
.review-form-wrap h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--charcoal); text-align: center; margin-bottom: 8px; }
.review-form-wrap .sub { text-align: center; font-size: 0.92rem; color: var(--text-light); font-weight: 300; margin-bottom: 40px; }

.rf-group { margin-bottom: 24px; }
.rf-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 8px;
}
.rf-group input, .rf-group textarea, .rf-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--greige-light);
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
}
.rf-group input:focus, .rf-group textarea:focus { border-color: var(--copper); }
.rf-group textarea { min-height: 140px; resize: vertical; }
.rf-stars { display: flex; gap: 6px; }
.rf-stars span {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--greige-light);
  cursor: pointer;
  color: var(--greige);
  transition: all 0.2s;
}
.rf-stars span:hover, .rf-stars span.active { background: var(--copper); color: #fff; border-color: var(--copper); }

/* ==================== BOOK NOW PAGE ==================== */
.book-hero { padding: 160px var(--gutter) 80px; background: var(--charcoal); text-align: center; }
.book-options {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.book-card {
  background: #fff;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid rgba(181,173,163,0.2);
  transition: all 0.4s;
}
.book-card:hover { transform: translateY(-6px); border-color: var(--copper); box-shadow: 0 20px 48px rgba(0,0,0,0.06); }
.book-card-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--copper);
}
.book-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.book-card p { font-size: 0.88rem; line-height: 1.7; color: var(--text-light); font-weight: 300; margin-bottom: 28px; }

/* ==================== RESPONSIVE ADDITIONS ==================== */
@media (max-width: 1024px) {
  .story-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline-section::before { display: none; }
  .tl-item { grid-template-columns: auto 1fr; gap: 16px; }
  .tl-item.tl-left { grid-template-columns: auto 1fr; }
  .tl-item.tl-left .tl-content { order: 2; }
  .tl-item.tl-left .tl-year { order: 0; text-align: right; }
  .tl-item.tl-left .tl-dot-col { order: 1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .loc-map { min-height: 400px; }
  .loc-info { padding: 48px 32px; }
  .svc-page-item { grid-template-columns: 1fr; }
  .svc-page-item:nth-child(even) .svc-page-img { order: 0; }
  .svc-page-item:nth-child(even) .svc-page-text { order: 0; }
  .svc-page-img { min-height: 300px; }
  .svc-page-text { padding: 40px 32px; }
  .testimonials-page-grid { grid-template-columns: 1fr; }
  .book-options { grid-template-columns: 1fr; max-width: 500px; }
}

@media (max-width: 640px) {
  .page-hero { padding: 120px var(--gutter) 56px; }
  .story-intro, .timeline-section, .values { padding: 80px var(--gutter); }
  .values-grid { grid-template-columns: 1fr; }
  .loc-info { padding: 40px 20px; }
}

/* ==================== WOOCOMMERCE: SHOP FILTER BAR ==================== */
.shop-intro {
  padding: 48px var(--gutter) 0;
  background: var(--ivory);
}
.shop-intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.shop-browse-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
}
.shop-browse-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--copper);
}
.shop-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sf {
  padding: 10px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1.5px solid var(--greige-light);
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.3s;
}
.sf.active, .sf:hover {
  background: var(--charcoal);
  color: var(--warm-white);
  border-color: var(--charcoal);
}
.shop-section {
  padding: 48px var(--gutter) 120px;
  background: var(--ivory);
}
.shop-cat-description {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(181,173,163,0.2);
}
.shop-cat-description p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  max-width: 700px;
}

/* ==================== WOOCOMMERCE: SINGLE PRODUCT ==================== */
.product-breadcrumb {
  background: var(--charcoal);
  padding: 120px 0 0;
}
.product-breadcrumb .section-wrap {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--greige);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.product-breadcrumb a { color: var(--greige); transition: color 0.3s; }
.product-breadcrumb a:hover { color: var(--copper); }
.product-breadcrumb .sep { margin: 0 10px; opacity: 0.4; }
.product-breadcrumb .current { color: var(--copper); font-weight: 600; }

.product-main {
  background: var(--charcoal);
  padding: 48px 0 100px;
}
.product-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Gallery */
.product-gallery-main {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.product-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}
.product-gallery-main:hover .product-main-img { transform: scale(1.03); }

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.product-thumb {
  width: 72px; height: 72px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.product-thumb.active,
.product-thumb:hover { border-color: var(--copper); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.product-info {
  padding-top: 8px;
}
.product-cat-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 12px;
}
.product-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.product-price-display {
  margin-bottom: 24px;
}
.product-price-display .woocommerce-Price-amount,
.product-price-display .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--copper);
  font-weight: 400;
}
.product-price-display del .woocommerce-Price-amount {
  color: var(--greige);
  font-size: 1.4rem;
  opacity: 0.5;
}
.product-price-display ins {
  text-decoration: none;
}

.product-short-desc {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--greige);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 500px;
}
.product-short-desc p { margin-bottom: 12px; }

/* Add to Cart */
.product-add-to-cart {
  margin-bottom: 32px;
}
.product-add-to-cart .quantity {
  display: inline-flex;
  align-items: center;
  margin-right: 16px;
}
.product-add-to-cart .quantity .qty {
  width: 64px;
  height: 52px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}
.product-add-to-cart .quantity .qty:focus { border-color: var(--copper); }

.product-add-to-cart .single_add_to_cart_button,
.product-add-to-cart button[type="submit"] {
  background: var(--copper);
  color: #fff;
  padding: 16px 40px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}
.product-add-to-cart .single_add_to_cart_button:hover {
  background: var(--copper-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184,115,51,0.25);
}

/* Trust Badges */
.product-trust {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pt-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--greige);
  font-weight: 400;
}
.pt-item svg { color: var(--copper); flex-shrink: 0; }

/* Accordion */
.product-accordion {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pa-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pa-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-white);
  transition: color 0.3s;
}
.pa-trigger:hover { color: var(--copper); }
.pa-trigger svg { color: var(--copper); transition: transform 0.3s; }
.pa-trigger[aria-expanded="true"] svg { transform: rotate(45deg); }

.pa-content {
  display: none;
  padding: 0 0 24px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--greige);
  font-weight: 300;
}
.pa-content p { margin-bottom: 12px; }
.pa-item.is-open .pa-content { display: block; }

.pa-detail-row {
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--greige);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pa-detail-row strong { color: var(--copper); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* Why Our Products */
.why-products {
  padding: 100px 0;
  background: var(--cream);
}
.why-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-products-img { overflow: hidden; min-height: 400px; }
.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 400;
}
.wp svg { color: var(--copper); flex-shrink: 0; }

/* Related Products */
.related-products {
  padding: 100px 0;
  background: var(--charcoal);
}
.related-products .section-tag { color: var(--copper); }
.related-products .section-h2 { color: var(--warm-white); }
.related-products .section-h2 em { color: var(--copper); }

/* WooCommerce overrides for shop grid */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce ul.products li.product {
  background: #fff;
  border: 1px solid rgba(181,173,163,0.15);
  overflow: hidden;
  transition: all 0.4s;
  margin: 0;
  padding: 0;
  float: none;
  width: auto;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  border-color: var(--copper);
}
.woocommerce ul.products li.product a img {
  margin: 0;
  width: 100%;
  height: auto;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  padding: 16px 20px 8px;
}
.woocommerce ul.products li.product .price {
  color: var(--copper);
  font-size: 1rem;
  font-weight: 600;
  padding: 0 20px;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  display: block;
  margin: 16px 20px 20px;
  background: var(--charcoal);
  color: var(--warm-white);
  text-align: center;
  padding: 14px 20px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s;
}
.woocommerce ul.products li.product .button:hover { background: var(--copper); }

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--copper);
  background: var(--cream);
  font-family: var(--font-body);
}
.woocommerce-message::before { color: var(--copper); }

/* WooCommerce pagination */
.woocommerce nav.woocommerce-pagination {
  margin-top: 48px;
  text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 8px;
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 10px 16px;
  border: 1px solid var(--greige-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--slate);
  background: transparent;
  transition: all 0.3s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}

/* WooCommerce ordering/results */
.woocommerce-result-count {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
}
.woocommerce-ordering select {
  padding: 10px 16px;
  border: 1px solid var(--greige-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  background: var(--warm-white);
  color: var(--text);
}

/* ==================== PRODUCT PAGE RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .product-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-products-grid { grid-template-columns: 1fr; }
  .why-products-img { min-height: 300px; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr; }
  .shop-intro-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .product-main { padding: 32px 0 60px; }
  .product-trust { flex-direction: column; gap: 12px; }
  .why-points { grid-template-columns: 1fr; }
  .product-gallery-thumbs { gap: 8px; }
  .product-thumb { width: 56px; height: 56px; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .related-products, .why-products { padding: 60px 0; }
}


/* ── Contact Form Styles ── */
.tomyb-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tomyb-form .form-group {
  margin-bottom: 20px;
}
.tomyb-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.tomyb-form label span {
  color: var(--copper);
}
.tomyb-form input,
.tomyb-form select,
.tomyb-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--warm-white);
  border: 1px solid var(--greige);
  border-radius: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
.tomyb-form input:focus,
.tomyb-form select:focus,
.tomyb-form textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}
.tomyb-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4845' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.tomyb-form textarea {
  resize: vertical;
  min-height: 100px;
}
.form-status {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
}
.form-status.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.form-status.error {
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ffccbc;
}
.form-status-mini {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  text-align: center;
}
.form-status-mini.success {
  background: rgba(46, 125, 50, 0.15);
  color: #a5d6a7;
}
.form-status-mini.error {
  background: rgba(198, 40, 40, 0.15);
  color: #ef9a9a;
}

/* Footer mini form */
.tomyb-form-mini input,
.tomyb-form-mini select,
.tomyb-form-mini textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--warm-white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  margin-bottom: 8px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.tomyb-form-mini input::placeholder,
.tomyb-form-mini textarea::placeholder {
  color: var(--greige);
}
.tomyb-form-mini select {
  color: var(--greige);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B5ADA3' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.tomyb-form-mini select option {
  background: var(--charcoal);
  color: var(--warm-white);
}
.tomyb-form-mini input:focus,
.tomyb-form-mini select:focus,
.tomyb-form-mini textarea:focus {
  outline: none;
  border-color: var(--copper);
}
.tomyb-form-mini textarea {
  resize: vertical;
  min-height: 60px;
}

/* Mobile form */
@media (max-width: 600px) {
  .tomyb-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ── BOOK NOW — Appointment Request Form ── */
.book-form-section { background: var(--ivory, #F5F0EB); padding: 80px 24px; }
.book-form-inner { max-width: 700px; margin: 0 auto; }
.book-form {
  background: #fff; border: 1px solid rgba(181,173,163,0.2);
  border-radius: 4px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.book-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.book-form-field { display: flex; flex-direction: column; }
.book-form-full { margin-bottom: 20px; }
.book-form-field label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--charcoal, #3C3C3C);
  margin-bottom: 8px; font-family: var(--font-body, 'Sora', sans-serif);
}
.book-form-field label span { color: var(--copper, #B87333); }
.book-form-field input,
.book-form-field select,
.book-form-field textarea {
  font-family: var(--font-body, 'Sora', sans-serif); font-size: 0.9rem;
  padding: 12px 16px; border: 1px solid rgba(181,173,163,0.3); border-radius: 3px;
  background: var(--warm-white, #FAF8F5); color: var(--charcoal, #3C3C3C);
  transition: border-color 0.3s; outline: none;
}
.book-form-field input:focus,
.book-form-field select:focus,
.book-form-field textarea:focus { border-color: var(--copper, #B87333); }
.book-form-field textarea { resize: vertical; min-height: 100px; }
.book-form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233C3C3C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.book-form-submit { width: 100%; margin-top: 8px; padding: 16px 32px; font-size: 0.82rem; cursor: pointer; border: none; }
.book-form-status { text-align: center; margin-top: 16px; font-size: 0.88rem; min-height: 24px; }
.book-form-status.success { color: #2d7a3a; }
.book-form-status.error { color: #c0392b; }
.book-map-embed iframe { width: 100%; border-radius: 4px; }
@media (max-width: 768px) {
  .book-form-section { padding: 60px 20px; }
  .book-form { padding: 24px; }
  .book-form-row { grid-template-columns: 1fr; gap: 16px; }
}
/* ── BOOK NOW — Layout + Sidebar + Expect ── */
.book-layout { background: var(--ivory, #F5F0EB); padding: 80px 24px; }
.book-layout-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.book-sidebar { display: flex; flex-direction: column; gap: 20px; }
.book-sidebar-card { background: #fff; border: 1px solid rgba(181,173,163,0.15); border-radius: 6px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.03); }
.book-sidebar-icon { width: 44px; height: 44px; background: var(--ivory, #F5F0EB); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--copper, #B87333); }
.book-sidebar-card h3 { font-family: var(--font-display, 'Libre Caslon Display', serif); font-size: 1.05rem; font-weight: 400; color: var(--charcoal, #3C3C3C); margin-bottom: 12px; }
.book-sidebar-phone { font-family: var(--font-display, 'Libre Caslon Display', serif); font-size: 1.4rem; color: var(--copper, #B87333); font-weight: 400; display: block; transition: opacity 0.3s; }
.book-sidebar-phone:hover { opacity: 0.8; }
.book-hours { display: flex; flex-direction: column; gap: 8px; }
.book-hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--charcoal, #3C3C3C); padding-bottom: 8px; border-bottom: 1px solid rgba(181,173,163,0.12); }
.book-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.book-hours-closed span:last-child { color: var(--text-light, #7A7265); }
.book-sidebar-address { font-size: 0.88rem; color: var(--charcoal, #3C3C3C); line-height: 1.6; margin-bottom: 12px; }
.book-sidebar-link { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--copper, #B87333); transition: opacity 0.3s; }
.book-sidebar-link:hover { opacity: 0.8; }
.book-map-section { line-height: 0; }
.book-map-section iframe { width: 100%; display: block; }
.book-expect { background: #fff; padding: 80px 24px; }
.book-expect-inner { max-width: 900px; margin: 0 auto; }
.book-expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.book-expect-step { text-align: center; }
.book-expect-num { font-family: var(--font-display, 'Libre Caslon Display', serif); font-size: 2.2rem; color: var(--copper, #B87333); opacity: 0.4; margin-bottom: 16px; }
.book-expect-step h4 { font-family: var(--font-display, 'Libre Caslon Display', serif); font-size: 1.1rem; font-weight: 400; color: var(--charcoal, #3C3C3C); margin-bottom: 10px; }
.book-expect-step p { font-size: 0.88rem; color: var(--text-light, #7A7265); line-height: 1.7; }
.book-form-note { text-align: center; font-size: 0.8rem; color: var(--text-light, #7A7265); margin-top: 16px; margin-bottom: 0; }
@media (max-width: 900px) { .book-layout { padding: 48px 20px; } .book-layout-inner { grid-template-columns: 1fr; gap: 32px; } .book-sidebar { order: -1; flex-direction: row; flex-wrap: wrap; gap: 16px; } .book-sidebar-card { flex: 1; min-width: 200px; } }
@media (max-width: 640px) { .book-sidebar { flex-direction: column; } .book-sidebar-card { min-width: auto; } .book-expect-grid { grid-template-columns: 1fr; gap: 32px; } .book-expect { padding: 60px 20px; } }
