/* Pacella — Bottega Orafa
   Warm ivory canvas · Deep noir ink · Hand-burnished gold accent
   ---------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap");

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --background: #f7f3ec;
  --foreground: #1c1a17;
  --muted: #ebe6dd;
  --muted-foreground: #6f6960;
  --border: #ddd6c8;
  --gold: #b08949;
  --gold-soft: #d6b783;
  --ivory: #f7f3ec;
  --noir: #1c1a17;
  --card: #fbf8f2;
  --danger: #c0392b;
  --success: #2d7a4f;
  --header-h: 80px;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────────── */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 0;
}
.rule {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin-right: 0.75rem;
  flex-shrink: 0;
}
em { font-style: italic; color: var(--gold); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--noir);
  color: var(--ivory);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--noir);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  line-height: 1;
}
.btn:hover { background: var(--gold); border-color: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--noir);
  border-color: var(--noir);
}
.btn-outline:hover { background: var(--noir); color: var(--ivory); }
.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.65rem; }
.btn-danger { background: var(--danger); border-color: var(--danger); }
.btn-danger:hover { background: #a93226; border-color: #a93226; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.brand { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.brand-name { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; }
.brand-sub {
  font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.25rem;
}
.nav { display: none; gap: 2.25rem; }
@media (min-width: 900px) { .nav { display: flex; align-items: center; } }
.nav a {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(28,26,23,0.7); transition: color 0.3s; white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.cart-btn {
  position: relative; background: none; border: none;
  cursor: pointer; color: var(--noir); display: flex;
  align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.5rem 0;
}
.cart-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-count {
  position: absolute; top: 0; right: -6px;
  background: var(--gold); color: var(--ivory);
  font-size: 0.55rem; font-weight: 600; line-height: 1;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0;
}
.cart-count:empty, .cart-count[data-count="0"] { display: none; }

.menu-toggle {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--noir); transition: transform 0.3s, opacity 0.3s;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none; flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.85rem 0; font-size: 0.85rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ─── CART DRAWER ────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(28,26,23,0.45);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 95vw);
  background: var(--background);
  z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-head h3 { font-size: 1.4rem; }
.cart-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted-foreground); font-size: 1.4rem; line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}
.cart-close:hover { color: var(--foreground); }

.cart-items { flex: 1; overflow-y: auto; padding: 1.25rem 1.75rem; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%;
  color: var(--muted-foreground); text-align: center; gap: 1rem;
}
.cart-empty svg { width: 48px; height: 48px; opacity: 0.35; }

.cart-item {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 1rem; align-items: start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item > :nth-child(2) { min-width: 0; }
.cart-item-img { aspect-ratio: 1; overflow: hidden; background: var(--muted); }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.cart-item-meta { font-size: 0.78rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.cart-item-qty { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.qty-btn {
  width: 28px; height: 28px; border: 1px solid var(--border);
  background: transparent; cursor: pointer; font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.qty-btn:hover { background: var(--muted); border-color: var(--gold); }
.qty-val { font-size: 0.9rem; min-width: 20px; text-align: center; }
.cart-item-price { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; white-space: nowrap; }
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  color: var(--muted-foreground); font-size: 1rem;
  margin-top: 0.25rem; transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-drawer-foot {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--card);
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1.25rem;
}
.cart-total-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); }
.cart-total-price { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; }
.cart-delivery {
  display: flex; gap: 0.75rem; align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.82rem; color: var(--muted-foreground);
}
.cart-delivery input { accent-color: var(--gold); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,26,23,0.42) 0%, rgba(28,26,23,0.72) 100%);
}
.hero-content {
  position: relative; color: var(--ivory);
  max-width: 760px; padding: 6rem 0;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  margin: 1.5rem 0;
  line-height: 1.05;
}
.hero p { font-size: 1.05rem; max-width: 540px; opacity: 0.88; margin-bottom: 2.5rem; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow .rule { background: var(--gold-soft); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── SECTIONS ───────────────────────────────────────────────── */
section { padding: 5rem 0; }
@media (min-width: 900px) { section { padding: 7rem 0; } }
.section-muted { background: var(--muted); }

.section-head { max-width: 720px; margin-bottom: 4rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 1rem 0; }
.section-head p { color: var(--muted-foreground); font-size: 1rem; }

/* ─── GRID ───────────────────────────────────────────────────── */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid-4 { 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); }
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ─── CATEGORY / COLLECTION CARDS ───────────────────────────── */
.card {
  position: relative; overflow: hidden;
  background: var(--card);
  cursor: pointer; display: block;
}
.card-img { aspect-ratio: 4/5; overflow: hidden; }
.card-img--product { background: var(--muted); }
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2,0.8,0.2,1);
}
.card-img--product img {
  background: white;
  object-fit: contain;
  padding: clamp(0.6rem, 1.6vw, 1.1rem);
}
.card:hover .card-img img { transform: scale(1.05); }
.card:hover .card-img--product img { transform: none; }
.card-body { padding: 1.5rem 0.25rem; }
.card-body h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.card-body .card-tag {
  font-size: 0.75rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
}
.card-body .card-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem; color: var(--foreground); margin-top: 0.25rem;
}

