/* US Certified Peptides — Public Site Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

:root {
  /* exact values from original design */
  --page-bg:    #010F29;
  --navy:       #0F1A3C;
  --navy-mid:   #1B2951;
  --red:        #C8102E;
  --red-dark:   #A00D24;
  --gold:       #C9A961;
  --green:      #1b7a47;
  --bg:         #F7F8FA;
  --white:      #ffffff;
  --body-text:  #4A5568;
  --muted-text: #C0C5CE;
  --border:     #E8EAED;
  --g100:       #F7F8FA;
  --g200:       #E8EAED;
  --g400:       #9ca3af;
  --g600:       #4A5568;
  --g800:       #1f2937;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--navy); background: var(--white); line-height: 1.6; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.15; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons — rounded-sm, uppercase, tracked */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--red); color: var(--white);
  border: none; border-radius: 3px; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer;
  box-shadow: 0 8px 20px rgba(200,16,46,0.3);
  transition: background .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 28px rgba(200,16,46,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.4); border-radius: 3px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer;
  transition: border-color .2s, background .2s; text-decoration: none;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.05); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--navy); color: var(--white);
  border: none; border-radius: 3px; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .2s; text-decoration: none;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 58px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-links a {
  padding: 7px 12px; color: var(--navy); font-size: 13px; font-weight: 500;
  font-family: 'Inter', sans-serif;
  border-radius: 3px; transition: color .15s, background .15s; opacity: .75;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--red); background: rgba(200,16,46,.10); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-coa {
  padding: 7px 14px; border: 1px solid var(--navy); color: var(--navy);
  border-radius: 3px; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase; transition: background .15s, color .15s;
}
.nav-coa:hover { background: var(--navy); color: #fff; }
.nav-cart-btn {
  position: relative; background: var(--red); border: none; border-radius: 3px;
  padding: 8px 16px; color: var(--white); font-size: 13px; font-weight: 700;
  font-family: 'Inter', sans-serif;
  display: flex; align-items: center; gap: 7px; transition: background .15s;
}
.nav-cart-btn:hover { background: var(--red-dark); }
.cart-count {
  background: var(--white); color: var(--red); border-radius: 50%;
  width: 18px; height: 18px; font-size: 11px; font-weight: 800;
  display: none; align-items: center; justify-content: center;
}
.cart-count.visible { display: flex; }
.nav-hamburger { display: none; background: none; border: none; color: var(--navy); font-size: 22px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

/* ── SCROLL ANIMATE ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SECTION BASICS ── */
.section { padding: 96px 0; }
.section-light { background: var(--bg); }
.section-white { background: var(--white); }
.section-dark {
  background: var(--navy); color: var(--white);
  position: relative; overflow: hidden;
}
/* Dot-grid texture on dark sections */
.section-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,1) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.05;
}

/* ── SECTION HEADER PATTERN ── */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-redline { margin-inline: auto; }
.section-header.centered .section-body { margin-inline: auto; }

.section-eyebrow {
  display: inline-block; font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
}
.section-eyebrow-light { color: var(--muted-text); }
.section-redline {
  width: 40px; height: 2px; background: var(--red);
  margin-top: 4px; margin-bottom: 20px;
}
.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px); font-weight: 500;
  line-height: 1.12; color: var(--navy);
}
.section-dark .section-header h2 { color: var(--white); }
.section-header .section-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px; color: var(--body-text);
  line-height: 1.6; margin-top: 16px; max-width: 560px;
}
.section-dark .section-header .section-body { color: rgba(255,255,255,.6); }

/* Gold compliance callout */
.gold-divider-wrap { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.gold-divider-wrap .line-grey  { height: 1px; background: var(--muted-text); opacity: .35; width: 40px; }
.gold-divider-wrap .line-gold  { height: 1px; background: var(--gold); width: 60px; }
.gold-compliance-text {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  font-style: italic;
}

/* ── HERO ── */
.hero {
  background: url('/assets/img/home-hero.jpg') center/cover no-repeat;
  background-color: var(--page-bg);
  min-height: 780px; padding: 180px 0 140px;
  text-align: center; position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(15,26,60,0.78);
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-text);
  margin-bottom: 28px; display: block;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 0; max-width: 860px; margin-inline: auto;
}
.hero h1 .h1-muted {
  display: block; color: rgba(255,255,255,.75); font-weight: 400;
}
.hero-redline {
  width: 100px; height: 3px; background: var(--red);
  margin: 28px auto 22px;
}
.hero p {
  font-family: 'Inter', sans-serif;
  font-size: 17px; color: rgba(255,255,255,.82);
  max-width: 580px; margin: 0 auto 36px; line-height: 1.65; font-weight: 500;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 52px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: 11px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-trust-item::before { content: '✓'; color: var(--gold); font-weight: 900; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-pill {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy);
}
.trust-pill-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}

