@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --brown-deep:   #1A1208;
  --brown-dark:   #2A1E06;
  --brown-mid:    #4A3309;
  --brown-warm:   #6B4F0E;
  --gold-dark:    #A07830;
  --gold-mid:     #C8A84A;
  --gold-light:   #EBD89A;
  --text-on-dark: #E8D9B0;
  --text-muted:   #9A8060;
  --green-ok:     #3B6D11;
  --red-warn:     #8B2020;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--brown-deep);
  color: var(--text-on-dark);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
}

a { color: var(--gold-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { display: block; width: 100%; height: auto; }

/* ── HEADER ── */
.site-header {
  background: var(--brown-dark);
  border-bottom: 1px solid var(--brown-warm);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-stupa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.logo-stupa span {
  background: var(--gold-mid);
  display: block;
  border-radius: 1px;
  transition: background 0.2s;
}

.logo:hover .logo-stupa span { background: var(--gold-light); }

.logo-text-wrap { line-height: 1; }

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

.logo-tagline {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 300;
  display: block;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 400;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.active { color: var(--gold-light); }

.nav-cta {
  background: var(--gold-mid) !important;
  color: var(--brown-deep) !important;
  padding: 9px 22px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  font-size: 12px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.hero {
  background: linear-gradient(180deg, var(--brown-dark) 0%, var(--brown-deep) 100%);
  padding: 72px 48px 56px;
  text-align: center;
  border-bottom: 1px solid var(--brown-warm);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,168,74,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold-mid);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-title em { font-style: italic; }

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-mid);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PRODUCT GRID (shop page) ── */
.shop-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 48px 96px;
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(200,168,74,0.15);
}

.shop-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--brown-dark);
  border: 1px solid var(--brown-warm);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.product-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  color: inherit;
}

.product-card-image {
  aspect-ratio: 16/9;
  background: var(--brown-mid);
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.4s;
}

.product-card:hover .product-card-image img {
  opacity: 1;
  transform: scale(1.03);
}

/* Image placeholder */
.product-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-mid);
}

.product-card-image-placeholder svg {
  opacity: 0.3;
}

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-mid);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.25;
  margin-bottom: 12px;
}

.product-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  margin-bottom: 20px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(200,168,74,0.12);
}

.product-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold-light);
  font-weight: 400;
}

.product-card-price-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 300;
  display: block;
  margin-top: 2px;
}

.product-card-btn {
  background: transparent;
  border: 1px solid var(--gold-dark);
  color: var(--gold-mid);
  padding: 10px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  white-space: nowrap;
}

.product-card-btn:hover {
  background: var(--gold-mid);
  color: var(--brown-deep);
  border-color: var(--gold-mid);
}

/* Featured card (pack) */
.product-card.featured {
  border-color: var(--gold-dark);
  grid-column: span 1;
  position: relative;
}

.product-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-mid);
  color: var(--brown-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

/* Availability badge */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.avail-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.avail-ok { background: rgba(59,109,17,0.15); color: #7fcc40; border: 1px solid rgba(59,109,17,0.3); }
.avail-ok .avail-dot { background: #7fcc40; }
.avail-warn { background: rgba(160,112,16,0.15); color: #f0b040; border: 1px solid rgba(160,112,16,0.3); }
.avail-warn .avail-dot { background: #f0b040; }
.avail-sold { background: rgba(139,32,32,0.15); color: #ff8080; border: 1px solid rgba(139,32,32,0.3); }
.avail-sold .avail-dot { background: #ff8080; }

/* ── SINGLE PRODUCT PAGE ── */
.product-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 48px 120px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}

/* Breadcrumb */
.breadcrumb {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: -24px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold-mid); }
.breadcrumb-sep { opacity: 0.4; }

/* Product content left */
.product-content {}

.product-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold-mid);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}

.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 20px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.product-price-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--gold-light);
  font-weight: 400;
}

.product-price-note {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}

.product-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-on-dark);
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 36px;
}

/* Monday warning */
.monday-warning {
  background: rgba(139,32,32,0.12);
  border: 1px solid rgba(139,32,32,0.35);
  border-left: 3px solid var(--red-warn);
  padding: 16px 20px;
  margin-bottom: 28px;
  border-radius: 0 4px 4px 0;
  display: none;
}

.monday-warning.show { display: block; }

.monday-warning-title {
  font-size: 13px;
  font-weight: 600;
  color: #ff9999;
  margin-bottom: 6px;
}

.monday-warning-text {
  font-size: 13px;
  color: #cc8888;
  line-height: 1.6;
  font-weight: 300;
}

.monday-warning-text a { color: #ffaaaa; }

/* Includes */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-mid);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-on-dark);
  font-weight: 300;
  line-height: 1.5;
}

.include-check { color: var(--gold-mid); flex-shrink: 0; margin-top: 1px; }

/* Reviews */
.reviews { margin-bottom: 36px; }

.review-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-stars { color: var(--gold-mid); font-size: 16px; letter-spacing: 2px; }
.review-score { font-size: 13px; color: var(--text-muted); }

