/* ============================================================
   LOWCOUNTRY BASKETS — STYLESHEET v1.0
   Palette: #1A221A marsh · #F2EDE3 cream · #C19A3D gold
   Type: Playfair Display (display) · DM Sans (UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-ui); }

/* --- Custom Properties --- */
:root {
  --bg: #F2EDE3;
  --card-dark: #1A221A;
  --gold: #C19A3D;
  --gold-hover: #A8872F;
  --gold-light: #EDE2CE;
  --gold-metallic: linear-gradient(
    115deg,
    #5c4317 0%,
    #8a6525 12%,
    #c89c42 24%,
    #f7e3a3 35%,
    #fff8db 42%,
    #d8ae4d 55%,
    #a97a2f 68%,
    #7a561f 82%,
    #4b3511 100%
  );
  --silver: #9B9288;
  --silver-light: #D5CEC6;
  --text: #1A221A;
  --text-muted: #5D564A;
  --text-on-dark: #EDEAE2;
  --divider: #DCC68F;
  --white: #F2EDE3;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-ui: 'DM Sans', system-ui, -apple-system, sans-serif;

  --container-width: 1200px;
  --container-px: 24px;
  --section-py: 80px;
  --radius: 12px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --transition: 0.2s ease;
  --header-height: 100px;
}

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3 { font-weight: 500; }
h4, h5, h6 { font-family: var(--font-ui); font-weight: 600; line-height: 1.3; }
p { font-size: 1rem; line-height: 1.6; color: var(--text-muted); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }
.section--dark { background-color: var(--card-dark); color: var(--text-on-dark); }
.section--dark p { color: rgba(247,244,239,0.68); }
.section--ivory { background-color: #E4DDD0; }
.section--gold { background-color: var(--gold); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-silver { color: var(--silver); }
.w-full { width: 100%; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), transform var(--transition), filter var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-gold { background: var(--gold-metallic); color: var(--text); }
.btn-gold:hover { filter: brightness(0.88); }

.btn-dark { background-color: var(--card-dark); color: var(--text-on-dark); }
.btn-dark:hover { background-color: #212B20; }

.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold-metallic); color: var(--text); }

.btn-outline-light { background: transparent; border: 2px solid var(--text-on-dark); color: var(--text-on-dark); }
.btn-outline-light:hover { background-color: var(--text-on-dark); color: var(--card-dark); }

.btn-lg { padding: 18px 40px; font-size: 0.9375rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8125rem; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background-color: var(--bg);
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
  gap: 16px;
  position: relative;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 65px;
  width: auto;
  max-width: 228px;
  display: block;
  mix-blend-mode: multiply;
}
.site-logo span { display: none; }

.site-nav { display: none; }
.site-nav ul { display: flex; align-items: center; gap: 40px; }
.site-nav a {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-ui);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active { color: var(--gold); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text);
  transition: background-color var(--transition);
}
.nav-dropdown-menu a:hover { background-color: var(--gold-light); color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
}
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gold-metallic);
  color: #1A221A;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 50%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .site-nav {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .menu-toggle { display: none; }
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: var(--bg);
  z-index: 99;
  overflow-y: auto;
  padding: 24px var(--container-px);
  border-top: 1px solid var(--divider);
}
.mobile-nav.is-open { display: block; }
.mobile-nav li a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--divider);
}
.mobile-nav .sub-link a {
  padding-left: 16px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--card-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1510 0%, #141e13 60%, #0f1a0e 100%);
  z-index: 0;
}
.hero-bg-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,164,93,0.15) 0%, transparent 60%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--text-on-dark);
  margin-bottom: 24px;
  max-width: 820px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(247,244,239,0.68);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* --- Section Headers --- */
