/* Hararah Gifts — Storefront CSS v2.4.0 "Atelier + PDP Progress" */

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

#hh-gifts-cart, #hh-gifts-pdp-meter {
  --hh-bg-card:      #fbf6e9;
  --hh-bg-card-deep: #f1e7cc;
  --hh-ink:          #1a1410;
  --hh-ink-soft:     #4a3a28;
  --hh-ink-mute:     #8c7657;
  --hh-gold:         #b8862c;
  --hh-gold-warm:    #c9a961;
  --hh-gold-deep:    #8b6418;
  --hh-rule:         rgba(139, 100, 24, 0.18);
  --hh-rule-strong:  rgba(139, 100, 24, 0.36);
  --hh-success:      #6b8e5e;
  --hh-serif-display:'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --hh-serif-body:   'Spectral', Georgia, 'Times New Roman', serif;
  font-family: var(--hh-serif-body);
  color: var(--hh-ink);
}
#hh-gifts-cart *, #hh-gifts-pdp-meter * { box-sizing: border-box; }

/* ============ ATELIER CART CARD (unchanged from v230) ============ */
.hh-atelier {
  max-width: 720px;
  margin: 18px auto 22px;
  background: radial-gradient(ellipse at 8% -20%, rgba(201,169,97,0.10), transparent 50%), var(--hh-bg-card);
  border: 1px solid var(--hh-rule-strong);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.hh-atelier[data-confirmed="true"] {
  border-color: rgba(107, 142, 94, 0.45);
  background: radial-gradient(ellipse at 8% -20%, rgba(107, 142, 94, 0.08), transparent 50%), var(--hh-bg-card);
}
.hh-atelier::before {
  content:""; position:absolute; inset:0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.42  0 0 0 0 0.17  0 0 0 0.06 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  background-size: 160px; mix-blend-mode: multiply; opacity: 0.45; pointer-events: none; z-index: 0;
}
.hh-atelier > * { position: relative; z-index: 1; }
.hh-atelier .hh-toggle {
  width: 100%; appearance: none; -webkit-appearance: none;
  background: transparent; border: 0;
  padding: 13px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  cursor: pointer; font-family: inherit; color: var(--hh-ink); text-align: left;
  transition: background 200ms ease;
}
.hh-atelier .hh-toggle:hover { background: rgba(201,169,97,0.07); }
.hh-atelier[data-open="true"] .hh-toggle { border-bottom: 1px solid var(--hh-rule); }
.hh-atelier .hh-toggle-l { display: flex; align-items: center; gap: 12px; min-width: 0; }
.hh-atelier .hh-toggle-r { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hh-atelier .hh-toggle-mark {
  width: 9px; height: 9px; background: var(--hh-gold-deep); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(139, 100, 24, 0.15); flex-shrink: 0;
}
.hh-atelier[data-confirmed="true"] .hh-toggle-mark {
  background: var(--hh-success); box-shadow: 0 0 0 3px rgba(107, 142, 94, 0.15);
}
.hh-atelier .hh-toggle-title {
  font-family: var(--hh-serif-display); font-weight: 400; font-size: 19px; line-height: 1.2;
  color: var(--hh-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hh-atelier .hh-toggle-title em { font-style: italic; font-weight: 500; color: var(--hh-gold-deep); margin-right: 2px; }
.hh-atelier[data-confirmed="true"] .hh-toggle-title em { color: var(--hh-success); }
.hh-atelier .hh-toggle-status {
  font-family: var(--hh-serif-body); font-weight: 500; font-size: 9.5px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--hh-ink-mute);
}
.hh-atelier .hh-toggle-status.hh-tone-action  { color: var(--hh-gold-deep); }
.hh-atelier .hh-toggle-status.hh-tone-ok      { color: var(--hh-success); }
.hh-atelier .hh-toggle-status.hh-tone-waiting { color: var(--hh-ink-mute); }
.hh-atelier .hh-chev { color: var(--hh-ink-mute); transition: transform 300ms cubic-bezier(.4,.0,.2,1); }
.hh-atelier[data-open="true"] .hh-chev { transform: rotate(180deg); color: var(--hh-gold-deep); }
.hh-atelier .hh-collapse { max-height: 0; overflow: hidden; transition: max-height 460ms cubic-bezier(.4,.0,.2,1), opacity 260ms ease; opacity: 0; }
.hh-atelier[data-open="true"] .hh-collapse { max-height: 1000px; opacity: 1; }
.hh-atelier .hh-cards { display: grid; grid-template-columns: repeat(var(--hh-cols, 3), 1fr); border-bottom: 1px solid var(--hh-rule); }
.hh-atelier .hh-card { padding: 16px 14px 14px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; animation: hh-rise 460ms ease both; }
.hh-atelier .hh-card:nth-child(1){animation-delay:60ms;} .hh-atelier .hh-card:nth-child(2){animation-delay:120ms;}
.hh-atelier .hh-card:nth-child(3){animation-delay:180ms;} .hh-atelier .hh-card:nth-child(4){animation-delay:240ms;}
.hh-atelier .hh-card + .hh-card { border-left: 1px solid var(--hh-rule); }
.hh-atelier .hh-card[data-state="locked"] { opacity: 0.55; }
.hh-atelier .hh-card[data-state="unpicked"] { background: linear-gradient(180deg, transparent, rgba(201,169,97,0.06)); }
.hh-atelier .hh-card-medal {
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffffff, #f7ecd0 60%, #e9d6a8 100%);
  border: 1px solid var(--hh-gold-warm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.55); margin-bottom: 2px;
}
.hh-atelier .hh-card-medal svg { width: 20px; height: 20px; color: var(--hh-gold-deep); }
.hh-atelier .hh-card[data-state="locked"] .hh-card-medal { background: #efe7d3; border-color: var(--hh-rule-strong); box-shadow: none; }
.hh-atelier .hh-card[data-state="locked"] .hh-card-medal svg { color: var(--hh-ink-mute); }
.hh-atelier .hh-card-tag { font-family: var(--hh-serif-body); font-weight: 500; font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--hh-gold-deep); }
.hh-atelier .hh-card[data-state="locked"] .hh-card-tag { color: var(--hh-ink-mute); }
.hh-atelier .hh-card-name { font-family: var(--hh-serif-display); font-weight: 400; font-size: 15px; line-height: 1.2; color: var(--hh-ink); margin: 0; min-height: 36px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hh-atelier .hh-card-name em { font-style: italic; color: var(--hh-gold-deep); }
.hh-atelier .hh-card-name.hh-locked em { color: var(--hh-ink-mute); }
.hh-atelier .hh-card-btn {
  margin-top: 4px; background: none; border: 1px solid var(--hh-rule-strong);
  padding: 5px 14px; font-family: var(--hh-serif-body); font-weight: 500;
  font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--hh-ink); cursor: pointer; border-radius: 1px; transition: all 200ms ease;
}
.hh-atelier .hh-card-btn:hover { background: var(--hh-ink); color: var(--hh-bg-card); border-color: var(--hh-ink); }
.hh-atelier .hh-card-btn-primary { background: var(--hh-gold-deep); color: var(--hh-bg-card); border-color: var(--hh-gold-deep); }
.hh-atelier .hh-card-btn-primary:hover { background: var(--hh-ink); border-color: var(--hh-ink); }
.hh-atelier .hh-card-need { margin-top: 4px; font-family: var(--hh-serif-display); font-style: italic; font-size: 14px; color: var(--hh-ink-mute); }
.hh-atelier .hh-samples { padding: 12px 18px 14px; background: linear-gradient(180deg, transparent, rgba(201,169,97,0.04)); }
.hh-atelier .hh-samples-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.hh-atelier .hh-samples-h { font-family: var(--hh-serif-display); font-weight: 400; font-size: 14px; margin: 0; color: var(--hh-ink); }
.hh-atelier .hh-samples-h em { font-style: italic; color: var(--hh-gold-deep); }
.hh-atelier .hh-samples-meter { font-family: var(--hh-serif-body); font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--hh-ink-mute); }
.hh-atelier .hh-samples-meter b { color: var(--hh-gold-deep); font-weight: 500; }
.hh-atelier .hh-samples-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); gap: 6px; }
.hh-atelier .hh-sample { appearance: none; -webkit-appearance: none; background: var(--hh-bg-card-deep); border: 1px solid var(--hh-rule); border-radius: 1px; padding: 5px; display: flex; flex-direction: column; align-items: stretch; gap: 3px; cursor: pointer; position: relative; text-align: center; transition: border-color 200ms, background 200ms; font-family: inherit; color: inherit; }
.hh-atelier .hh-sample:hover { border-color: var(--hh-gold-warm); background: #fffaf0; }
.hh-atelier .hh-sample[data-on="true"] { border-color: var(--hh-gold-deep); background: linear-gradient(180deg, #fffaf0, #f5e9c8); }
.hh-atelier .hh-sample[data-on="true"]::after { content: ""; position: absolute; top: 5px; right: 5px; width: 10px; height: 10px; background: var(--hh-gold-deep); border-radius: 50%; box-shadow: inset 0 0 0 2px var(--hh-bg-card); }
.hh-atelier .hh-sample[data-locked="true"] { opacity: 0.45; }
.hh-atelier .hh-sample.hh-shake { animation: hh-shake 380ms ease; }
.hh-atelier .hh-sample-img { display: block; width: 100%; aspect-ratio: 1; background-color: #fffaf0; background-size: cover; background-position: center; border: 1px solid var(--hh-rule); }
.hh-atelier .hh-sample-img-ph { background: linear-gradient(135deg, #f7ecd0, #e9d6a8); }
.hh-atelier .hh-sample-name { font-family: var(--hh-serif-display); font-size: 11px; line-height: 1.15; color: var(--hh-ink); margin: 1px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hh-atelier .hh-confirm-bar { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 14px 20px; border-top: 1px solid var(--hh-rule); background: rgba(201, 169, 97, 0.06); }
.hh-atelier[data-confirmed="true"] .hh-confirm-bar { background: rgba(107, 142, 94, 0.07); }
.hh-atelier .hh-confirm-note { font-family: var(--hh-serif-display); font-style: italic; font-size: 14px; color: var(--hh-ink-soft); }
.hh-atelier .hh-confirm-note.hh-confirm-done { color: var(--hh-success); font-style: normal; font-family: var(--hh-serif-body); font-weight: 500; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.hh-atelier .hh-tick { display: inline-flex; width: 18px; height: 18px; background: var(--hh-success); color: #fff; border-radius: 50%; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.hh-atelier .hh-confirm-btn { appearance: none; -webkit-appearance: none; border: 1px solid var(--hh-gold-deep); padding: 9px 22px; font-family: var(--hh-serif-body); font-weight: 500; font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer; border-radius: 1px; transition: all 220ms ease; }
.hh-atelier .hh-confirm-btn-primary { background: var(--hh-gold-deep); color: var(--hh-bg-card); }
.hh-atelier .hh-confirm-btn-primary:hover { background: var(--hh-ink); border-color: var(--hh-ink); }
.hh-atelier .hh-confirm-btn-line { background: transparent; color: var(--hh-ink); border-color: var(--hh-rule-strong); }
.hh-atelier .hh-confirm-btn-line:hover { background: var(--hh-ink); color: var(--hh-bg-card); border-color: var(--hh-ink); }
.hh-atelier .hh-confirm-btn.hh-confirm-fire { animation: hh-pulse 380ms ease; }

/* ============ Cart product table injected gift rows ============ */
tr.hh-cart-row { animation: hh-glow-in 700ms ease both; background: rgba(201, 169, 97, 0.06) !important; }
tr.hh-cart-row td { border-color: rgba(139, 100, 24, 0.25) !important; vertical-align: middle !important; padding: 12px !important; }
.hh-cart-medal { display: inline-flex; width: 44px; height: 44px; border-radius: 50%; background: radial-gradient(circle at 30% 25%, #ffffff, #f7ecd0 60%, #e9d6a8 100%); border: 1px solid #c9a961; align-items: center; justify-content: center; box-shadow: inset 0 0 0 3px rgba(255,255,255,0.55); }
.hh-cart-medal svg { width: 22px; height: 22px; color: #8b6418; }
.hh-cart-tag { display: inline-block; font-family: 'Spectral', Georgia, serif; font-weight: 500; font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: #8b6418; margin-bottom: 4px; }
.hh-cart-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 17px; line-height: 1.2; color: #1a1410; }
.hh-cart-sub { font-family: 'Spectral', Georgia, serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #6b8e5e; margin-top: 3px; font-weight: 500; }
.hh-cart-cell-model { font-family: 'Spectral', Georgia, serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #8c7657; }
.hh-cart-cell-qty { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 16px; color: #1a1410; }
.hh-cart-cell-price, .hh-cart-cell-total { font-family: 'Spectral', Georgia, serif; font-weight: 500; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: #8b6418; }

/* ============ Cart summary injected totals rows ============ */
tr.hh-summary-row td { font-family: 'Spectral', Georgia, serif; font-size: 13px; color: #5d4423; padding: 4px 12px; border: 0 !important; background: transparent !important; }
tr.hh-summary-row .hh-summary-label { text-align: right; position: relative; padding-right: 18px; }
tr.hh-summary-row .hh-summary-mark { display: inline-block; width: 6px; height: 6px; background: #8b6418; border-radius: 50%; margin-right: 8px; vertical-align: middle; opacity: 0.7; }
tr.hh-summary-row .hh-summary-heading { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 14px; color: #1a1410; display: inline-block; margin-right: 10px; }
tr.hh-summary-row .hh-summary-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; color: #1a1410; }
tr.hh-summary-row .hh-summary-value { font-family: 'Spectral', Georgia, serif; font-weight: 500; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: #8b6418; text-align: right; }
tr.hh-summary-row-first td { padding-top: 10px; border-top: 1px dashed rgba(139, 100, 24, 0.24) !important; }

/* ============================================================
   PDP METER v2 — beautiful horizontal progress bar
   ============================================================ */
#hh-gifts-pdp-meter { margin: 14px 0 18px; }
.hh-pdp-card {
  background: var(--hh-bg-card);
  border: 1px solid var(--hh-rule-strong);
  border-radius: 2px;
  padding: 16px 22px 18px;
  position: relative;
  overflow: hidden;
}
.hh-pdp-card::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,169,97,0.10), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(139, 100, 24, 0.06), transparent 50%);
  pointer-events: none; z-index: 0;
}
.hh-pdp-card > * { position: relative; z-index: 1; }

/* Header row */
.hh-pdp-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
}
.hh-pdp-eyebrow {
  font-family: var(--hh-serif-body);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--hh-gold-deep);
}
.hh-pdp-cart {
  font-family: var(--hh-serif-body);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hh-ink-mute);
}
.hh-pdp-cart b {
  font-family: var(--hh-serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--hh-ink);
  letter-spacing: 0;
  text-transform: none;
  margin-right: 8px;
}

/* The progress rail */
.hh-pdp-railwrap { padding: 0 14px; margin: 24px 0 4px; }
.hh-pdp-rail {
  position: relative;
  height: 4px;
  background: rgba(139, 100, 24, 0.12);
  border-radius: 2px;
}
.hh-pdp-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--hh-gold-warm), var(--hh-gold-deep));
  border-radius: 2px;
  transition: width 800ms cubic-bezier(.4,.0,.2,1);
}

/* Milestone stops */
.hh-pdp-stop {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hh-pdp-stop-dot {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--hh-bg-card);
  border: 1.5px solid var(--hh-rule-strong);
  position: relative;
  box-sizing: border-box;
  transition: all 320ms cubic-bezier(.4,0,.2,1);
}
.hh-pdp-stop[data-state="reached"] .hh-pdp-stop-dot {
  background: radial-gradient(circle at 30% 25%, #fff, var(--hh-gold-warm) 65%, var(--hh-gold-deep));
  border-color: var(--hh-gold-deep);
}
.hh-pdp-stop[data-state="reached"] .hh-pdp-stop-dot::after {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 7px;
  border: solid var(--hh-bg-card);
  border-width: 0 1.5px 1.5px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}
.hh-pdp-stop[data-state="next"] .hh-pdp-stop-dot {
  background: var(--hh-bg-card);
  border-color: var(--hh-gold-deep);
  border-width: 2px;
  box-shadow: 0 0 0 5px rgba(139, 100, 24, 0.18);
  animation: hh-pdp-pulse 2.4s ease-in-out infinite;
}
.hh-pdp-stop[data-state="locked"] .hh-pdp-stop-dot {
  background: var(--hh-bg-card);
  border-color: var(--hh-rule-strong);
}
.hh-pdp-stop-label {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--hh-serif-display);
  font-style: italic;
  font-size: 13px;
  color: var(--hh-ink-mute);
  white-space: nowrap;
  margin-top: 4px;
}
.hh-pdp-stop[data-state="reached"] .hh-pdp-stop-label { color: var(--hh-gold-deep); }
.hh-pdp-stop[data-state="next"]    .hh-pdp-stop-label { color: var(--hh-ink); font-weight: 500; }

/* "You are here" marker */
.hh-pdp-you {
  position: absolute;
  top: -20px;
  width: 2px;
  height: 30px;
  background: var(--hh-ink);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  border-radius: 1px;
}
.hh-pdp-you::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--hh-ink);
}
.hh-pdp-you-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--hh-serif-display);
  font-style: italic;
  font-size: 11px;
  color: var(--hh-ink);
  background: var(--hh-bg-card);
  padding: 1px 6px;
  white-space: nowrap;
  margin-bottom: 4px;
}

/* CTA copy */
.hh-pdp-cta {
  font-family: var(--hh-serif-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.35;
  color: var(--hh-ink);
  margin: 26px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--hh-rule);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}
.hh-pdp-cta em {
  font-family: var(--hh-serif-display);
  font-style: italic;
  font-weight: 500;
  color: var(--hh-gold-deep);
}
.hh-pdp-cta-prize {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hh-pdp-cta-prize em {
  text-decoration: underline;
  text-decoration-color: rgba(139, 100, 24, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.hh-pdp-arrow { color: var(--hh-gold-deep); flex-shrink: 0; }
.hh-pdp-cta-done { color: var(--hh-success); }
.hh-pdp-cta-done em { color: var(--hh-success); }
.hh-pdp-tick {
  color: var(--hh-success); font-style: normal;
  font-weight: 600; margin-right: 4px;
}
.hh-pdp-cta-empty { font-style: italic; color: var(--hh-ink-soft); }

@keyframes hh-pdp-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(139, 100, 24, 0.18); }
  50%      { box-shadow: 0 0 0 10px rgba(139, 100, 24, 0.04); }
}

/* Responsive: PDP meter compacts on very narrow viewports */
@media (max-width: 420px) {
  .hh-pdp-card { padding: 14px 16px 16px; }
  .hh-pdp-railwrap { padding: 0 10px; }
  .hh-pdp-cta { font-size: 14px; margin-top: 22px; }
  .hh-pdp-cart b { font-size: 17px; }
}

/* ============================================================
   HARARAH OFFERS TIER LADDER — overrides to match Atelier
   The widget lives inside cart.twig as an inline <style>+JS.
   We override its appearance + replace the "?" mojibake in the title.
   ============================================================ */
#hh-tier-ladder {
  max-width: 720px !important;
  margin: 8px auto 14px !important;
}
#hh-tier-ladder .hh-ladder {
  background:
    radial-gradient(ellipse at 8% -50%, rgba(201,169,97,0.08), transparent 50%),
    #fbf6e9 !important;
  border: 1px solid rgba(139, 100, 24, 0.36) !important;
  border-radius: 2px !important;
  padding: 11px 18px !important;
}
#hh-tier-ladder .hh-ladder-title {
  /* Hide the broken "?" prefix; we replace with our own clean line via ::before */
  font-size: 0 !important;
  line-height: 0 !important;
  position: relative !important;
  height: 14px !important;
  margin: 0 0 8px !important;
}
#hh-tier-ladder .hh-ladder-title::before {
  content: "✦ Unlock more savings";
  position: absolute;
  inset: 0;
  font-family: 'Spectral', Georgia, serif;
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #8b6418;
  line-height: 1.4;
}
#hh-tier-ladder .hh-step {
  padding: 5px 0 !important;
  gap: 12px !important;
  border-top-color: rgba(139, 100, 24, 0.16) !important;
}
#hh-tier-ladder .hh-step-num {
  width: 20px !important;
  height: 20px !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  background: #f1e7cc !important;
  color: #8c7657 !important;
}
#hh-tier-ladder .hh-step.hh-closest .hh-step-num {
  background: linear-gradient(135deg, #c9a961, #8b6418) !important;
  color: #fbf6e9 !important;
}
#hh-tier-ladder .hh-step-msg {
  font-family: 'Spectral', Georgia, serif !important;
  font-size: 12px !important;
  color: #4a3a28 !important;
}
#hh-tier-ladder .hh-step-msg strong {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #1a1410 !important;
}
#hh-tier-ladder .hh-step-bar {
  height: 3px !important;
  background: rgba(139, 100, 24, 0.12) !important;
  margin-top: 4px !important;
  border-radius: 0 !important;
}
#hh-tier-ladder .hh-step-fill {
  background: linear-gradient(90deg, #c9a961, #8b6418) !important;
}

