/* RS McDuffie CPA - Nonprofit Resources
   Brand: white / near-black / RM gold accent, Montserrat + serif display */
:root {
  --paper: #ffffff;
  --ink: #141414;
  --ink-soft: #4a4a4a;
  --gold: #c99b2c;
  --gold-dark: #a87f1e;
  --line: #e8e6e1;
  --wash: #faf9f7;
  --red: #b3261e;
  --green: #1e7d43;
  --radius: 10px;
  --shadow: 0 2px 14px rgba(20, 20, 20, .07);
  --shadow-lg: 0 12px 40px rgba(20, 20, 20, .16);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 14px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; }
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a:hover { color: var(--gold-dark); }
.cart-btn {
  position: relative; background: none; border: 1.5px solid var(--ink);
  border-radius: 999px; padding: 8px 18px; font-weight: 600; font-size: 13px;
  display: flex; align-items: center; gap: 8px; transition: .18s;
}
.cart-btn:hover { background: var(--ink); color: #fff; }
.cart-count {
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 700;
  min-width: 19px; height: 19px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 5px;
}

/* ---------- hero ---------- */
.hero { text-align: center; padding: 54px 24px 30px; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(34px, 5vw, 56px);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.hero .rule { width: 64px; height: 3px; background: var(--gold); margin: 18px auto 14px; }
.hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; font-size: 15px; }

/* ---------- collection chips ---------- */
.collections { max-width: 1240px; margin: 10px auto 6px; padding: 0 24px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  border: 1.5px solid var(--line); background: var(--paper); border-radius: 999px;
  padding: 9px 20px; font-size: 13px; font-weight: 600; transition: .18s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- toolbar ---------- */
.toolbar {
  max-width: 1240px; margin: 22px auto 8px; padding: 0 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}
.search-wrap { position: relative; flex: 1 1 260px; max-width: 380px; }
.search-wrap input {
  width: 100%; padding: 11px 16px 11px 40px; border: 1.5px solid var(--line);
  border-radius: 999px; outline: none; background: var(--wash); transition: .18s;
}
.search-wrap input:focus { border-color: var(--gold); background: #fff; }
.search-wrap svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); opacity: .45; }
.toolbar select {
  padding: 10px 14px; border: 1.5px solid var(--line); border-radius: 999px;
  background: var(--paper); outline: none; font-size: 13px; font-weight: 500;
}
.result-count { margin-left: auto; font-size: 13px; color: var(--ink-soft); }

/* ---------- grid ---------- */
.grid {
  max-width: 1240px; margin: 18px auto 60px; padding: 0 24px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px;
}
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s; position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 1; overflow: hidden; background: var(--wash); cursor: pointer; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card:hover .card-img img { transform: scale(1.04); }
.badge {
  position: absolute; top: 12px; left: 12px; background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; padding: 5px 11px; border-radius: 999px;
}
.badge.oos { background: var(--ink-soft); }
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-title { font-size: 14.5px; font-weight: 600; line-height: 1.4; cursor: pointer; }
.card-title:hover { color: var(--gold-dark); }
.price-row { display: flex; align-items: baseline; gap: 9px; margin-top: auto; }
.price { font-size: 17px; font-weight: 700; }
.compare { font-size: 13.5px; color: var(--ink-soft); text-decoration: line-through; }
.sale-pct { font-size: 12px; color: var(--gold-dark); font-weight: 700; }
.add-btn {
  margin-top: 10px; width: 100%; padding: 11px; border: 1.5px solid var(--ink);
  background: var(--paper); border-radius: 999px; font-weight: 600; font-size: 13px;
  letter-spacing: .03em; transition: .18s;
}
.add-btn:hover:not(:disabled) { background: var(--ink); color: #fff; }
.add-btn:disabled { opacity: .45; cursor: not-allowed; }
.add-btn.added { background: var(--green); border-color: var(--green); color: #fff; }

.empty-state { grid-column: 1/-1; text-align: center; padding: 70px 0; color: var(--ink-soft); }

/* ---------- cart drawer ---------- */
.overlay {
  position: fixed; inset: 0; background: rgba(20, 20, 20, .45); z-index: 90;
  opacity: 0; pointer-events: none; transition: .25s;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: -440px; width: min(420px, 94vw); height: 100%;
  background: var(--paper); z-index: 100; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; transition: right .3s cubic-bezier(.2,.7,.3,1);
}
.drawer.open { right: 0; }
.drawer-head {
  padding: 20px 24px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-head h2 { font-family: var(--serif); font-size: 21px; }
.close-x { background: none; border: none; font-size: 22px; line-height: 1; padding: 4px; }
.drawer-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 66px; height: 66px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.ci-info { flex: 1; min-width: 0; }
.ci-name { font-size: 13px; font-weight: 600; line-height: 1.35; }
.ci-price { font-size: 13px; color: var(--ink-soft); margin-top: 3px; }
.ci-controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn {
  width: 26px; height: 26px; border: 1.5px solid var(--line); background: #fff;
  border-radius: 7px; font-weight: 700; font-size: 14px; line-height: 1;
}
.qty-btn:hover { border-color: var(--ink); }
.ci-remove { margin-left: auto; background: none; border: none; color: var(--ink-soft); font-size: 12px; text-decoration: underline; }
.ci-remove:hover { color: var(--red); }
.drawer-foot { padding: 20px 24px; border-top: 1px solid var(--line); }
.total-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.checkout-btn {
  width: 100%; padding: 14px; background: var(--gold); color: #fff; border: none;
  border-radius: 999px; font-weight: 700; font-size: 14px; letter-spacing: .04em; transition: .18s;
}
.checkout-btn:hover { background: var(--gold-dark); }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 50px 0; }

/* ---------- modals ---------- */
.modal-wrap {
  position: fixed; inset: 0; z-index: 110; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(20, 20, 20, .5);
}
.modal-wrap.open { display: flex; }
.modal {
  background: var(--paper); border-radius: 14px; max-width: 860px; width: 100%;
  max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-lg); position: relative;
}
.modal .close-x { position: absolute; top: 14px; right: 16px; z-index: 2; background: #fff; border-radius: 999px; width: 34px; height: 34px; border: 1px solid var(--line); }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; }
.pd-grid .pd-img { background: var(--wash); }
.pd-grid .pd-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-body { padding: 34px 32px; display: flex; flex-direction: column; gap: 14px; }
.pd-cats { display: flex; flex-wrap: wrap; gap: 6px; }
.pd-cat { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-dark); background: #f7efdc; padding: 4px 10px; border-radius: 999px; }
.pd-body h2 { font-family: var(--serif); font-size: 25px; line-height: 1.25; }
.pd-desc { color: var(--ink-soft); font-size: 14.5px; }
@media (max-width: 700px) { .pd-grid { grid-template-columns: 1fr; } }

/* checkout modal */
.co-body { padding: 34px 32px; }
.co-body h2 { font-family: var(--serif); font-size: 24px; margin-bottom: 6px; }
.co-summary { margin: 16px 0; border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px; font-size: 13.5px; }
.co-summary .row { display: flex; justify-content: space-between; padding: 4px 0; }
.co-summary .row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; font-weight: 700; font-size: 15px; }
#paypal-buttons { margin-top: 10px; }
.demo-note {
  background: #fdf6e4; border: 1px solid #eadaa9; color: #7a611c;
  font-size: 13px; border-radius: 10px; padding: 12px 16px; margin-top: 12px;
}
.success-note { background: #e9f6ee; border: 1px solid #bfe3cd; color: var(--green); font-size: 14px; border-radius: 10px; padding: 14px 16px; margin-top: 12px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--wash); margin-top: 40px; }
.footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 44px 24px;
  display: flex; flex-wrap: wrap; gap: 34px; justify-content: space-between; align-items: center;
}
.footer-inner .contact { font-size: 14px; color: var(--ink-soft); line-height: 2; }
.footer-inner .contact strong { color: var(--ink); }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 38px; height: 38px; border: 1.5px solid var(--ink); border-radius: 999px;
  display: flex; align-items: center; justify-content: center; transition: .18s; font-size: 15px;
}
.socials a:hover { background: var(--ink); color: #fff; }
.copyright { text-align: center; font-size: 12px; color: var(--ink-soft); padding: 0 24px 26px; }

/* toast */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--ink); color: #fff; padding: 12px 24px; border-radius: 999px;
  font-size: 13.5px; z-index: 200; transition: .3s; opacity: 0;
}
.toast.show { transform: translateX(-50%); opacity: 1; }