.section-header { margin-bottom: 48px; }
.section-header.text-center { max-width: 640px; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow.on-dark { color: var(--gold); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.on-dark { color: var(--text-on-dark); }

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}
.section-desc.on-dark { color: rgba(245,240,232,0.7); }

.divider-gold { width: 48px; height: 2px; background: var(--gold-metallic); margin: 20px 0; }
.divider-gold.centered { margin: 20px auto; }

/* --- Basket Cards --- */
.basket-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.basket-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.basket-card.featured { border: 1px solid var(--divider); }

/* Metallic accent bar */
.basket-card-accent {
  height: 10px;
  width: 100%;
  flex-shrink: 0;
  margin-top: auto;
}
.basket-card-accent--bronze {
  background: linear-gradient(115deg, #2e1800 0%, #6b3a10 14%, #b06828 28%, #d99040 38%, #f0b870 44%, #d89040 54%, #a06020 68%, #5c2c08 82%, #2a1000 100%);
}
.basket-card-accent--silver {
  background: linear-gradient(115deg, #3a3a3a 0%, #6e6e6e 12%, #b0b0b0 24%, #e0e0e0 35%, #f8f8f8 42%, #d2d2d2 55%, #989898 68%, #606060 82%, #343434 100%);
}
.basket-card-accent--gold {
  background: var(--gold-metallic);
}

/* Metallic card body fills */
.basket-card--bronze .basket-card-body {
  background: #6A4423;
}
.basket-card--silver .basket-card-body {
  background: #A0A0A0;
}
.basket-card--gold .basket-card-body {
  background: #C8A45D;
}
.basket-card--bronze .basket-card-tier,
.basket-card--silver .basket-card-tier,
.basket-card--gold .basket-card-tier { color: rgba(0,0,0,0.55); }
.basket-card--bronze .basket-card-name,
.basket-card--silver .basket-card-name,
.basket-card--gold .basket-card-name { color: #1A221A; }
.basket-card--bronze .basket-card-desc,
.basket-card--silver .basket-card-desc,
.basket-card--gold .basket-card-desc { color: rgba(0,0,0,0.7); }
.basket-card--bronze .basket-card-price,
.basket-card--silver .basket-card-price,
.basket-card--gold .basket-card-price { color: #1A221A; }
.basket-card--bronze .basket-card-count,
.basket-card--silver .basket-card-count,
.basket-card--gold .basket-card-count { color: rgba(0,0,0,0.55); }
.basket-card--bronze .basket-card-meta,
.basket-card--silver .basket-card-meta,
.basket-card--gold .basket-card-meta { border-top-color: rgba(0,0,0,0.15); }

.basket-card-image {
  aspect-ratio: 4/3;
  background: transparent;
  border: 3px solid #1A221A;
  overflow: hidden;
  position: relative;
}
.basket-card-image img { width: 100%; height: 100%; object-fit: cover; }

.basket-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-metallic);
  color: var(--text);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.basket-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.basket-card-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.basket-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.basket-card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.basket-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
  margin-top: auto;
}
.basket-card-price { font-size: 1.25rem; font-weight: 700; color: var(--gold); }
.basket-card-count { font-size: 0.8125rem; color: var(--silver); }

/* --- Occasion Tabs --- */
.occasion-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.occasion-tab {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--divider);
  background: var(--white);
  color: var(--text-muted);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.occasion-tab:hover { border-color: var(--gold); color: var(--text); }
.occasion-tab.active { background: var(--gold-metallic); border-color: var(--gold); color: var(--text); font-weight: 600; }

/* --- Occasion Cards --- */
.occasion-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: block;
}
.occasion-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.occasion-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.occasion-card-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.occasion-card-desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.occasion-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.occasion-card:hover .occasion-card-link { gap: 10px; }

/* --- Product Detail --- */
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 860px) {
  .product-layout { grid-template-columns: 1fr 1fr; }
}

.product-gallery { position: sticky; top: calc(var(--header-height) + 24px); }
.product-gallery-main {
  background: var(--card-dark);
  border-radius: var(--radius);
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 12px;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-thumb {
  background: var(--card-dark);
  border-radius: 2px;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-tier-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.product-name { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--text); margin-bottom: 8px; }
.product-price { font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.product-divider { border: none; border-top: 1px solid var(--divider); margin: 24px 0; }

/* Occasion Selector */
.occasion-selector-label { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 12px; display: block; }
.occasion-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 420px) {
  .occasion-selector-grid { grid-template-columns: repeat(3, 1fr); }
}
.occasion-option {
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.occasion-option:hover { border-color: var(--gold); }
.occasion-option.selected { border-color: var(--gold); background: var(--gold-light); }
.occasion-option-icon { font-size: 1.25rem; display: block; margin-bottom: 4px; }
.occasion-option-name { font-size: 0.75rem; font-weight: 600; color: var(--text); }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-label .optional { font-weight: 400; color: var(--text-muted); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  appearance: none;
}
.form-control:focus { outline: none; border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 100px; }

select.form-control {
  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='%236B6B68' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.shipping-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* What's Inside */
.inside-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
}
.inside-item:first-child { border-top: 1px solid var(--divider); }
.inside-item-name { font-size: 0.9375rem; font-weight: 500; color: var(--text); }
.inside-item-maker { font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; }

/* Maker Callout */
.maker-callout {
  background: var(--card-dark);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 8px;
}
.maker-callout-eyebrow {
  display: none;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.maker-mini {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.maker-mini:last-child { border-bottom: none; }
.maker-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #212B20;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 700;
}
.maker-mini-name { font-size: 0.9375rem; font-weight: 600; color: var(--text-on-dark); }
.maker-mini-location { font-size: 0.8125rem; color: var(--silver); }

/* --- Steps (How It Works) --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 700px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step {
  text-align: center;
  padding: 40px 32px;
  position: relative;
}
.steps-grid .step:not(:last-child)::after {
  content: '';
  display: none;
  position: absolute;
  top: 56px;
  right: -1px;
  width: 2px;
  height: 56px;
  background: var(--divider);
}
@media (min-width: 700px) {
  .steps-grid .step:not(:last-child)::after { display: block; background: rgba(255,255,255,0.12); }
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gold-metallic);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.step-title.on-dark,
.step-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text-on-dark); margin-bottom: 12px; }
.step-desc.on-dark,
.step-desc { font-size: 0.9375rem; color: rgba(247,244,239,0.72); line-height: 1.7; }

/* --- Makers Grid --- */
.makers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .makers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .makers-grid { grid-template-columns: repeat(3, 1fr); }
}
.maker-card { background: var(--card-dark); border-radius: var(--radius); overflow: hidden; }
.maker-card-image { aspect-ratio: 4/3; background: #212B20; overflow: hidden; }
.maker-card-image img { width: 100%; height: 100%; object-fit: cover; }
.maker-card-body { padding: 24px; }
.maker-card-location {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.maker-card-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text-on-dark); margin-bottom: 10px; }
.maker-card-story { font-size: 0.9375rem; color: rgba(245,240,232,0.65); line-height: 1.6; }

/* --- Trust Bar --- */
.trust-bar { background: var(--bg); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); padding: 48px 0; }
.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 700px) {
  .trust-items { grid-template-columns: repeat(4, 1fr); }
}
.trust-number { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.trust-label { font-size: 0.875rem; color: var(--text-muted); }

/* --- FAQ --- */
.faq-list { border-top: 1px solid var(--divider); }
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 2px; height: 20px; left: 50%; top: 0; transform: translateX(-50%); }
.faq-icon::after { width: 20px; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-item.is-open .faq-icon::before { opacity: 0; }
.faq-answer { display: none; padding: 0 48px 20px 0; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.is-open .faq-answer { display: block; }

/* --- CTA Band --- */
.cta-band { background: var(--bg); border-top: 1px solid var(--divider); padding: 72px 0; text-align: center; }
.cta-band--dark { background: #1A221A; border-top: 0.5px solid var(--gold); }
.cta-band--dark h2 { color: var(--bg); }
.cta-band--dark p  { color: rgba(244,240,232,0.6); }
.cta-band h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--text); margin-bottom: 12px; }
.cta-band p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* --- Story Layout --- */
.story-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 860px) {
  .story-layout { grid-template-columns: 1fr 1fr; }
}
.story-image { background: var(--card-dark); border-radius: var(--radius); aspect-ratio: 4/3; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }

/* --- Contact --- */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 860px) {
  .contact-layout { grid-template-columns: 2fr 1fr; }
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 40px;
}
@media (max-width: 480px) {
  .contact-form { padding: 24px; }
}
.contact-info-card { background: var(--card-dark); border-radius: var(--radius); padding: 32px; }
.contact-info-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text-on-dark); margin-bottom: 20px; }
.contact-info-item { margin-bottom: 20px; font-size: 0.9375rem; color: rgba(245,240,232,0.72); }
.contact-info-item strong { display: block; color: var(--text-on-dark); font-size: 0.875rem; margin-bottom: 4px; }