/* ============ Modal (unchanged from v230) ============ */
#hh-gifts-modal { position: fixed; inset: 0; background: rgba(26,20,16,0.55); display: none; align-items: center; justify-content: center; z-index: 9990; padding: 24px; }
#hh-gifts-modal.hh-show { display: flex; animation: hh-fade 280ms ease; }
.hh-mcard { background: var(--hh-bg-card); border: 1px solid var(--hh-rule-strong); padding: 28px 30px 26px; max-width: 720px; width: 100%; max-height: 86vh; overflow: auto; position: relative; border-radius: 2px; animation: hh-rise 360ms ease; font-family: var(--hh-serif-body); color: var(--hh-ink); }
.hh-mcard h3 { font-family: var(--hh-serif-display); font-weight: 400; font-size: 26px; margin: 0 0 4px; }
.hh-mcard .hh-msub { font-family: var(--hh-serif-display); font-style: italic; font-size: 14px; color: var(--hh-ink-soft); margin: 0 0 18px; }
.hh-mx { position: absolute; top: 10px; right: 12px; width: 32px; height: 32px; background: none; border: 0; font-size: 24px; line-height: 1; color: var(--hh-ink-mute); cursor: pointer; }
.hh-mx:hover { color: var(--hh-ink); }
.hh-step-h { font-family: var(--hh-serif-display); font-style: italic; font-size: 18px; margin: 0 0 12px; }
.hh-mtiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.hh-mtile { background: var(--hh-bg-card-deep); border: 1px solid var(--hh-rule); padding: 10px; cursor: pointer; transition: border-color 200ms, background 200ms, transform 200ms; border-radius: 2px; }
.hh-mtile:hover { border-color: var(--hh-gold-deep); background: #fffaf0; transform: translateY(-1px); }
.hh-mtile-img { display: block; width: 100%; aspect-ratio: 1; background-color: var(--hh-bg-card); background-size: cover; background-position: center; border: 1px solid var(--hh-rule); margin-bottom: 8px; }
.hh-mtile-img-ph { background: linear-gradient(135deg, #f7ecd0, #e9d6a8); }
.hh-mtile-lbl { font-family: var(--hh-serif-display); font-size: 16px; line-height: 1.18; color: var(--hh-ink); }
.hh-mtile-meta { font-family: var(--hh-serif-body); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hh-ink-mute); margin-top: 3px; }

/* Responsive */
@media (max-width: 720px) {
  .hh-atelier { margin: 14px 8px 18px; max-width: 100%; }
  .hh-atelier .hh-toggle { padding: 11px 14px; }
  .hh-atelier .hh-toggle-title { font-size: 17px; }
  .hh-atelier .hh-cards { grid-template-columns: 1fr; }
  .hh-atelier .hh-card + .hh-card { border-left: 0; border-top: 1px solid var(--hh-rule); }
  .hh-atelier .hh-card { padding: 14px; }
  .hh-atelier .hh-confirm-bar { flex-direction: column; align-items: stretch; gap: 10px; }
  .hh-mcard { padding: 22px 18px 18px; }
  .hh-mcard h3 { font-size: 22px; }
  .hh-mtiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  #hh-tier-ladder { margin: 6px 8px 12px !important; }
}

/* Animations */
@keyframes hh-rise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hh-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes hh-shake { 0%,100% { transform: translateX(0); } 20% { transform: translateX(-3px); } 40% { transform: translateX(3px); } 60% { transform: translateX(-2px); } 80% { transform: translateX(2px); } }
@keyframes hh-pulse { 0% { transform: scale(1); } 35% { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(139, 100, 24, 0.18); } 100% { transform: scale(1); } }
@keyframes hh-glow-in {
  0%   { opacity: 0; transform: translateY(-4px); background: rgba(201, 169, 97, 0.25) !important; }
  50%  { background: rgba(201, 169, 97, 0.18) !important; }
  100% { opacity: 1; transform: translateY(0); background: rgba(201, 169, 97, 0.06) !important; }
}
@media (prefers-reduced-motion: reduce) {
  .hh-atelier .hh-collapse, .hh-atelier .hh-card, .hh-atelier .hh-sample, .hh-mcard, #hh-gifts-modal.hh-show, tr.hh-cart-row, .hh-pdp-stop[data-state="next"] .hh-pdp-stop-dot {
    animation: none !important;
    transition: none !important;
  }
}