/* ─── PRODUCT CARD (smaller grid) ───────────────────────────── */
.product-card { display: block; }
.product-card-img {
  aspect-ratio: 1; overflow: hidden; background: var(--muted);
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  background: white;
  object-fit: contain;
  padding: clamp(0.45rem, 1.2vw, 0.9rem);
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
}
.product-card:hover .product-card-img img { transform: none; }
.product-card-body { padding: 1.1rem 0 0.5rem; background: var(--card); }
.product-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem; margin-bottom: 0.3rem; line-height: 1.2;
}
.product-card-meta { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.product-card-price {
  font-family: "Cormorant Garamond", serif; font-size: 1.5rem; margin-top: 0.35rem;
}
.product-card-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }

/* Badge for out-of-stock */
.badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--noir); color: var(--ivory);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.3rem 0.6rem;
}
.badge-sold { background: var(--muted-foreground); }

/* ─── SPLIT LAYOUT ───────────────────────────────────────────── */
.split { display: grid; gap: 4rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.split img { width: 100%; height: auto; }

/* ─── PROSE ──────────────────────────────────────────────────── */
.prose {
  max-width: 720px;
  margin: 0 auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
.prose img, .prose video, .prose iframe { max-width: 100%; height: auto; }
.prose table {
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
}
.prose pre, .prose code { overflow-x: auto; max-width: 100%; }
.prose p {
  margin-bottom: 1.5rem; font-size: 1.05rem;
  color: var(--muted-foreground); line-height: 1.8;
}
.prose p:first-of-type::first-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.8rem; float: left; line-height: 0.85;
  margin-right: 0.5rem; margin-top: 0.15rem; color: var(--gold);
}

@media (max-width: 420px) {
  .prose p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .prose p:first-of-type::first-letter {
    font-size: 3rem;
  }
}

@media (max-width: 360px) {
  .prose p {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  .prose p:first-of-type::first-letter {
    font-size: 2.7rem;
  }
}

/* ─── PAGE HEADER ────────────────────────────────────────────── */
.page-head {
  border-bottom: 1px solid var(--border);
  background: rgba(235,230,221,0.3);
  padding: 4rem 0 5rem;
}
.page-head .eyebrow { margin-bottom: 0.75rem; }
.page-head h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0.75rem 0 1rem;
}
.page-head p { max-width: 640px; color: var(--muted-foreground); font-size: 1rem; }

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  flex-wrap: wrap;
  row-gap: 0.35rem;
  font-size: 0.75rem; letter-spacing: 0.12em;
  color: var(--muted-foreground); margin-bottom: 2.5rem;
}
.breadcrumb > * { min-width: 0; }
.breadcrumb a,
.breadcrumb span { overflow-wrap: break-word; word-break: break-word; }
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--muted-foreground); }