/* =========================================================
   ADMIN PORTAL
   ========================================================= */
.admin-body { background: var(--wash); min-height: 100vh; }
.admin-topbar {
  background: var(--ink); color: #fff; padding: 14px 28px;
  display: flex; align-items: center; gap: 18px;
}
.admin-topbar img { height: 36px; filter: brightness(0) invert(1); }
.admin-topbar .title { font-family: var(--serif); font-size: 17px; letter-spacing: .03em; }
.admin-topbar .spacer { flex: 1; }
.admin-topbar a, .admin-topbar button.linkish {
  color: #ddd; background: none; border: none; font-size: 13px; font-weight: 600;
}
.admin-topbar a:hover, .admin-topbar button.linkish:hover { color: var(--gold); }

.admin-main { max-width: 1180px; margin: 0 auto; padding: 30px 24px 70px; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 22px; }
.admin-tabs button {
  padding: 9px 22px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; font-weight: 600; font-size: 13px;
}
.admin-tabs button.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.admin-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 18px; }
.btn {
  padding: 11px 22px; border-radius: 999px; border: none; font-weight: 700;
  font-size: 13px; letter-spacing: .02em; transition: .18s;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { background: #fff; border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-danger { background: none; border: none; color: var(--red); text-decoration: underline; font-size: 12.5px; }
.admin-search { flex: 1 1 240px; max-width: 340px; padding: 10px 16px; border: 1.5px solid var(--line); border-radius: 999px; outline: none; }
.admin-search:focus { border-color: var(--gold); }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 24px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.stat .num { font-size: 26px; font-weight: 800; font-family: var(--serif); }
.stat .lbl { font-size: 12px; color: var(--ink-soft); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-top: 2px; }

.table-wrap { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
table.admin-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.admin-table th {
  text-align: left; padding: 13px 16px; background: var(--wash);
  font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fcfbf8; }
.thumb { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; background: #f1efe9; border-radius: 999px; padding: 3px 9px; margin: 1px 2px 1px 0; color: var(--ink-soft); }
.pill { font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.pill.in { background: #e9f6ee; color: var(--green); }
.pill.out { background: #fbeaea; color: var(--red); }
.pill.feat { background: #f7efdc; color: var(--gold-dark); }
.row-actions { white-space: nowrap; }
.row-actions button { background: none; border: none; font-size: 12.5px; font-weight: 600; text-decoration: underline; margin-right: 10px; }
.row-actions .edit { color: var(--ink); }
.row-actions .del { color: var(--red); }

/* admin form modal */
.form-modal { max-width: 700px; padding: 34px 34px 30px; }
.form-modal h2 { font-family: var(--serif); font-size: 23px; margin-bottom: 20px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fgroup { display: flex; flex-direction: column; gap: 6px; }
.fgroup.full { grid-column: 1/-1; }
.fgroup label { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.fgroup input[type=text], .fgroup input[type=number], .fgroup input[type=url], .fgroup textarea {
  padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 9px; outline: none; background: #fff;
}
.fgroup input:focus, .fgroup textarea:focus { border-color: var(--gold); }
.fgroup textarea { min-height: 84px; resize: vertical; }
.cat-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-checks label {
  display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600;
  text-transform: none; letter-spacing: 0; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 999px; padding: 7px 14px; cursor: pointer;
}
.cat-checks label:has(input:checked) { border-color: var(--gold); background: #fdf8ec; }
.switches { display: flex; gap: 22px; align-items: center; }
.switches label { display: flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--ink); cursor: pointer; }
.img-preview { margin-top: 8px; width: 110px; height: 110px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); display: none; }
.form-foot { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; }
.form-error { color: var(--red); font-size: 13px; margin-top: 12px; display: none; }

/* login */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--wash); padding: 20px; }
.login-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 44px 40px; width: 100%; max-width: 400px; text-align: center;
}
.login-card img { height: 54px; margin: 0 auto 14px; }
.login-card h1 { font-family: var(--serif); font-size: 22px; margin-bottom: 4px; }
.login-card p { font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; }
.login-card input {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  outline: none; margin-bottom: 14px; font-size: 14px;
}
.login-card input:focus { border-color: var(--gold); }
.login-card .btn { width: 100%; padding: 13px; }
.login-err { color: var(--red); font-size: 13px; margin-top: 10px; display: none; }

@media (max-width: 640px) {
  .header-inner { padding: 12px 16px; gap: 12px; }
  .main-nav { gap: 14px; font-size: 12.5px; }
  .fgrid { grid-template-columns: 1fr; }
  .admin-table .hide-sm { display: none; }
}

/* =========================================================
   V2 — CRO additions
   ========================================================= */
/* hero v2 */
.hero .eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 14px;
}
.hero h1 { text-transform: none; letter-spacing: .01em; }
.hero .cta-row { margin-top: 26px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-hero {
  background: var(--gold); color: #fff; border: none; border-radius: 999px;
  padding: 15px 34px; font-weight: 700; font-size: 15px; letter-spacing: .02em; transition: .18s;
}
.btn-hero:hover { background: var(--gold-dark); transform: translateY(-1px); }
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center;
  margin: 30px auto 0; padding: 14px 24px; max-width: 900px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft);
}
.trust-bar span::before { content: "✓ "; color: var(--gold-dark); font-weight: 800; }

/* section shells */
.band { max-width: 1240px; margin: 0 auto; padding: 44px 24px 10px; }
.band-title { font-family: var(--serif); font-size: 27px; text-align: center; margin-bottom: 6px; }
.band-sub { text-align: center; color: var(--ink-soft); font-size: 14px; margin-bottom: 26px; }

/* start-here cards */
.paths { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.path-card {
  border: 1.5px solid var(--line); border-radius: 14px; padding: 26px 24px;
  background: var(--paper); cursor: pointer; transition: .2s; text-align: left;
}
.path-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.path-card .p-kicker { font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--gold-dark); text-transform: uppercase; }
.path-card h3 { font-family: var(--serif); font-size: 19px; margin: 8px 0 8px; }
.path-card p { font-size: 13.5px; color: var(--ink-soft); }
.path-card .p-link { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--ink); }
.path-card .p-link::after { content: " →"; color: var(--gold-dark); }

/* best sellers row reuses .grid but capped */
.bestsellers { padding-bottom: 20px; }

/* Meet Rolanda */
.rolanda { background: var(--wash); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 40px; }
.rolanda-inner {
  max-width: 1040px; margin: 0 auto; padding: 54px 24px;
  display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: center;
}
.rolanda-inner img { border-radius: 12px; box-shadow: var(--shadow-lg); }
.rolanda-inner .r-kicker { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; color: var(--gold-dark); text-transform: uppercase; }
.rolanda-inner h2 { font-family: var(--serif); font-size: 27px; margin: 10px 0 14px; line-height: 1.3; }
.rolanda-inner p { color: var(--ink-soft); font-size: 15px; margin-bottom: 12px; }
@media (max-width: 700px) { .rolanda-inner { grid-template-columns: 1fr; text-align: center; } .rolanda-inner img { margin: 0 auto; max-width: 200px; } }

/* testimonials */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.quote-card { border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: #fff; }
.quote-card .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.quote-card p { font-size: 14px; color: var(--ink); font-style: italic; }
.quote-card .who { margin-top: 14px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); font-style: normal; }

/* email capture band */
.capture { background: var(--ink); color: #fff; margin-top: 50px; }
.capture-inner { max-width: 760px; margin: 0 auto; padding: 54px 24px; text-align: center; }
.capture h2 { font-family: var(--serif); font-size: 26px; margin-bottom: 8px; }
.capture p { color: #cfcabc; font-size: 14.5px; margin-bottom: 22px; }
.capture form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.capture input {
  flex: 1 1 240px; padding: 14px 18px; border-radius: 999px; border: none; outline: none; font-size: 14px;
}
.capture .btn-gold { padding: 14px 26px; }
.capture .fine { font-size: 11.5px; color: #97917f; margin-top: 14px; }
.capture .success-note { background: rgba(30,125,67,.18); border-color: rgba(30,125,67,.4); color: #9fd8b4; }

/* stars on cards */
.mini-stars { color: var(--gold); font-size: 12.5px; letter-spacing: 1px; }
.mini-stars .cnt { color: var(--ink-soft); font-size: 11.5px; letter-spacing: 0; }

/* product modal v2 */
.pd-sub { color: var(--ink-soft); font-size: 14.5px; font-style: italic; }
.fmt-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.fmt-badge {
  font-size: 11px; font-weight: 700; letter-spacing: .03em; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; background: var(--wash);
}
.pd-section-t { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dark); margin-top: 6px; }
.inside-list { margin: 4px 0 0; padding: 0; list-style: none; }
.inside-list li { font-size: 13.5px; color: var(--ink); padding: 4px 0 4px 22px; position: relative; }
.inside-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--gold-dark); font-weight: 800; }
.author-strip {
  display: flex; gap: 12px; align-items: center; background: var(--wash);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-size: 12.5px; color: var(--ink-soft);
}
.author-strip b { color: var(--ink); }
.micro-under { font-size: 11.5px; color: var(--ink-soft); text-align: center; margin-top: 8px; }
.pd-reviews { padding: 8px 32px 30px; border-top: 1px solid var(--line); }
.pd-reviews h3 { font-family: var(--serif); font-size: 19px; margin: 18px 0 12px; }
.review-item { border-bottom: 1px solid var(--line); padding: 12px 0; }
.review-item .stars { color: var(--gold); font-size: 13px; letter-spacing: 1.5px; }
.review-item p { font-size: 13.5px; margin: 6px 0 4px; }
.review-item .who { font-size: 12px; color: var(--ink-soft); font-weight: 600; }
.review-form { margin-top: 16px; display: grid; gap: 10px; }
.review-form input, .review-form textarea, .review-form select {
  padding: 10px 13px; border: 1.5px solid var(--line); border-radius: 9px; outline: none; font-size: 13.5px;
}
.review-form textarea { min-height: 70px; resize: vertical; }
.review-form .rf-row { display: grid; grid-template-columns: 1fr 1fr 130px; gap: 10px; }
@media (max-width: 640px) { .review-form .rf-row { grid-template-columns: 1fr; } }

/* cross-sells */
.xsell { padding: 16px 32px 28px; border-top: 1px solid var(--line); }
.xsell h3 { font-family: var(--serif); font-size: 18px; margin: 14px 0 12px; }
.xsell-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.xsell-card { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; cursor: pointer; transition: .18s; background: #fff; }
.xsell-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.xsell-card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.xsell-card .xc-body { padding: 9px 11px; }
.xsell-card .xc-name { font-size: 12px; font-weight: 600; line-height: 1.35; }
.xsell-card .xc-price { font-size: 12.5px; font-weight: 700; margin-top: 4px; }
.xsell-card .xc-save { color: var(--gold-dark); font-size: 11px; font-weight: 700; }

/* order bump */
.bump {
  border: 1.5px dashed var(--gold); background: #fdf8ec; border-radius: 12px;
  padding: 14px 16px; margin-top: 14px; display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
}
.bump input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--gold-dark); }
.bump .b-title { font-size: 13px; font-weight: 700; }
.bump .b-text { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.bump .b-price { color: var(--gold-dark); font-weight: 800; }

/* footer v2 */
.footer-cols {
  max-width: 1240px; margin: 0 auto; padding: 50px 24px 20px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 36px;
}
.fcol h4 { font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.fcol a, .fcol .fline { display: block; font-size: 13.5px; color: var(--ink-soft); padding: 4px 0; }
.fcol a:hover { color: var(--gold-dark); }
.fcol .brand-blurb { font-size: 13px; color: var(--ink-soft); line-height: 1.7; margin-top: 10px; }
.fcol form { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.fcol input { flex: 1 1 150px; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: 999px; outline: none; font-size: 13px; }
.fcol .btn-gold { padding: 10px 18px; font-size: 12.5px; }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  max-width: 1240px; margin-left: auto; margin-right: auto; padding: 18px 24px;
  font-size: 12px; color: var(--ink-soft);
}
@media (max-width: 860px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr; } }

/* sticky mobile add-to-cart in product modal */
@media (max-width: 700px) {
  .pd-body .checkout-btn { position: sticky; bottom: 10px; box-shadow: var(--shadow-lg); }
}

/* ===== V3 additions ===== */
.announce {
  background: var(--ink); color: #fff; text-align: center;
  font-size: 12.5px; font-weight: 600; letter-spacing: .03em; padding: 9px 16px;
}
.announce a { color: var(--gold); text-decoration: underline; cursor: pointer; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 0 20px;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 15px; padding: 16px 0; list-style: none; position: relative;
}
.faq-item summary::after { content: "+"; position: absolute; right: 2px; color: var(--gold-dark); font-size: 19px; font-weight: 800; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 0 16px; font-size: 14px; color: var(--ink-soft); }
.mini-faq { margin-top: 6px; }
.mini-faq .faq-item { padding: 0 14px; border-radius: 10px; }
.mini-faq summary { font-size: 13px; padding: 11px 0; }
.mini-faq .faq-item p { font-size: 12.5px; padding-bottom: 12px; }
.anchor-line {
  background: #f4f8f5; border: 1px solid #cfe3d5; color: #24603c;
  font-size: 12.5px; border-radius: 10px; padding: 10px 14px; font-weight: 600;
}
.gift {
  border: 1.5px dashed var(--green); background: #eef8f1; border-radius: 12px;
  padding: 14px 16px; margin-top: 12px; display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
}
.gift input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--green); }
.gift .g-title { font-size: 13px; font-weight: 700; color: var(--green); }
.gift .g-text { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.gift-progress { font-size: 12px; color: var(--ink-soft); margin-top: 12px; text-align: center; }
.gift-progress b { color: var(--gold-dark); }