/* --- Page Hero (Interior) --- */
.page-hero { background: var(--card-dark); padding: 72px 0; text-align: center; }
.page-hero-eyebrow {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--text-on-dark); margin-bottom: 16px; }
.page-hero-desc { font-size: 1.125rem; color: rgba(247,244,239,0.68); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* --- Breadcrumb --- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 32px; }
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--divider); }

/* --- Corporate Benefits --- */
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
.benefit-card { background: var(--bg); border: 1px solid var(--divider); border-radius: var(--radius); padding: 28px; }
.benefit-icon { font-size: 1.75rem; margin-bottom: 12px; display: block; }
.benefit-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.benefit-desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }

/* --- Cart Drawer --- */
.cart-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
}
.cart-drawer-overlay.is-open { display: block; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--divider);
}
.cart-drawer-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); }
.cart-close-btn { background: none; border: none; cursor: pointer; font-size: 1.25rem; color: var(--text-muted); line-height: 1; padding: 4px; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { text-align: center; padding: 48px 0; }
.cart-empty-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--text); margin-bottom: 8px; }
.cart-empty-desc { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 24px; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--divider); }
.cart-item-image { width: 72px; height: 72px; border-radius: var(--radius); background: var(--card-dark); overflow: hidden; flex-shrink: 0; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 0.9375rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.cart-item-variant { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-price { font-size: 0.9375rem; font-weight: 700; color: var(--text); }
.cart-item-remove { font-size: 0.8125rem; color: var(--text-muted); background: none; border: none; cursor: pointer; text-decoration: underline; padding: 0; margin-left: 12px; }
.cart-drawer-footer { padding: 24px; border-top: 1px solid var(--divider); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.cart-note { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 16px; }

/* --- Footer --- */
.site-footer { background: var(--card-dark); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text-on-dark); margin-bottom: 12px; display: block; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.9375rem; color: var(--silver); line-height: 1.6; max-width: 260px; }
.footer-heading { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9375rem; color: rgba(245,240,232,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-copyright { font-size: 0.8125rem; color: rgba(245,240,232,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8125rem; color: rgba(245,240,232,0.35); transition: color var(--transition); }
.footer-legal a:hover { color: var(--silver); }

/* --- Utility Spacing --- */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================================
   SHOP PAGE — Single product layout
   ============================================================ */

/* Breadcrumb */
.shop-bc {
  padding: 10px 36px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid var(--divider);
}
.shop-bc a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.shop-bc a:hover { color: var(--gold); }
.shop-bc-sep { color: var(--gold); }

/* ═══════════════════════════════════════════
   HOMEPAGE — split hero, process steps, flip cards
═══════════════════════════════════════════ */

/* Hero */
.hp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 72px 8vw 80px;
  border-bottom: 0.5px solid var(--gold);
}
.hp-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hp-hero-eye {
  display: none;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-ui);
  margin-bottom: 18px;
}
.hp-hero-h {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hp-hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
  font-family: var(--font-ui);
  max-width: 400px;
  margin-bottom: 32px;
}
.hp-hero-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}
.hp-hero-btns { display: flex; gap: 14px; align-items: center; }
.hp-btn-primary {
  padding: 22px 64px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-ui);
  background: var(--gold-light);
  border: 2.5px solid var(--gold);
  color: var(--text);
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  display: inline-block;
}
.hp-btn-primary:hover { background: var(--gold); }
.hp-btn-link {
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .15s;
}
.hp-btn-link:hover { color: var(--gold); }
.hp-hero-right { display: flex; align-items: center; justify-content: center; }
.hp-hero-frame {
  width: 100%;
  max-width: 420px;
  position: relative;
}
.hp-hero-badge {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Section shared */
.hp-sec {
  padding: 64px 8vw;
  border-top: 0.5px solid var(--gold);
}
.hp-sec--light {
  background: var(--bg);
}
.hp-sec--dark {
  background: #1A221A;
}
.hp-sec--dark .hp-sec-eye { color: var(--gold); }
.hp-sec--dark .hp-sec-h   { color: var(--bg); }
.hp-sec--dark .hp-sec-sub { color: rgba(244,240,232,0.6); }
.hp-sec--dark .hp-proc-detail-text { color: rgba(244,240,232,0.6); }
.hp-sec--dark .hp-flip-name   { color: var(--text); }
.hp-sec--dark .hp-flip-origin { color: var(--text-muted); }
.hp-sec--dark .hp-flip-front  { background: var(--bg); border-color: var(--gold); }
.hp-sec--dark .hp-flip-more   { border-color: var(--gold); }
.hp-sec--dark .hp-flip-more-lbl,
.hp-sec--dark .hp-flip-more-sub { color: var(--text-muted); }
.hp-sec-eye {
  display: none;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-ui);
  text-align: center;
  margin-bottom: 10px;
}
.hp-sec-h {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hp-sec-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 400;
  font-family: var(--font-ui);
  line-height: 1.75;
  max-width: 440px;
  margin: 0 auto 28px;
}
.hp-sec-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
}