/* ─── PRODUCT DETAIL ─────────────────────────────────────────── */
.product-detail { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .product-detail { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.product-gallery { position: relative; }
.product-gallery-main {
  aspect-ratio: 4/5; overflow: hidden; background: var(--muted);
  margin-bottom: 1rem;
}
.product-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.3s;
}
.product-thumbnails { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.thumbnail {
  width: 72px; height: 72px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  transition: border-color 0.3s;
  flex-shrink: 0;
}
.thumbnail img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.thumbnail.active { border-color: var(--gold); }

.product-category-link {
  font-size: 0.72rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem; display: inline-block;
}
.product-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem; margin: 1.25rem 0;
}
.product-desc {
  color: var(--muted-foreground); font-size: 0.95rem;
  line-height: 1.8; margin-bottom: 2rem;
  border-top: 1px solid var(--border); padding-top: 1.5rem;
}

/* Material swatches */
.material-label {
  font-size: 0.65rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--muted-foreground);
  margin-bottom: 0.75rem; display: block;
}
.material-swatches { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.material-swatch {
  position: relative; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--border); cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.material-swatch:hover { transform: scale(1.1); border-color: var(--gold); }
.material-swatch.active { border-color: var(--gold); box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--gold); }
.material-swatch .swatch-tick {
  display: none; color: var(--ivory); font-size: 0.6rem; font-weight: 600;
}
.material-swatch.active .swatch-tick { display: block; }
.material-name-label { font-size: 0.75rem; color: var(--muted-foreground); margin-left: 0.5rem; }

/* Ring size */
.ring-size-group { margin-bottom: 2rem; }
.size-select {
  width: 100%; padding: 0.75rem 1rem;
  background: transparent; border: 1px solid var(--border);
  font-family: inherit; font-size: 0.9rem; color: var(--foreground);
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b08949' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.size-select:focus { outline: none; border-color: var(--gold); }

/* Quantity */
.qty-group { display: flex; align-items: center; gap: 0; margin-bottom: 1.5rem; }
.qty-group .qty-btn { width: 44px; height: 44px; font-size: 1.2rem; }
.qty-group .qty-val {
  width: 52px; height: 44px; border: 1px solid var(--border);
  border-left: none; border-right: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}

/* ─── CONSTRUCTOR ────────────────────────────────────────────── */
.constructor-layout {
  display: grid; gap: 3rem; grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .constructor-layout { grid-template-columns: 5fr 4fr; gap: 3rem; align-items: start; }
}

/* Preview */
.constructor-preview-wrap { position: sticky; top: calc(var(--header-h) + 1rem); }

.preview-box {
  background: var(--card);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.preview-box--constructor {
  background: white;
  aspect-ratio: unset; min-height: 300px;
  position: relative; overflow: hidden;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.preview-box img { max-width: 80%; transition: opacity 0.3s; }
.bracelet-base-img { max-width: 85%; max-height: 120px; width: auto; position: relative; z-index: 1; }

/* Pendant overlay on bracelet */
.bracelet-pendants {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-wrap: wrap; gap: 4px;
  justify-content: center; align-items: flex-start;
  padding-top: 36px;   /* push pendants below the bracelet chain */
  width: 90%;
  z-index: 2;
  pointer-events: none;
}
.bracelet-empty-hint {
  position: absolute; bottom: 1rem; left: 0; right: 0;
  text-align: center;
  font-size: 0.75rem; color: var(--muted-foreground);
  letter-spacing: 0.04em;
  pointer-events: none;
}
.bracelet-pendant {
  width: 52px; height: auto;
  flex-shrink: 0;
  animation: pendantIn 0.3s ease;
  display: flex; flex-direction: column; align-items: center;
}
.bracelet-pendant img {
  width: 48px; height: 48px;
  object-fit: contain; display: block;
  transform: scale(1.7);
  margin-top: 0;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.22));
}
@keyframes pendantIn {
  from { transform: scale(1.7) translateY(-8px); opacity: 0; }
  to   { transform: scale(1.7) translateY(0);    opacity: 1; }
}

/* Cart pendant cards */
.cart-pendant-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.9rem; align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-pendant-card:last-child { border-bottom: none; }
.cart-pendant-img { width: 56px; height: 56px; overflow: hidden; background: var(--muted); flex-shrink: 0; }
.cart-pendant-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; display: block; }
.cart-pendant-info { min-width: 0; }
.cart-pendant-name {
  font-family: "Cormorant Garamond", serif; font-size: 1.05rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-pendant-price { font-size: 0.82rem; color: var(--gold); margin-top: 0.15rem; }
.remove-pendant-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted-foreground); display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; flex-shrink: 0;
  transition: color 0.2s;
}
.remove-pendant-btn:hover { color: #c0392b; }
.remove-pendant-btn:disabled { opacity: 0.4; pointer-events: none; }

/* Recommendations */
.rec-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem; flex-wrap: wrap; gap: 0.75rem;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: none; border: 1px solid var(--border);
  padding: 0.4rem 0.85rem; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  color: var(--muted-foreground); transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--foreground); }

