/* GoldNest — Perhiasan & Aksesori | style.css */
:root {
  --primary: #3e2723;
  --accent: #ffd54f;
  --accent-dark: #f9a825;
  --bg: #fdf8f0;
  --bg2: #f5ede0;
  --text: #2c1810;
  --text-muted: #7a5c4a;
  --border: #e0c9a6;
  --white: #fff;
  --shadow: 0 4px 24px rgba(62,39,35,0.10);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ===== DEMO BAR ===== */
.demo-bar {
  background: var(--primary);
  color: var(--accent);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 16px;
}
.demo-bar a {
  color: #fff;
  text-decoration: underline;
  margin: 0 4px;
}
.demo-bar a:hover { color: var(--accent); }

/* ===== NAV ===== */
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(62,39,35,0.18);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.logo svg { width: 32px; height: 32px; }

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}
nav ul a {
  color: #f5e6c8;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
nav ul a:hover, nav ul a.active { color: var(--accent); }

/* Mobile menu checkbox hack */
#menu-toggle { display: none; }
.menu-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-label span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.25s;
}
#menu-toggle:checked ~ .menu-label span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
#menu-toggle:checked ~ .menu-label span:nth-child(2) { opacity: 0; }
#menu-toggle:checked ~ .menu-label span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 700px) {
  .menu-label { display: flex; }
  nav {
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--primary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  #menu-toggle:checked ~ nav { max-height: 320px; }
  nav ul { flex-direction: column; gap: 0; padding: 8px 20px 16px; }
  nav ul a { display: block; padding: 10px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,213,79,0.15); }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #3e2723 0%, #5d3b2e 45%, #4e342e 100%);
  color: var(--white);
  padding: 80px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(255,213,79,0.10) 0%, transparent 70%);
}
.hero-badge {
  display: inline-block;
  background: rgba(255,213,79,0.18);
  border: 1px solid rgba(255,213,79,0.4);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero p {
  font-size: 1.08rem;
  color: #f5e6c8;
  max-width: 520px;
  margin: 0 auto 36px;
  opacity: 0.9;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Ornament SVG gems in hero */
.hero-ornament {
  position: absolute;
  opacity: 0.07;
}
.hero-ornament.left { left: 3%; top: 20%; width: 140px; }
.hero-ornament.right { right: 3%; bottom: 10%; width: 180px; transform: rotate(25deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  letter-spacing: 0.03em;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #ffd54f, #f9a825);
  color: var(--primary);
  box-shadow: 0 4px 18px rgba(249,168,37,0.4);
}
.btn-gold:hover { box-shadow: 0 6px 24px rgba(249,168,37,0.55); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,213,79,0.6);
  color: var(--accent);
}
.btn-outline:hover { background: rgba(255,213,79,0.08); border-color: var(--accent); }
.btn-primary {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(62,39,35,0.25);
}
.btn-primary:hover { background: #4e342e; box-shadow: 0 6px 22px rgba(62,39,35,0.35); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ===== SECTION ===== */
.section { padding: 72px 20px; }
.section-alt { background: var(--bg2); }
.container { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head .label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(249,168,37,0.12);
  border: 1px solid rgba(249,168,37,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-head p { color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(62,39,35,0.14); }

.product-thumb {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f5ede0, #eddfc6);
  position: relative;
  overflow: hidden;
}
.product-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,213,79,0.18), transparent 60%);
}
.product-thumb svg { width: 70%; height: 70%; }

/* Colored thumb variants */
.thumb-ring .product-thumb { background: linear-gradient(145deg, #f0e8d5, #e8d8bc); }
.thumb-necklace .product-thumb { background: linear-gradient(145deg, #ede4f7, #ddd0f5); }
.thumb-bangle .product-thumb { background: linear-gradient(145deg, #d5eaf0, #b8dce8); }
.thumb-earring .product-thumb { background: linear-gradient(145deg, #f7edd5, #f0d8b0); }
.thumb-brooch .product-thumb { background: linear-gradient(145deg, #d5f0e0, #b0e8c4); }

.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--primary);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 1;
}
.badge-new { background: #2e7d32; color: #fff; }
.badge-hot { background: #c62828; color: #fff; }

.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}
.product-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 14px;
  margin-top: auto;
}
.product-price del {
  font-size: 0.8rem;
  color: #bbb;
  font-weight: 400;
  margin-left: 6px;
}

/* ===== CATEGORY CARDS ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 16px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(62,39,35,0.07);
  transition: all 0.22s;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 8px 28px rgba(62,39,35,0.12); }
.cat-icon {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #fdf3d0, #fae8b0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(249,168,37,0.3);
}
.cat-icon svg { width: 30px; height: 30px; }
.cat-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.cat-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ===== FEATURES / USP ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary), #5d3b2e);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 24px; height: 24px; color: var(--accent); }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.feature-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.stars { color: var(--accent-dark); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.testi-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.testi-author { font-weight: 700; color: var(--primary); font-size: 0.88rem; }
.testi-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ===== BANNER STRIP ===== */
.banner-strip {
  background: linear-gradient(135deg, #3e2723, #5d3b2e);
  color: var(--white);
  padding: 48px 20px;
  text-align: center;
}
.banner-strip h2 { font-size: 1.8rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.banner-strip p { color: #f5e6c8; margin-bottom: 24px; }

/* ===== FILTER TABS (CSS-only) ===== */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-tab input[type=radio] { display: none; }
.filter-tab label {
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  transition: all 0.18s;
}
.filter-tab label:hover { border-color: var(--accent-dark); color: var(--primary); }
.filter-tab input:checked + label {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 700px) { .product-detail-wrap { grid-template-columns: 1fr; gap: 28px; } }

.product-visual {
  background: linear-gradient(145deg, #f5ede0, #eddfc6);
  border-radius: 20px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}
.product-visual::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,213,79,0.22), transparent 65%);
  top: 10%; left: 10%;
}
.product-visual svg { width: 55%; height: 55%; position: relative; }

.product-detail-info h1 { font-size: 1.7rem; font-weight: 900; color: var(--primary); margin-bottom: 8px; }
.product-detail-price { font-size: 2rem; font-weight: 900; color: var(--accent-dark); margin-bottom: 6px; }
.product-detail-price del { font-size: 1.1rem; color: #bbb; font-weight: 400; margin-left: 10px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.product-rating .stars { font-size: 0.9rem; margin: 0; }
.product-rating span { font-size: 0.85rem; color: var(--text-muted); }
.product-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }
.product-specs { margin-bottom: 22px; }
.spec-row { display: flex; border-bottom: 1px solid var(--border); padding: 8px 0; font-size: 0.9rem; }
.spec-row dt { font-weight: 600; color: var(--primary); width: 130px; flex-shrink: 0; }
.spec-row dd { color: var(--text-muted); }

.variant-group { margin-bottom: 20px; }
.variant-label { font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.variant-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-btn {
  padding: 7px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  transition: all 0.18s;
}
.variant-btn:hover, .variant-btn.active { border-color: var(--primary); background: var(--primary); color: var(--accent); }
.color-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.18s, transform 0.18s;
}
.color-swatch:hover, .color-swatch.active { border-color: var(--primary); transform: scale(1.15); }

/* ===== ORDER FORM ===== */
.order-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.order-wrap h1 { font-size: 1.9rem; font-weight: 900; color: var(--primary); margin-bottom: 6px; }
.order-wrap > p { color: var(--text-muted); margin-bottom: 32px; }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.form-card h2 { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.form-card h2 .num {
  width: 28px; height: 28px;
  background: var(--primary);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(249,168,37,0.15);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-grid2 { grid-template-columns: 1fr; } }

.payment-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .payment-opts { grid-template-columns: 1fr; } }
.pay-opt { position: relative; }
.pay-opt input[type=radio] { display: none; }
.pay-opt label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  transition: all 0.18s;
}
.pay-opt input:checked + label { border-color: var(--primary); background: rgba(62,39,35,0.05); color: var(--primary); }
.pay-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--primary), #5d3b2e);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pay-icon svg { width: 16px; height: 16px; color: var(--accent); }

.order-summary {
  background: linear-gradient(135deg, #3e2723, #4e342e);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.order-summary h3 { font-size: 1rem; font-weight: 700; color: var(--accent); margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 8px; color: #f5e6c8; }
.summary-row.total { font-weight: 800; color: var(--accent); font-size: 1.05rem; border-top: 1px solid rgba(255,213,79,0.2); padding-top: 10px; margin-top: 4px; }

/* ===== KONTAK ===== */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 700px) { .kontak-grid { grid-template-columns: 1fr; gap: 28px; } }
.kontak-info h2 { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.kontak-info > p { color: var(--text-muted); margin-bottom: 28px; }
.kontak-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.kontak-item-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), #5d3b2e);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kontak-item-icon svg { width: 20px; height: 20px; color: var(--accent); }
.kontak-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.kontak-item p, .kontak-item a { font-size: 0.9rem; color: var(--text-muted); text-decoration: none; }
.kontak-item a:hover { color: var(--primary); text-decoration: underline; }

.jam-buka { background: var(--bg2); border-radius: var(--radius); padding: 20px; margin-top: 8px; border: 1px solid var(--border); }
.jam-buka h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.jam-row { display: flex; justify-content: space-between; font-size: 0.87rem; padding: 5px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.jam-row:last-child { border: none; }
.jam-row span:last-child { font-weight: 600; color: var(--primary); }

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  background: linear-gradient(145deg, #eddfc6, #ddd0b0);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.map-placeholder svg { width: 48px; height: 48px; opacity: 0.5; }

/* ===== FOOTER ===== */
footer {
  background: #2c1810;
  color: #c8a882;
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand .logo { font-size: 1.15rem; margin-bottom: 12px; display: inline-flex; }
.footer-brand p { font-size: 0.87rem; line-height: 1.6; color: #a08060; max-width: 280px; }
.footer-col h4 { color: var(--accent); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: #a08060; text-decoration: none; font-size: 0.88rem; transition: color 0.18s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,213,79,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #7a5c4a;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #3e2723 0%, #5d3b2e 100%);
  color: var(--white);
  padding: 48px 20px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: var(--accent); margin-bottom: 10px; }
.page-hero p { color: #f5e6c8; font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ===== DIVIDER ===== */
.divider { height: 1px; background: var(--border); margin: 0 20px; }
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 2px;
  margin: 12px auto 0;
}