/* Process steps */
.hp-proc-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  margin: 0 auto 40px;
  position: relative;
}
.hp-proc-row::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%; right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--hp-accent-soft), var(--hp-accent), var(--hp-accent-soft));
  opacity: 1;
  z-index: 0;
}
.hp-proc-fill {
  position: absolute;
  top: 50px;
  left: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--hp-accent-soft), var(--hp-accent), var(--hp-accent-soft));
  z-index: 1;
  width: 0;
  transition: width .4s ease;
}
.hp-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  padding: 0 8px;
  cursor: pointer;
}
.hp-proc-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-dark);
  color: var(--bg);
  font-size: 39px;
  font-weight: 700;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.hp-proc-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}
.hp-proc-step-detail {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.hp-proc-detail {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-proc-detail-text {
  font-size: 15px;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 1.75;
  transition: opacity .2s;
}

/* Flip cards */
.hp-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
.hp-flip { height: 220px; perspective: 900px; cursor: pointer; }
.hp-flip-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.hp-flip:hover .hp-flip-inner { transform: rotateY(180deg); }
.hp-flip-front, .hp-flip-back {
  position: absolute;
  width: 100%; height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  text-align: center;
  background: var(--gold-light);
}
.hp-flip-front {
  transform: rotateY(0deg);
}
.hp-flip-back {
  transform: rotateY(180deg);
  gap: 6px;
}
.hp-flip-icon { font-size: 26px; margin-bottom: 8px; }
.hp-flip-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.3; }
.hp-flip-origin { font-size: 9px; color: var(--text-muted); font-family: var(--font-ui); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; }
.hp-flip-back-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.3; }
.hp-flip-back-desc { font-size: 11px; color: var(--text); font-family: var(--font-ui); font-weight: 400; line-height: 1.6; }
.hp-flip-back-link { font-size: 9px; color: var(--text); letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; font-weight: 600; font-family: var(--font-ui); text-decoration: none; }
.hp-flip-back-link:hover { opacity: .8; }
.hp-flip-more {
  height: 168px;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: .5;
}
.hp-flip-more-lbl { font-size: 11px; color: var(--text-muted); }
.hp-flip-more-sub { font-size: 8px; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; }