.rec-grid {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .rec-grid { grid-template-columns: repeat(3, 1fr); }
}

.rec-card {
  background: var(--card); border: 1px solid var(--border);
  position: relative; display: flex; flex-direction: column;
  transition: border-color 0.25s;
}
.rec-card:hover { border-color: var(--gold-soft); }
.rec-card.rec-hidden { display: none; }
.rec-card.added { display: none; }
.rec-card-img { aspect-ratio: 1; overflow: hidden; }
.rec-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; display: block; }
.rec-card-body { padding: 0.5rem 0.6rem; flex: 1; }
.rec-card-name {
  font-family: "Cormorant Garamond", serif; font-size: 0.85rem; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.rec-card-price { font-size: 0.75rem; color: var(--gold); margin-top: 0.15rem; }
.rec-card .add-pendant-btn {
  margin: 0 0.5rem 0.5rem;
  width: calc(100% - 1rem);
  justify-content: center;
  font-size: 0.72rem;
  padding: 0.45rem 0.6rem;
}
.add-pendant-btn:disabled { opacity: 0.45; pointer-events: none; }

/* Legacy coulomb grid (kept for compatibility) */
.coulomb-cards-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .coulomb-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.coulomb-card {
  background: var(--card); border: 2px solid var(--border);
  cursor: pointer; transition: border-color 0.25s;
  position: relative;
}
.coulomb-card:hover { border-color: var(--gold-soft); }
.coulomb-card.selected { border-color: var(--gold); }
.coulomb-card-img { aspect-ratio: 1; overflow: hidden; }
.coulomb-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.coulomb-card-body { padding: 0.75rem; }
.coulomb-card-name { font-family: "Cormorant Garamond", serif; font-size: 1rem; }
.coulomb-card-price { font-size: 0.8rem; color: var(--gold); margin-top: 0.25rem; }
.coulomb-check {
  position: absolute; top: 0.5rem; right: 0.5rem;
  width: 22px; height: 22px; background: var(--gold);
  border-radius: 50%; display: none;
  align-items: center; justify-content: center;
}
.coulomb-check svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 2.5; }
.coulomb-card.selected .coulomb-check { display: flex; }

.constructor-summary {
  border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1.5rem;
}
.constructor-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1.25rem;
}
.constructor-subtotal-label { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted-foreground); }
.constructor-subtotal-price { font-family: "Cormorant Garamond", serif; font-size: 2.2rem; }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-grid { display: grid; gap: 4rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }

.info-item { display: flex; gap: 1.25rem; margin-bottom: 2.5rem; align-items: flex-start; }
.info-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.2rem; line-height: 1; }
.info-item h4 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.info-item p { font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.7; }
.info-item p a { color: var(--gold); }

/* ─── FORMS ──────────────────────────────────────────────────── */
.field { margin-bottom: 1.75rem; }
.field label {
  display: block; font-size: 0.65rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 0.5rem;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 0.75rem 0; background: transparent;
  border: none; border-bottom: 1px solid rgba(28,26,23,0.25);
  font-family: inherit; font-size: 1rem; color: var(--foreground);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { resize: none; }
.field-row { display: grid; gap: 1.75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* ─── ORDER / CHECKOUT ───────────────────────────────────────── */
.checkout-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .checkout-grid { grid-template-columns: 1fr 400px; gap: 5rem; } }

/* ─── CART ITEM CARDS (order page) ──────────────────────────── */
.checkout-grid .order-items { display: flex; flex-direction: column; }

.checkout-grid .order-item-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.checkout-grid .order-item-card:last-child { border-bottom: none; }

.checkout-grid .order-item-img {
  width: 88px; height: 88px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--muted);
  display: block;
}
.checkout-grid .order-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; display: block; }

.checkout-grid .order-item-body {
  display: flex; flex-direction: column; gap: 0.6rem;
  min-width: 0;
}

.checkout-grid .order-item-mobile { display: none !important; }