/* ── CERTIFICATION POINTS (7-point section) ── */
.cert-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px;
  position: relative; z-index: 1;
}
.cert-item {
  background: rgba(255,255,255,.06); border-radius: 4px; padding: 22px 20px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .2s;
}
.cert-item:hover { border-color: rgba(255,255,255,.2); }
.cert-num {
  flex-shrink: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 500; color: var(--gold);
  min-width: 28px; line-height: 1; padding-top: 2px;
}
.cert-text h4 {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--white); margin-bottom: 5px; letter-spacing: 0.02em;
}
.cert-text p { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.55; }

/* ── FEATURED PRODUCTS ── */
.cat-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px;
}
.cat-tab {
  padding: 7px 16px; border: 1.5px solid var(--border); background: var(--white);
  border-radius: 2px; font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--g600); cursor: pointer; transition: all .15s;
}
.cat-tab:hover, .cat-tab.active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--white); border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); border: 1px solid var(--border);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
}
.product-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); border-color: var(--gold); }
.card-img-wrap { position: relative; aspect-ratio: 1; background: var(--g100); overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .card-img-wrap img { transform: scale(1.03); }
.card-badge {
  position: absolute; top: 12px; padding: 4px 10px; border-radius: 2px;
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--white);
}
.badge-cat   { left: 12px;  background: var(--navy); }
.badge-in    { right: 12px; background: var(--green); }
.badge-out   { right: 12px; background: var(--red); }
.card-body   { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-name   {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; font-weight: 500; color: var(--navy); line-height: 1.2;
}
.card-desc   { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--body-text); line-height: 1.5; }
.card-compound {
  display: inline-block; align-self: flex-start;
  padding: 3px 10px; border: 1px solid var(--border); border-radius: 2px;
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--g600);
}
.card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px; font-weight: 500; color: var(--navy);
}
.card-in-stock  { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--green); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.card-out-stock { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--red);   font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.card-coa { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--g400); margin-top: 2px; }
.card-add-btn {
  display: block; width: 100%; padding: 13px; background: var(--red); color: var(--white);
  border: none; border-radius: 3px; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  box-shadow: 0 4px 12px rgba(200,16,46,0.25);
  transition: background .15s, box-shadow .15s; margin-top: 4px; text-align: center;
}
.card-add-btn:hover { background: var(--red-dark); box-shadow: 0 6px 18px rgba(200,16,46,0.4); }
.card-view-link { display: block; text-align: center; font-size: 12px; font-family: 'Inter', sans-serif; color: var(--g600); padding: 4px 0; }
.card-view-link:hover { color: var(--navy); text-decoration: underline; }

/* ── SHOP PAGE HEADER ── */
.shop-header {
  background: var(--navy); color: var(--white); padding: 52px 0 36px; text-align: center;
  position: relative; overflow: hidden;
}
.shop-header::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,1) 1px, transparent 0);
  background-size: 32px 32px; opacity: 0.05;
}
.shop-header-inner { position: relative; z-index: 1; }
.shop-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px; font-weight: 500; margin-bottom: 10px;
}
.shop-header p  { font-family: 'Inter', sans-serif; color: rgba(255,255,255,.6); font-size: 15px; }
.shop-certs {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  margin-top: 20px; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold);
}
.shop-certs span { display: flex; align-items: center; gap: 6px; }
.shop-certs span::before { content: '★'; }
.shop-filters {
  padding: 24px 0; background: var(--white);
  border-bottom: 1px solid var(--border); position: sticky; top: 68px; z-index: 100;
}
.filter-inner { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-count { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--g600); margin-left: auto; white-space: nowrap; }
.filter-btn {
  padding: 7px 15px; border: 1.5px solid var(--border); background: var(--white);
  border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--g600); cursor: pointer; transition: all .15s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.shop-body { padding: 40px 0 80px; background: var(--bg); }
.shop-grid-wrap { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.shop-showing { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--g600); }