/* Responsive */
@media (max-width: 860px) {
  .hp-hero { grid-template-columns: 1fr; padding: 48px 24px 56px; gap: 32px; }
  .hp-hero-h { font-size: 36px; }
  .hp-hero-right { order: -1; }
  .hp-sec { padding: 48px 24px; }
  .hp-proc-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .hp-proc-row::before, .hp-proc-fill { display: none; }
  .hp-prod-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Two-column layout */
.shop-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  width: 100%;
  min-height: calc(100vh - 70px);
  gap: 0;
}
@media (max-width: 860px) {
  .shop-layout { grid-template-columns: 1fr; padding: 0 20px 60px; }
  .shop-bc { padding: 10px 20px; }
}

/* Photo column */
.shop-photo-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 48px 60px 8vw;
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
}
@media (max-width: 860px) {
  .shop-photo-col { padding: 32px 0 0; }
}
.shop-photo-wrap {
  width: 100%;
  position: relative;
}
.shop-occ-pill {
  position: absolute;
  top: 0; left: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
  z-index: 1;
}

/* Options panel */
.shop-opts {
  padding: 40px 8vw 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 3px solid var(--gold);
  background: #1A221A;
}

.shop-eyebrow {
  display: none;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.shop-prod-name {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}
.shop-prod-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

.shop-rule { height: 1px; background: var(--gold); }

.shop-lbl {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 10px;
}
.shop-lbl-opt {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
}

/* Occasion grid */
.shop-occ-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.shop-occ-card {
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--bg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-occ-card:hover { border-color: var(--gold); }
.shop-occ-card.sel   { border-color: var(--gold); background: rgba(200, 164, 93, 0.15); }
.shop-occ-pip {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--divider);
  transition: background var(--transition);
}
.shop-occ-card.sel .shop-occ-pip { background: var(--gold); }
.shop-occ-name { font-size: 0.8125rem; font-weight: 600; color: var(--text); }
.shop-occ-sub  { font-size: 0.6875rem; color: var(--text-muted); margin-top: 2px; }

/* Size cards */
.shop-sz-stack { display: flex; flex-direction: column; gap: 6px; }
.shop-sz {
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--bg);
  overflow: hidden;
}
.shop-sz:hover { border-color: var(--gold); }
.shop-sz.sel   { border-color: var(--gold); background: rgba(200, 164, 93, 0.15); }
.shop-sz-top {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.shop-sz-left { display: flex; align-items: center; gap: 12px; }
.shop-sz-radio {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.shop-sz.sel .shop-sz-radio { border-color: var(--gold); }
.shop-sz-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.shop-sz.sel .shop-sz-dot { opacity: 1; }
.shop-sz-name  { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.shop-sz-count { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.shop-sz-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}
.shop-sz-items {
  display: none;
  flex-direction: column;
  padding: 0 14px 12px 40px;
  border-top: 1px solid var(--divider);
}
.shop-sz.sel .shop-sz-items { display: flex; }
.shop-si {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-si:last-child { border-bottom: none; }
.shop-si-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gold);
}

/* Quantity */
.shop-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(155, 146, 136, 0.05);
}
.shop-qbtn {
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  transition: color var(--transition);
  line-height: 1;
}
.shop-qbtn:hover { color: var(--gold); }
.shop-qnum {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  min-width: 36px;
  text-align: center;
  border-left: 1px solid var(--divider);
  border-right: 1px solid var(--divider);
  line-height: 38px;
}
.shop-price-block { text-align: right; }
.shop-price-amt {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  line-height: 1;
}
.shop-price-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}
.shop-bulk-note {
  font-size: 0.8125rem;
  color: var(--gold);
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  border: 1px solid var(--gold);
  padding: 6px 12px;
  border-radius: var(--radius);
}