@media (max-width: 640px) {
  .checkout-grid .order-item-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.25rem 0;
  }

  .checkout-grid .order-item-desktop,
  .checkout-grid .order-item-desktop-img,
  .checkout-grid .order-item-price.order-item-desktop,
  .checkout-grid .order-item-body {
    display: none !important;
  }

  .checkout-grid .order-item-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 100%;
  }

  .checkout-grid .order-item-mobile-first-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    width: 100%;
  }

  .checkout-grid .order-item-mobile-first-row .order-item-img {
    width: 72px;
    height: 72px;
  }

  .checkout-grid .order-item-mobile-first-row .order-item-controls {
    margin-left: auto;
    align-self: center;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .checkout-grid .order-item-mobile .order-item-remove,
  .checkout-grid .order-item-mobile .minus-plus {
    display: flex;
  }

  .checkout-grid .order-item-mobile .order-item-remove {
    margin-left: 0.5rem;
  }

  .checkout-grid .order-item-mobile-second-row {
    display: block;
  }

  .checkout-grid .order-item-mobile-second-row .order-item-name {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
  }

  .checkout-grid .order-item-mobile-second-row .order-item-price {
    display: block;
    padding-top: 0;
    font-size: 1.1rem;
    white-space: normal;
  }

  .checkout-grid .order-item-mobile .qty-btn {
    width: 30px;
    height: 30px;
  }

  .checkout-grid .order-item-mobile .qty-display {
    height: 30px;
    min-width: 32px;
  }
}

.order-item-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.3;
}
.order-item-name a { color: inherit; text-decoration: none; }
.order-item-name a:hover { color: var(--gold); }

.order-item-size {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.order-item-controls {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}

.order-item-card .minus-plus {
  display: flex; align-items: center; gap: 0;
}
.order-item-card .qty-btn {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  color: var(--foreground);
}
.order-item-card .qty-btn:hover { background: var(--muted); border-color: var(--gold); }
.order-item-card .qty-display {
  min-width: 36px; height: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  text-align: center;
  background: var(--background);
}

.order-item-remove {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
}
.order-item-remove:hover { color: #c0392b; }
.order-item-remove svg { pointer-events: none; }

.checkout-grid .order-item-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  white-space: nowrap;
  color: var(--foreground);
  padding-top: 0.15rem;
}

.checkout-grid .order-item-mobile-price {
  padding-top: 0;
}

/* ─── ORDER SUMMARY SIDEBAR ──────────────────────────────────── */
.order-summary-lines {
  margin-bottom: 1rem;
  min-width: 0;
  overflow: hidden;
}
.order-line {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 0.75rem; min-width: 0; overflow: hidden;
  width: 100%; max-width: 100%;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border);
}
.order-line:last-child { border-bottom: none; }
.order-line-name {
  font-size: 0.9rem; color: var(--muted-foreground);
  flex: 1 1 0; min-width: 0; max-width: 100%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  display: block;
  width: 100%;
}
.order-line-price {
  font-size: 0.9rem; white-space: nowrap; flex: 0 0 auto;
  margin-left: auto;
}

.checkout-grid > * {
  min-width: 0;
}

.order-summary {
  min-width: 0;
  overflow: hidden;
}

.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 2px solid var(--border);
  margin-bottom: 1.5rem;
}
.summary-total-label {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted-foreground);
}
.summary-total-label small { display: block; font-size: 0.7rem; margin-top: 0.2rem; text-transform: none; letter-spacing: 0; }
.summary-total-price {
  font-family: "Cormorant Garamond", serif; font-size: 2rem; color: var(--foreground);
}

.order-summary {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  height: fit-content;
  position: sticky; top: calc(var(--header-h) + 2rem);
}
.order-summary h3 { font-size: 1.6rem; margin-bottom: 1.75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--muted-foreground);
}
.summary-row.total {
  font-size: 1rem; color: var(--foreground); font-weight: 500;
  border-top: 1px solid var(--border); margin-top: 1rem; padding-top: 1rem;
  margin-bottom: 0;
}
.summary-total-price {
  font-family: "Cormorant Garamond", serif; font-size: 2rem; color: var(--foreground);
}
.delivery-options { margin: 1.5rem 0; }
.delivery-option {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border); cursor: pointer;
}
.delivery-option:last-child { border-bottom: none; }
.delivery-option input[type="radio"] { accent-color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; }
.delivery-option-body { display: flex; flex-direction: column; gap: 0.2rem; }
.delivery-option-title { font-size: 0.9rem; font-weight: 500; color: var(--foreground); }
.delivery-option-desc { font-size: 0.78rem; color: var(--muted-foreground); }
/* legacy aliases */
.delivery-option-text { font-size: 0.85rem; }
.delivery-option-text strong { display: block; margin-bottom: 0.2rem; }
.delivery-option-text span { color: var(--muted-foreground); font-size: 0.78rem; }