.review-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(200,168,74,0.12);
  border-radius: 4px;
  padding: 18px 22px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-on-dark);
  font-style: italic;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 10px;
}

.review-author { font-size: 12px; color: var(--text-muted); }

/* FAQ */
.faq { margin-bottom: 36px; }

.faq-item { border-bottom: 1px solid rgba(200,168,74,0.1); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-light);
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  color: var(--gold-mid);
  font-size: 20px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 16px;
  font-weight: 300;
}

.faq-item.open .faq-a { display: block; }

/* ── BOOKING WIDGET ── */
.booking-widget {
  background: var(--brown-dark);
  border: 1px solid var(--brown-warm);
  border-radius: 4px;
  position: sticky;
  top: 84px;
  overflow: hidden;
}

.widget-header {
  background: var(--brown-warm);
  padding: 22px 26px;
  border-bottom: 1px solid var(--gold-dark);
}

.widget-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold-light);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

.widget-price-note { font-size: 12px; color: var(--text-muted); font-weight: 300; }

.widget-body { padding: 26px; }

.field-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.field-select,
.field-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,168,74,0.2);
  border-radius: 2px;
  padding: 12px 14px;
  color: var(--gold-light);
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  margin-bottom: 18px;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.field-select:focus,
.field-input:focus {
  outline: none;
  border-color: var(--gold-mid);
}

.field-input.has-date { border-color: var(--gold-mid); background: rgba(200,168,74,0.06); }
.field-input.is-monday { border-color: var(--red-warn); background: rgba(139,32,32,0.08); color: #ff9999; }

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.qty-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,168,74,0.2);
  border-radius: 2px;
  color: var(--gold-light);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: 'Jost', sans-serif;
  line-height: 1;
}

.qty-btn:hover { background: rgba(200,168,74,0.12); border-color: var(--gold-mid); }
.qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.qty-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--gold-light);
  min-width: 28px;
  text-align: center;
}

.qty-label { font-size: 12px; color: var(--text-muted); font-weight: 300; }

.widget-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(200,168,74,0.12);
  margin-bottom: 20px;
}

.widget-total-label { font-size: 13px; color: var(--text-muted); font-weight: 300; }

.widget-total-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--gold-light);
}

.book-btn {
  width: 100%;
  background: var(--gold-mid);
  color: var(--brown-deep);
  border: none;
  padding: 17px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}

.book-btn:hover { background: var(--gold-light); }

.book-btn.monday-blocked {
  background: rgba(139,32,32,0.25);
  color: #ff9999;
  border: 1px solid rgba(139,32,32,0.4);
  cursor: not-allowed;
}

.widget-monday-msg {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(139,32,32,0.1);
  border: 1px solid rgba(139,32,32,0.25);
  border-radius: 2px;
  font-size: 12px;
  color: #cc8888;
  line-height: 1.6;
  font-weight: 300;
}

.widget-monday-msg.show { display: block; }

.widget-notes {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(200,168,74,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.widget-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.widget-note-icon { color: var(--gold-dark); flex-shrink: 0; font-size: 14px; }

.reseller-notice {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(200,168,74,0.04);
  border: 1px solid rgba(200,168,74,0.1);
  border-radius: 2px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.cancel-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 300;
}

.cancel-line::before { content: '✓'; color: var(--green-ok); }

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brown-dark);
  border-top: 1px solid var(--gold-dark);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}

.sticky-bar.show { transform: translateY(0); }

.sticky-left {}
.sticky-name { font-size: 15px; color: var(--gold-light); font-weight: 500; }
.sticky-date { font-size: 12px; color: var(--text-muted); font-weight: 300; margin-top: 2px; }

.sticky-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sticky-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-qty-btn {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,74,0.25);
  border-radius: 2px;
  color: var(--gold-light);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-qty-num {
  font-size: 18px;
  color: var(--gold-light);
  font-weight: 500;
  min-width: 22px;
  text-align: center;
}

.sticky-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold-light);
}

.sticky-btn {
  background: var(--gold-mid);
  color: var(--brown-deep);
  border: none;
  padding: 11px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}

.sticky-btn:hover { background: var(--gold-light); }
.sticky-btn.monday { background: rgba(139,32,32,0.3); color: #ff9999; cursor: not-allowed; }

.sticky-monday-tag {
  display: none;
  background: rgba(139,32,32,0.2);
  border: 1px solid rgba(139,32,32,0.4);
  color: #ff9999;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.sticky-monday-tag.show { display: block; }

/* ── FOOTER ── */
.site-footer {
  background: var(--brown-dark);
  border-top: 1px solid var(--brown-warm);
  padding: 48px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-mid);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-mid); }

.footer-col p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(200,168,74,0.1);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-legal a:hover { opacity: 1; color: var(--gold-mid); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--brown-deep); }
::-webkit-scrollbar-thumb { background: var(--brown-warm); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-page { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 24px; }
  .site-nav { display: none; }
  .hero { padding: 48px 24px 40px; }
  .hero-title { font-size: 38px; }
  .shop-section, .product-page { padding: 32px 24px 80px; }
  .product-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .sticky-bar { padding: 12px 20px; gap: 12px; flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