/* Gift message */
.shop-msg-ta {
  width: 100%;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.875rem;
  font-family: var(--font-ui);
  color: var(--text);
  background: rgba(155, 146, 136, 0.05);
  resize: none;
  line-height: 1.6;
  outline: none;
  display: block;
  appearance: none;
  transition: border-color var(--transition);
}
.shop-msg-ta:focus { border-color: var(--gold); }
.shop-msg-ta::placeholder { color: var(--text-muted); }
.shop-msg-foot {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Order summary */
.shop-summary {
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(155, 146, 136, 0.05);
}
.shop-sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 4px 0;
  color: var(--text);
}
.shop-sum-row span:last-child { font-weight: 600; }
.shop-sum-disc span { color: var(--gold); }
.shop-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--divider);
}
.shop-sum-lbl {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.shop-sum-amt {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

/* Buttons */
.shop-btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.shop-btn {
  padding: 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-ui);
  transition: all var(--transition);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.shop-btn-primary {
  background: var(--text);
  color: var(--bg);
  border: 2px solid var(--text);
}
.shop-btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text);
}
.shop-btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--text);
}
.shop-btn-outline:hover { border-color: var(--text); }
.shop-btn-ghost {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition);
}
.shop-btn-ghost:hover { color: var(--text); }

/* ============================================================
   PALETTE OVERRIDES — new black / ivory / gold with metallic
   ============================================================ */