.paypal-wrapper {
  width: 100%; margin-top: 1rem; overflow: hidden;
}
.paypal-wrapper input[type="image"] {
  width: 100%; height: 48px; cursor: pointer;
}

/* Checkout address form */
.checkout-form,
.checkout-form-section { margin-top: 2.5rem; }
.checkout-form h3,
.checkout-form-section h3 { font-size: 1.6rem; margin-bottom: 1.75rem; }

/* ─── PAGINATION ─────────────────────────────────────────────── */
.pagination {
  display: flex; gap: 0.5rem; justify-content: center;
  align-items: center; padding: 3rem 0 0;
}
.page-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted-foreground);
  transition: all 0.2s;
}
.page-link:hover { border-color: var(--gold); color: var(--gold); }
.page-link.active {
  background: var(--noir); color: var(--ivory); border-color: var(--noir);
}
.page-link.disabled { opacity: 0.35; pointer-events: none; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  background: rgba(235,230,221,0.4);
}
.footer-grid {
  display: grid; gap: 3rem; padding: 4rem 0;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer h4 {
  font-family: "Inter", sans-serif; font-size: 0.7rem;
  letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--muted-foreground); }
.footer ul li a { transition: color 0.2s; }
.footer ul li a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.3);
  background: rgba(226,218,207,0.9);
  border-radius: 0.75rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.footer-socials a:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(226,218,207,0.7);
  transform: translateY(-1px);
}
.footer-socials img { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0; font-size: 0.75rem;
  color: var(--muted-foreground);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
}

/* ─── PERSONALIZED / CTA ─────────────────────────────────────── */
.cta-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem; color: var(--gold); margin: 1.5rem 0;
}

/* ─── ALERTS / MESSAGES ──────────────────────────────────────── */
.alert {
  padding: 0.9rem 1.25rem; margin-bottom: 1.25rem;
  border-left: 3px solid var(--gold); background: rgba(176,137,73,0.08);
  font-size: 0.9rem;
}
.alert-success { border-color: var(--success); background: rgba(45,122,79,0.07); }
.alert-error { border-color: var(--danger); background: rgba(192,57,43,0.07); }

/* ─── ABOUT GALLERY ──────────────────────────────────────────── */
.about-gallery { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .about-gallery { grid-template-columns: repeat(3, 1fr); } }
.about-gallery-img { position: relative; overflow: hidden; aspect-ratio: 2/3; }
.about-gallery-img img { width: 100%; height: 100%; object-fit: cover; }
.about-gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.08) 0%, rgba(10,10,10,0.78) 100%);
  color: var(--ivory);
  padding: 1.25rem 1rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.about-gallery-row { display: grid; gap: 1.25rem; margin-top: 1.25rem; }
@media (min-width: 900px) { .about-gallery-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .about-gallery-row { grid-template-columns: repeat(4, 1fr); } }

@media (max-width: 600px) {
  .about-gallery,
  .about-gallery-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: start;
  }
  .about-gallery-img {
    width: min(100%, 92px);
    aspect-ratio: 1 / 1;
    justify-self: center;
  }
  .about-gallery-caption {
    font-size: 0.5rem;
    padding: 0.6rem 0.5rem 0.5rem;
    letter-spacing: 0.08em;
    line-height: 1.25;
  }
}

@media (max-width: 360px) {
  .about-gallery,
  .about-gallery-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
  }
  .about-gallery-img {
    width: min(100%, 84px);
  }
  .about-gallery-caption {
    font-size: 0.55rem;
    padding: 0.6rem 0.5rem 0.5rem;
  }
}