/* ── PROCESS STEPS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; z-index: 1;
}
.process-grid::before {
  content: ''; position: absolute; top: 32px; left: 12%; right: 12%;
  height: 1px; background: rgba(201,169,97,0.3); z-index: 0;
}
.process-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.process-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px; font-weight: 500; color: var(--gold);
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid rgba(201,169,97,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.process-item h4 {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
  margin-bottom: 10px;
}
.process-item p { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid::before { display: none; }
}

/* ── COMPARISON TABLE ── */
.cmp-wrap { overflow-x: auto; }
.cmp-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-family: 'Inter', sans-serif; font-size: 14px;
}
.cmp-table thead th {
  padding: 16px 20px; background: var(--navy); color: var(--white);
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; text-align: left;
}
.cmp-table thead th:first-child { width: 35%; }
/* US Certified column — dark navy with gold border */
.cmp-table thead th.highlight {
  background: var(--navy);
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  color: var(--gold);
}
.cmp-table tbody tr td.highlight {
  background: var(--navy); color: var(--white);
  border-left: 1px solid rgba(201,169,97,0.4);
  border-right: 1px solid rgba(201,169,97,0.4);
}
.cmp-table tbody tr:last-child td.highlight {
  border-bottom: 1px solid var(--gold);
}
.cmp-table tbody tr:nth-child(even) td { background: var(--g100); }
.cmp-table tbody tr:nth-child(even) td.highlight { background: rgba(15,26,60,.96); }
.cmp-table tbody td { padding: 13px 20px; border-bottom: 1px solid var(--border); color: var(--g800); }
.cmp-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.cmp-table .check { color: var(--gold); font-weight: 700; }
.cmp-table .cross { color: var(--g400); }
.cmp-table tbody td.highlight .check { color: #7FC98F; }

/* ── CTA SPLIT SECTION ── */
.cta-split {
  background: var(--navy); position: relative; overflow: hidden;
}
.cta-split::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,1) 1px, transparent 0);
  background-size: 32px 32px; opacity: 0.05;
}
.cta-split-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cta-split-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 500; color: var(--white); margin-bottom: 16px;
}
.cta-split-text p {
  font-family: 'Inter', sans-serif; font-size: 15px; color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: 28px;
}
.cta-split-form { display: flex; flex-direction: column; gap: 12px; }
.cta-split-form input {
  padding: 13px 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 3px;
  background: rgba(255,255,255,.06); color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 14px; outline: none; transition: border-color .2s;
}
.cta-split-form input::placeholder { color: rgba(255,255,255,.35); }
.cta-split-form input:focus { border-color: rgba(255,255,255,.5); }
@media (max-width: 760px) {
  .cta-split-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── PRODUCT DETAIL PAGE ── */
.detail-header {
  background: var(--navy); padding: 32px 0 0; color: var(--white);
  position: relative; overflow: hidden;
}
.detail-header::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,1) 1px, transparent 0);
  background-size: 32px 32px; opacity: 0.05;
}
.detail-header-inner { position: relative; z-index: 1; }
.detail-breadcrumb { font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 8px; }
.detail-breadcrumb a { color: rgba(255,255,255,.5); }
.detail-breadcrumb a:hover { color: var(--white); }
.detail-cat-tag {
  display: inline-block; padding: 4px 12px; background: rgba(255,255,255,.1);
  border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 10px;
}
.detail-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 42px); font-weight: 500; margin-bottom: 8px;
}
.detail-tagline { font-family: 'Inter', sans-serif; font-size: 16px; color: rgba(255,255,255,.6); padding-bottom: 32px; }
.detail-body { padding: 52px 0 80px; background: var(--bg); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
@media (max-width: 720px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-img { width: 100%; border-radius: 4px; background: var(--white); aspect-ratio: 1; object-fit: cover; box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.detail-info { display: flex; flex-direction: column; gap: 20px; }
.detail-select-lbl { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--g600); margin-bottom: 4px; }
.detail-select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 3px; font-size: 14px; font-weight: 600; cursor: pointer; background: var(--white); }
.detail-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px; font-weight: 500; color: var(--navy);
}
.qty-controls { display: flex; align-items: center; gap: 0; }
.qty-btn { width: 40px; height: 40px; border: 1.5px solid var(--border); background: var(--white); font-size: 18px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qty-btn:first-child { border-radius: 3px 0 0 3px; }
.qty-btn:last-child  { border-radius: 0 3px 3px 0; }
.qty-input { width: 56px; height: 40px; border: 1.5px solid var(--border); border-left: none; border-right: none; text-align: center; font-size: 15px; font-weight: 700; }
.detail-add-btn {
  display: block; padding: 15px; background: var(--red); color: var(--white);
  border: none; border-radius: 3px; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; text-align: center;
  box-shadow: 0 8px 20px rgba(200,16,46,0.3);
  transition: background .15s, box-shadow .15s; width: 100%;
}
.detail-add-btn:hover { background: var(--red-dark); box-shadow: 0 12px 28px rgba(200,16,46,0.45); }
.tier-table { border-collapse: collapse; width: 100%; font-size: 14px; }
.tier-table th { padding: 8px 12px; background: var(--g100); font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--g600); text-align: left; border-bottom: 2px solid var(--border); }
.tier-table td { padding: 9px 12px; border-bottom: 1px solid var(--border); }
.cert-badges-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cert-badge-box { border: 1px solid var(--border); border-radius: 4px; padding: 14px; text-align: center; }
.cert-badge-box .label { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--g400); margin-top: 6px; }
.cert-badge-box .value { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); }
.detail-desc h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 500; margin-bottom: 16px; }
.detail-desc p { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--body-text); line-height: 1.75; margin-bottom: 14px; }
.detail-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.spec-row { background: var(--g100); border-radius: 4px; padding: 12px 14px; }
.spec-row .spec-label { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--g400); }
.spec-row .spec-value { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--navy); margin-top: 2px; }
.related-section { padding: 60px 0 80px; background: var(--white); }