/* Buttons */
.btn-gold { background: var(--gold-metallic); color: #1A221A; }
.btn-gold:hover { background: var(--gold-metallic); filter: brightness(1.1); }

/* Divider */
.divider-gold { height: 3px; background: var(--gold-metallic); border-radius: 2px; }

/* Step numbers */
.step-number { background: var(--gold-metallic); color: #1A221A; }

/* Basket badge */
.basket-badge { background: var(--gold-metallic); color: #1A221A; }

/* Cart count */
.cart-count { background: var(--gold-metallic); color: #1A221A; }

/* Occasion tab active */
.occasion-tab.active { background: var(--gold-metallic); border-color: var(--gold); color: #1A221A; }

/* Hero gradient — warm black tones */
.hero-bg { background: linear-gradient(135deg, #0d1510 0%, #141e13 60%, #0f1a0e 100%) !important; }
.hero-bg-accent { background: radial-gradient(ellipse at 70% 50%, rgba(200,164,93,0.15) 0%, transparent 60%) !important; }

/* --- Occasion Strip (homepage, inline with basket section) --- */
.occasion-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
}
.occasion-strip-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.occasion-strip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.occasion-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 100px;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.occasion-tag:hover {
  border-color: var(--gold);
  color: var(--text);
}

.section--ivory { background-color: #E4DDD0; }

/* ============================================================
   HOMEPAGE — Marsh Night + Raw Cotton palette overrides
   Scoped to .page-home so other pages are unaffected.
   ============================================================ */

.page-home {
  --hp-dark:        #1A221A;
  --hp-dark-mid:    #212B20;
  --hp-dark-soft:   #2B352A;
  --hp-cream:       #F2EDE3;
  --hp-deep:        #EAE4D8;
  --hp-accent:      #C19A3D;
  --hp-accent-soft: #DCC68F;
  --hp-ribbon:      #F0A742;
  --hp-body:        #5D564A;
  --hp-body-dark:   #C4C5BA;
  --hp-head-dark:   #EDEAE2;
}

/* Gold dividing lines — 1.5px (3× the original 0.5px) */
.page-home .hp-hero        { border-bottom: 1.5px solid var(--hp-accent-soft); }
.page-home .hp-sec         { border-top: 1.5px solid var(--hp-accent-soft); }
.page-home .hp-gold-rule   {
  height: 3px;
  background: linear-gradient(90deg, var(--hp-accent-soft), var(--hp-accent), var(--hp-accent-soft));
}

/* Header */
.page-home .site-header {
  background-color: var(--hp-cream);
  border-bottom-color: var(--hp-accent-soft);
}
.page-home .site-nav a { color: var(--hp-dark); }
.page-home .site-nav a:hover,
.page-home .site-nav a.active { color: var(--hp-accent); }
.page-home .menu-toggle span { background: var(--hp-dark); }

/* Hero */
.page-home .hp-hero {
  background: var(--hp-dark);
}
.page-home .hp-hero-h { color: var(--hp-head-dark); }
.page-home .hp-hero-sub { color: var(--hp-body-dark); }
.page-home .hp-hero-eye { color: var(--hp-accent); }
.page-home .hp-hero-badge { color: var(--hp-accent); border-color: var(--hp-accent-soft); }
.page-home .hp-btn-primary {
  background: var(--hp-cream);
  border-color: var(--hp-accent);
  color: var(--hp-dark);
}
.page-home .hp-btn-primary:hover {
  background: var(--hp-accent-soft);
  border-color: var(--hp-accent);
}

/* How It Works */
.page-home .hp-sec { background: var(--hp-cream); }
.page-home .hp-sec-h { color: var(--hp-dark); }
.page-home .hp-sec-sub { color: var(--hp-body); }
.page-home .hp-sec-eye { color: var(--hp-accent); }
.page-home .hp-sec-rule { background: var(--hp-accent); }
.page-home .hp-proc-row::before { background: linear-gradient(90deg, var(--hp-accent-soft), var(--hp-accent), var(--hp-accent-soft)); }
.page-home .hp-proc-fill { background: linear-gradient(90deg, var(--hp-accent-soft), var(--hp-accent), var(--hp-accent-soft)); }
.page-home .hp-proc-icon {
  background: var(--hp-dark);
  border-color: var(--hp-accent);
  color: #F2EDE3;
}
.page-home .hp-proc-title { color: var(--hp-dark); }
.page-home .hp-proc-step-detail { color: var(--hp-body); }
.page-home .hp-proc-detail-text { color: var(--hp-body); }

/* Products section (dark bg) */
.page-home .hp-sec--dark { background: var(--hp-dark); }
.page-home .hp-sec--dark .hp-sec-h { color: var(--hp-head-dark); }
.page-home .hp-sec--dark .hp-sec-sub { color: var(--hp-body-dark); }
.page-home .hp-sec--dark .hp-sec-eye { color: var(--hp-accent); }

/* Flip cards — light section */
.page-home .hp-flip-front,
.page-home .hp-flip-back {
  background: var(--hp-cream);
  border-color: var(--hp-accent-soft);
}
.page-home .hp-flip-name,
.page-home .hp-flip-back-name { color: var(--hp-dark); }
.page-home .hp-flip-origin { color: var(--hp-body); }
.page-home .hp-flip-back-desc { color: var(--hp-body); }
.page-home .hp-flip-back-link { color: var(--hp-accent); }
.page-home .hp-flip-more { border-color: var(--hp-accent-soft); }
.page-home .hp-flip-more-lbl,
.page-home .hp-flip-more-sub { color: var(--hp-body); }

/* Flip cards — dark section */
.page-home .hp-sec--dark .hp-flip-front,
.page-home .hp-sec--dark .hp-flip-back {
  background: var(--hp-cream);
  border-color: var(--hp-accent);
}
.page-home .hp-sec--dark .hp-flip-name,
.page-home .hp-sec--dark .hp-flip-back-name { color: var(--hp-dark); }
.page-home .hp-sec--dark .hp-flip-origin { color: var(--hp-body); }
.page-home .hp-sec--dark .hp-flip-back-desc { color: var(--hp-body); }
.page-home .hp-sec--dark .hp-flip-more { border-color: var(--hp-accent); }
.page-home .hp-sec--dark .hp-flip-more-lbl,
.page-home .hp-sec--dark .hp-flip-more-sub { color: var(--hp-body); }

/* Footer */
.page-home .site-footer {
  background: var(--hp-deep);
  border-top: 1.5px solid var(--hp-accent-soft);
}
.page-home .footer-logo { color: var(--hp-dark); }
.page-home .footer-logo span { color: var(--hp-accent); }
.page-home .footer-tagline { color: var(--hp-body); }
.page-home .footer-heading { color: var(--hp-accent); }
.page-home .footer-links a { color: var(--hp-body); }
.page-home .footer-links a:hover { color: var(--hp-accent); }
.page-home .footer-bottom { border-top-color: var(--hp-accent-soft); }
.page-home .footer-copyright { color: var(--hp-body); }
.page-home .footer-legal a { color: var(--hp-body); }
.page-home .footer-legal a:hover { color: var(--hp-accent); }

/* ============================================================
   BASKET PAGES — green background
   ============================================================ */
.page-basket {
  background-color: #1A221A;
}
.page-basket .site-header {
  background-color: #1A221A;
  border-bottom-color: #2B352A;
}
.page-basket .site-nav a { color: #EDEAE2; }
.page-basket .site-nav a:hover,
.page-basket .site-nav a.active { color: var(--gold); }
.page-basket .menu-toggle span { background: #EDEAE2; }
.page-basket .mobile-nav { background: #1A221A; }
.page-basket .site-footer { background: #141e13; }

/* Shop opts — text & element fixes for dark green background */
.shop-opts .shop-prod-name,
.shop-opts .shop-price-amt,
.shop-opts .shop-qnum,
.shop-opts .shop-sum-amt { color: #EDEAE2; }

.shop-opts .shop-prod-desc,
.shop-opts .shop-lbl,
.shop-opts .shop-lbl-opt,
.shop-opts .shop-price-meta,
.shop-opts .shop-msg-foot,
.shop-opts .shop-btn-ghost { color: rgba(237,234,226,0.7); }

.shop-opts .shop-qty-ctrl,
.shop-opts .shop-msg-ta,
.shop-opts .shop-summary { background: var(--bg); }

.shop-opts .shop-qbtn,
.shop-opts .shop-btn-outline { color: #EDEAE2; }

.shop-opts .shop-btn-primary { background: #EDEAE2; border-color: #EDEAE2; color: #1A221A; }
.shop-opts .shop-btn-primary:hover { background: var(--gold); border-color: var(--gold); color: #1A221A; }