/* ─── ANIMATION ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.9s cubic-bezier(0.2,0.8,0.2,1) both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

/* ─── TINY DEVICES (iPhone SE / mini friendly) ───────────────── */
@media (max-width: 600px) {
  .constructor-preview-wrap { position: static; top: auto; }
  .preview-box img { max-width: 100%; }
  .bracelet-base-img { max-width: 100%; max-height: 110px; }
  .bracelet-pendants { padding-top: 20px; gap: 1px; width: 100%; }
  .bracelet-pendant { width: 9%; max-width: 50px; flex-shrink: 1; margin-top: 18px; }
}
@media (max-width: 420px) {
  :root { --header-h: 72px; }
  .container { padding: 0 1.5rem; }
  section { padding: 4.25rem 0; }
  .page-head { padding: 3.25rem 0 4.25rem; }
  .hero { min-height: 86vh; }
  .hero-content { padding: 5rem 0; padding-left: 0.25rem; padding-right: 0.25rem; }
  .hero h1 { font-size: clamp(2.1rem, 9.25vw, 3.25rem); }
  .hero h1 em { white-space: nowrap; }
  .breadcrumb { letter-spacing: 0.08em; }
  .checkout-grid .order-summary { position: static; padding: 1.5rem; }
  .eyebrow { font-size: 0.65rem !important; }
  .bracelet-pendant { margin-top: 12px; }
}
@media (max-width: 360px) {
  .grid { gap: 1.25rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .rec-grid { grid-template-columns: 1fr; }
  .coulomb-cards-grid { grid-template-columns: 1fr; }
  .thumbnail { width: 64px; height: 64px; }
  .cart-item { grid-template-columns: 64px 1fr auto; gap: 0.75rem; }
  .card-body h3 { font-size: 1.25rem; }
  .product-card-name { font-size: 1.15rem; }
  .brand-sub { font-size: 0.5rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 0.125rem; }
  .eyebrow { font-size: 0.55rem !important; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero p { font-size: 0.95rem; max-width: 100%; }
  .page-head h1 { font-size: clamp(2.1rem, 6.5vw, 3rem); }
  .page-head p { font-size: 0.95rem; }
  .section-head h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .section-head p { font-size: 0.92rem; }
  .product-title { font-size: clamp(1.75rem, 4.8vw, 2.4rem); }
  .product-desc { font-size: 0.9rem; }
  .cart-drawer-head h3 { font-size: 1.3rem; }
  .order-summary h3,
  .checkout-form-section h3 { font-size: 1.35rem; }
  .info-item h4 { font-size: 1.1rem; }
  .hero-actions { justify-content: center; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; min-width: 0; justify-content: center; padding: 0.85rem 1rem; font-size: 0.78rem; }
  .hero-actions .btn.btn-outline { width: 100%; }
  .delivery-option .delivery-option-title,
  .delivery-option .delivery-option-desc {
    font-size: 0.92rem;
  }
  #checkoutConfirm {
    padding: 0.9rem 1rem;
  }
  .bracelet-pendant { margin-top: 5px; }
  .about-page-cta {
    font-size: 0.8rem;
    padding: 0.82rem 1rem;
  }
}
@media (max-width: 270px) {
  .btn.adaptive-mobile-btn-270 { font-size: 0.6rem; padding: 0.75rem 1.5rem; }
  .card-body h3 { font-size: 1rem; }
  .card-body .card-tag { font-size: 0.6rem; }
  .card-body .card-price { font-size: 1rem; }
  .product-card-name { font-size: 1.1rem; }
  .hero h1 { font-size: clamp(1.6rem, 7.3vw, 2.3rem); }
  .hero p { font-size: 0.88rem; }
  .page-head h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .page-head p { font-size: 0.9rem; }
  .section-head h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-head p { font-size: 0.82rem; }
  .product-title { font-size: clamp(1.6rem, 5.5vw, 2.1rem); }
  .product-desc { font-size: 0.85rem; }
  .cart-drawer-head h3 { font-size: 1.2rem; }
  .order-summary h3,
  .checkout-form-section h3 { font-size: 1.25rem; }
  .info-item h4 { font-size: 1rem; }
  .btn-ghost { font-size: 0.7rem; padding: 0.35rem 0.75rem; }
  .bracelet-pendant { margin-top: 1px; }
}

/* ─── UTIL ───────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted-foreground); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.hidden { display: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