/* ── CART DRAWER ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity .25s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 95vw;
  background: var(--white); box-shadow: -4px 0 32px rgba(0,0,0,.2);
  z-index: 1200; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  background: var(--navy); color: var(--white);
}
.cart-drawer-head h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 500; }
.cart-close { background: none; border: none; color: rgba(255,255,255,.6); font-size: 22px; cursor: pointer; line-height: 1; }
.cart-close:hover { color: var(--white); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 12px; background: var(--g100); border-radius: 4px; }
.cart-item-img { width: 52px; height: 52px; border-radius: 4px; object-fit: cover; background: var(--g200); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.cart-item-sub  { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--g600); }
.cart-item-price { font-family: 'Playfair Display', Georgia, serif; font-size: 16px; font-weight: 500; color: var(--navy); white-space: nowrap; }
.cart-item-remove { background: none; border: none; color: var(--g400); font-size: 18px; cursor: pointer; line-height: 1; padding: 4px; }
.cart-item-remove:hover { color: var(--red); }
.cart-empty { text-align: center; padding: 48px 24px; color: var(--g400); }
.cart-empty p { font-family: 'Inter', sans-serif; font-size: 15px; }
.cart-footer { border-top: 1px solid var(--border); padding: 20px 24px; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-label { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--g600); font-weight: 600; }
.cart-total-amt { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 500; color: var(--navy); }
.cart-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.cart-input {
  padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 3px;
  font-family: 'Inter', sans-serif; font-size: 13px; outline: none; transition: border-color .15s;
}
.cart-input:focus { border-color: var(--navy); }
.cart-submit-btn {
  width: 100%; padding: 14px; background: var(--red); color: var(--white);
  border: none; border-radius: 3px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  box-shadow: 0 8px 20px rgba(200,16,46,0.3);
  transition: background .15s, box-shadow .15s;
}
.cart-submit-btn:hover { background: var(--red-dark); box-shadow: 0 12px 28px rgba(200,16,46,0.45); }
.cart-submit-btn:disabled { background: var(--g400); box-shadow: none; cursor: default; }
.cart-success { text-align: center; padding: 32px; color: var(--green); font-weight: 700; font-size: 16px; display: none; }

/* ── FOOTER ── */
.site-footer { background: #060F26; color: rgba(255,255,255,.55); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 52px; }
.footer-brand h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white); font-size: 17px; font-weight: 500; margin-bottom: 12px;
}
.footer-brand p { font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: 'Inter', sans-serif; color: var(--white); font-size: 11px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-gold-line { width: 40px; height: 1px; background: var(--gold); opacity: .4; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-family: 'Inter', sans-serif; font-size: 13px; transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: 'Inter', sans-serif; font-size: 12px;
}
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--white); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── MISC / PROSE ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-32 { margin-top: 32px; }
.success-banner { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; padding: 12px 18px; border-radius: 3px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; display: none; }
.error-banner   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; padding: 12px 18px; border-radius: 3px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; display: none; }
.prose h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 500; color: var(--navy); margin: 40px 0 16px; }
.prose p, .prose li { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--body-text); line-height: 1.75; margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 24px; }
