/** Shopify CDN: Minification failed

Line 46:0 All "@import" rules must come first

**/
/* ══════════════════════════════════════════════════
   GHK·CU SERUM — SHOPIFY ASSET CSS
   All classes prefixed .ghk- to avoid theme conflicts
   File: assets/ghkcu-serum.css
══════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
.ghk-hero, .ghk-section, .ghk-proof-bar, .ghk-angles,
.ghk-final-cta, .ghk-disclaimer, .ghk-bar,
.ghk-benefits, .ghk-science, .ghk-how, .ghk-reviews,
.ghk-ingredients, .ghk-faq, .ghk-timeline {

  --ghk-gold: #c9a96e;
  --ghk-gold-lt: #f0d080;
  --ghk-gold-pale: #e8d5b7;
  --ghk-bg: #06060f;
  --ghk-d1: #0a0a18;
  --ghk-d2: #0e0e22;
  --ghk-d3: #12122a;
  --ghk-d4: #1a1a35;
  --ghk-d5: #22223f;
  --ghk-txt: #f0ece4;
  --ghk-txt2: #a89070;
  --ghk-txt3: #6b6480;
  --ghk-border: rgba(201,169,110,.15);
  --ghk-border2: rgba(201,169,110,.3);
  --ghk-serif: 'Cormorant Garamond', Georgia, serif;
  --ghk-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --ghk-ease: cubic-bezier(.4,0,.2,1);
  box-sizing: border-box;
}

*, .ghk-hero *, .ghk-section *, .ghk-proof-bar *,
.ghk-angles *, .ghk-final-cta *, .ghk-bar *,
.ghk-benefits *, .ghk-science *, .ghk-how *, .ghk-reviews *,
.ghk-ingredients *, .ghk-faq *, .ghk-timeline * {
  box-sizing: border-box;
}

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

/* ── SHARED LAYOUT ── */
.ghk-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ghk-section {
  padding-left: 0;
  padding-right: 0;
  background: var(--ghk-bg);
}

.ghk-section-hd {
  text-align: center;
  margin-bottom: 60px;
}

.ghk-eyebrow {
  display: inline-block;
  font-family: var(--ghk-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ghk-gold);
  margin-bottom: 14px;
}

.ghk-section-title {
  font-family: var(--ghk-serif);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 400;
  color: var(--ghk-txt);
  line-height: 1.15;
  margin: 0 0 14px;
}

.ghk-section-sub {
  font-family: var(--ghk-sans);
  font-size: .95rem;
  color: var(--ghk-txt2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.ghk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--ghk-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .4px;
  cursor: pointer;
  border: none;
  transition: transform .25s var(--ghk-ease), box-shadow .25s var(--ghk-ease);
  white-space: nowrap;
  text-decoration: none;
}

.ghk-btn--primary {
  background: linear-gradient(135deg, var(--ghk-gold), var(--ghk-gold-lt));
  color: #06060f;
  box-shadow: 0 4px 20px rgba(201,169,110,.3);
}
.ghk-btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,.45);
}
.ghk-btn--primary:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.ghk-btn--lg {
  padding: 17px 40px;
  font-size: 1rem;
}

/* ── ANNOUNCEMENT BAR ── */
.ghk-bar {
  background: linear-gradient(90deg, var(--ghk-d3), var(--ghk-d4), var(--ghk-d3));
  border-bottom: 1px solid var(--ghk-border);
  text-align: center;
  padding: 10px 24px;
}
.ghk-bar p {
  font-family: var(--ghk-sans);
  font-size: .76rem;
  color: var(--ghk-gold-pale);
  letter-spacing: .4px;
  margin: 0;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.ghk-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-left: 24px;
  padding-right: 24px;
  background: var(--ghk-d1);
}

.ghk-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 20% 50%, rgba(201,169,110,.06) 0%, transparent 70%),
    radial-gradient(ellipse 45% 70% at 80% 30%, rgba(100,80,200,.04) 0%, transparent 70%);
  pointer-events: none;
}

.ghk-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ghk-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--ghk-gold);
  opacity: 0;
  animation: ghkFloat linear infinite;
}

@keyframes ghkFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: .35; }
  90%  { opacity: .08; }
  100% { transform: translateY(-80px) scale(1); opacity: 0; }
}

.ghk-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── GALLERY ── */
.ghk-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ghk-gallery-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.14) 0%, transparent 70%);
  pointer-events: none;
  animation: ghkPulse 4s ease-in-out infinite;
}

@keyframes ghkPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: .8; }
  50%       { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
}

.ghk-gallery-main {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  background: var(--ghk-d2);
  border: 1px solid var(--ghk-border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ghk-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0;
  transition: opacity .4s var(--ghk-ease);
}
.ghk-img--active { opacity: 1; }

/* Fallback bottle */
.ghk-bottle-wrap {
  position: relative;
  padding: 32px;
  animation: ghkFloatBottle 6s ease-in-out infinite;
}
@keyframes ghkFloatBottle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.ghk-bottle-svg { width: 180px; height: auto; filter: drop-shadow(0 30px 60px rgba(201,169,110,.2)); }
.ghk-bottle-shadow {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(201,169,110,.22) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
}

/* Thumbnails */
.ghk-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ghk-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--ghk-border);
  cursor: pointer;
  padding: 0;
  background: var(--ghk-d2);
  transition: border-color .2s var(--ghk-ease);
  flex-shrink: 0;
}
.ghk-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ghk-thumb--active, .ghk-thumb:hover { border-color: var(--ghk-gold); }

/* Floating badges */
.ghk-badge {
  position: absolute;
  background: rgba(14,14,34,.92);
  border: 1px solid var(--ghk-border2);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  animation: ghkBadgeFloat ease-in-out infinite;
  z-index: 2;
}
.ghk-badge--tl { top: 12%; left: -8%; animation-duration: 5s; }
.ghk-badge--tr { top: 18%; right: -8%; animation-duration: 6s; animation-delay: 1s; }
.ghk-badge--bl { bottom: 12%; right: -8%; left: auto; animation-duration: 5.5s; animation-delay: .5s; }

@keyframes ghkBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.ghk-badge__num, .ghk-badge__ico {
  font-family: var(--ghk-serif);
  font-size: 1.3rem;
  color: var(--ghk-gold);
  line-height: 1;
}
.ghk-badge__ico { font-size: 1.1rem; }
.ghk-badge__lbl {
  font-family: var(--ghk-sans);
  font-size: .62rem;
  color: var(--ghk-txt2);
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ── PURCHASE PANEL ── */
.ghk-purchase {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.ghk-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.ghk-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--ghk-border2);
  font-family: var(--ghk-sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .4px;
  color: var(--ghk-gold);
  background: rgba(201,169,110,.06);
}

.ghk-product-title {
  font-family: var(--ghk-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: var(--ghk-txt);
  line-height: 1.1;
  margin: 0;
}

.ghk-product-desc {
  color: #ffffff;
  font-family: var(--ghk-sans);
  font-size: .95rem;
  line-height: 1.7;
}
.ghk-product-desc p,
.ghk-product-desc li,
.ghk-product-desc span {
  color: #ffffff;
}

.ghk-product-tagline {
  font-family: var(--ghk-sans);
  font-size: .95rem;
  color: var(--ghk-txt2);
  line-height: 1.7;
  max-width: 440px;
  margin: 0;
}

.ghk-rating { display: flex; align-items: center; gap: 10px; }
.ghk-stars { color: var(--ghk-gold); font-size: 1rem; letter-spacing: 2px; }
.ghk-stars--sm { font-size: .82rem; letter-spacing: 1.5px; }
.ghk-rating-txt { font-family: var(--ghk-sans); font-size: .8rem; color: var(--ghk-txt3); }

/* Price — hidden, Kaching Bundles shows price instead */
.ghk-price { display: none !important; }
.ghk-price__current {
  font-family: var(--ghk-serif);
  font-size: 2rem;
  color: var(--ghk-txt);
  font-weight: 400;
}
.ghk-price__compare {
  font-family: var(--ghk-sans);
  font-size: 1rem;
  color: var(--ghk-txt3);
  text-decoration: line-through;
}
.ghk-price__save {
  font-family: var(--ghk-sans);
  font-size: .75rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.2);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Variant / option selector */
.ghk-option-group { display: flex; flex-direction: column; gap: 10px; }
.ghk-option-label {
  font-family: var(--ghk-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ghk-txt2);
}
.ghk-option-selected { color: var(--ghk-gold); font-weight: 600; }
.ghk-option-btns { display: flex; gap: 8px; flex-wrap: wrap; }

.ghk-opt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid var(--ghk-border);
  background: transparent;
  color: var(--ghk-txt2);
  font-family: var(--ghk-sans);
  font-size: .86rem;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.ghk-opt-btn--active,
.ghk-opt-btn:hover:not(:disabled) {
  border-color: var(--ghk-gold);
  color: var(--ghk-gold);
  background: rgba(201,169,110,.06);
}
.ghk-opt-btn:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.ghk-opt-badge {
  font-size: .62rem;
  background: var(--ghk-gold);
  color: #06060f;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

/* Quantity */
.ghk-qty-row { display: flex; flex-direction: column; gap: 10px; }
.ghk-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ghk-border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.ghk-qty__btn {
  width: 40px;
  height: 40px;
  background: var(--ghk-d2);
  border: none;
  color: var(--ghk-txt);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s;
  font-family: var(--ghk-sans);
}
.ghk-qty__btn:hover { background: var(--ghk-d4); }
.ghk-qty__input {
  width: 52px;
  height: 40px;
  background: var(--ghk-d2);
  border: none;
  border-left: 1px solid var(--ghk-border);
  border-right: 1px solid var(--ghk-border);
  color: var(--ghk-txt);
  font-family: var(--ghk-sans);
  font-size: .9rem;
  text-align: center;
  -moz-appearance: textfield;
}
.ghk-qty__input::-webkit-outer-spin-button,
.ghk-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Form / CTA */
.ghk-form { margin: 0; }
.ghk-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* Shopify dynamic checkout button override */
.ghk-form .shopify-payment-button { margin-top: 0; }
.ghk-form .shopify-payment-button__button {
  border-radius: 8px !important;
  font-family: var(--ghk-sans) !important;
  font-size: .9rem !important;
  font-weight: 600 !important;
  min-height: 48px !important;
}

/* Trust signals */
.ghk-trust {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--ghk-border);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ghk-trust__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ghk-sans);
  font-size: .73rem;
  color: var(--ghk-txt3);
}
.ghk-trust__item svg { color: var(--ghk-gold); flex-shrink: 0; }

/* ══════════════════════════════════════════
   SOCIAL PROOF BAR
══════════════════════════════════════════ */
.ghk-proof-bar {
  background: var(--ghk-d2);
  border-top: 1px solid var(--ghk-border);
  border-bottom: 1px solid var(--ghk-border);
  padding-left: 24px;
  padding-right: 24px;
}
.ghk-proof-bar__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.ghk-proof-item { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }
.ghk-proof-num { font-family: var(--ghk-serif); font-size: 1.9rem; color: var(--ghk-gold); font-weight: 400; line-height: 1; }
.ghk-proof-lbl { font-family: var(--ghk-sans); font-size: .74rem; color: var(--ghk-txt3); }
.ghk-proof-div { width: 1px; height: 36px; background: var(--ghk-border); }

/* ══════════════════════════════════════════
   ANGLES
══════════════════════════════════════════ */
.ghk-angles { background: var(--ghk-bg); }
.ghk-angles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ghk-angle-card {
  position: relative;
  background: var(--ghk-d2);
  border: 1px solid var(--ghk-border);
  border-radius: 18px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ghk-ease), border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.ghk-angle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,.04) 0%, transparent 60%);
  pointer-events: none;
}
.ghk-angle-card:hover {
  transform: translateY(-4px);
  border-color: var(--ghk-border2);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.ghk-angle-card--featured {
  border-color: var(--ghk-gold);
  background: linear-gradient(135deg, rgba(201,169,110,.08) 0%, var(--ghk-d2) 100%);
}
.ghk-angle-top-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--ghk-sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #06060f;
  background: linear-gradient(135deg, var(--ghk-gold), var(--ghk-gold-lt));
  padding: 3px 9px;
  border-radius: 100px;
}
.ghk-angle-top-badge--trending {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
}
.ghk-angle-icon { width: 56px; height: 56px; }
.ghk-angle-icon svg { width: 100%; height: 100%; }
.ghk-angle-title {
  font-family: var(--ghk-serif);
  font-size: 1.25rem;
  color: var(--ghk-txt);
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}
.ghk-angle-desc { font-family: var(--ghk-sans); font-size: .82rem; color: var(--ghk-txt2); line-height: 1.65; flex: 1; margin: 0; }
.ghk-angle-result { display: flex; flex-direction: column; gap: 2px; padding-top: 12px; border-top: 1px solid var(--ghk-border); }
.ghk-result-lbl { font-family: var(--ghk-sans); font-size: .67rem; color: var(--ghk-txt3); text-transform: uppercase; letter-spacing: .5px; }
.ghk-result-val { font-family: var(--ghk-serif); font-size: 1.15rem; color: var(--ghk-gold); }

/* ══════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════ */
.ghk-benefits { background: var(--ghk-d1); }
.ghk-benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.ghk-benefits-left {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ghk-benefits-left .ghk-section-title { text-align: left; }
.ghk-benefits-left .ghk-section-sub { text-align: left; margin: 0; }

.ghk-molecule {
  padding: 22px;
  background: var(--ghk-d2);
  border: 1px solid var(--ghk-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ghk-molecule p { font-family: var(--ghk-sans); font-size: .8rem; color: var(--ghk-txt2); line-height: 1.6; margin: 0; }
.ghk-mol-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto;
}
.ghk-mol-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ghk-gold), var(--ghk-gold-lt));
  box-shadow: 0 0 18px rgba(201,169,110,.5);
}
.ghk-mol-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--ghk-sans);
  font-size: .5rem;
  font-weight: 700;
  color: #06060f;
  letter-spacing: .5px;
}
.ghk-mol-orbit {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.2);
  animation: ghkOrbit linear infinite;
}
.ghk-mol-orbit--1 { width: 74px; height: 74px; margin: -37px; animation-duration: 8s; }
.ghk-mol-orbit--2 { width: 104px; height: 104px; margin: -52px; animation-duration: 14s; animation-direction: reverse; }
@keyframes ghkOrbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ghk-mol-atom {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ghk-gold);
  top: 50%; left: 50%;
  margin: -3.5px;
}

.ghk-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.ghk-benefit {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-radius: 10px;
  background: var(--ghk-d2);
  border: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
.ghk-benefit:hover { background: var(--ghk-d3); border-color: var(--ghk-border); }
.ghk-benefit__icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(201,169,110,.08);
  border: 1px solid var(--ghk-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ghk-gold);
}
.ghk-benefit__body h4 {
  font-family: var(--ghk-sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ghk-txt);
  margin: 0 0 4px;
  line-height: 1.3;
}
.ghk-benefit__body p { font-family: var(--ghk-sans); font-size: .75rem; color: var(--ghk-txt3); line-height: 1.5; margin: 0; }

/* ══════════════════════════════════════════
   SCIENCE
══════════════════════════════════════════ */
.ghk-science { background: var(--ghk-bg); }
.ghk-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.ghk-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 18px;
  background: var(--ghk-d2);
  border: 1px solid var(--ghk-border);
  border-radius: 18px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.ghk-stat-card:hover { transform: translateY(-4px); border-color: var(--ghk-border2); }
.ghk-stat-ring-wrap { position: relative; width: 96px; height: 96px; }
.ghk-stat-ring { width: 100%; height: 100%; }
.ghk-stat-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--ghk-serif);
  font-size: 1.4rem;
  color: var(--ghk-gold);
  font-weight: 400;
}
.ghk-stat-lbl { font-family: var(--ghk-sans); font-size: .78rem; color: var(--ghk-txt2); line-height: 1.5; }

.ghk-papers {
  background: var(--ghk-d2);
  border: 1px solid var(--ghk-border);
  border-radius: 18px;
  padding: 36px;
}
.ghk-papers-title { font-family: var(--ghk-serif); font-size: 1.35rem; color: var(--ghk-txt); font-weight: 400; margin: 0 0 22px; }
.ghk-papers-list { display: flex; flex-direction: column; gap: 18px; }
.ghk-paper {
  padding: 18px;
  background: var(--ghk-d3);
  border-radius: 10px;
  border-left: 3px solid var(--ghk-gold);
}
.ghk-paper-journal { display: block; font-family: var(--ghk-sans); font-size: .68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ghk-gold); margin-bottom: 5px; }
.ghk-paper p { font-family: var(--ghk-sans); font-size: .85rem; color: var(--ghk-txt2); line-height: 1.5; font-style: italic; margin: 0; }

/* ══════════════════════════════════════════
   HOW TO USE
══════════════════════════════════════════ */
.ghk-how { background: var(--ghk-d1); }
.ghk-how-col { min-width: 0; }
.ghk-how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 44px;
  align-items: start;
}
.ghk-how-cat { font-family: var(--ghk-serif); font-size: 1.4rem; color: var(--ghk-gold); font-weight: 400; margin: 0 0 28px; }
.ghk-how-divider { width: 1px; background: var(--ghk-border); align-self: stretch; margin-top: 60px; }
.ghk-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.ghk-step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ghk-border);
}
.ghk-step:last-child { border-bottom: none; }
.ghk-step-n {
  font-family: var(--ghk-serif);
  font-size: 1.8rem;
  color: rgba(201,169,110,.22);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.ghk-step h4 { font-family: var(--ghk-sans); font-size: .9rem; font-weight: 600; color: var(--ghk-txt); margin: 0 0 5px; }
.ghk-step p { font-family: var(--ghk-sans); font-size: .8rem; color: var(--ghk-txt2); line-height: 1.6; margin: 0; }
.ghk-how-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 44px;
  padding: 18px 22px;
  background: rgba(201,169,110,.05);
  border: 1px solid var(--ghk-border2);
  border-radius: 10px;
}
.ghk-how-note svg { color: var(--ghk-gold); flex-shrink: 0; margin-top: 2px; }
.ghk-how-note p { font-family: var(--ghk-sans); font-size: .82rem; color: var(--ghk-txt2); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════
   TIMELINE
══════════════════════════════════════════ */
.ghk-timeline { background: var(--ghk-bg); }
.ghk-timeline-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.ghk-tl-item { display: grid; grid-template-columns: 76px 1fr; gap: 18px; align-items: center; }
.ghk-tl-week { font-family: var(--ghk-sans); font-size: .72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ghk-gold); text-align: right; }
.ghk-tl-bar { height: 5px; background: var(--ghk-d3); border-radius: 100px; overflow: hidden; }
.ghk-tl-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--ghk-gold), var(--ghk-gold-lt)); border-radius: 100px; transition: width 1.5s cubic-bezier(.4,0,.2,1); }
.ghk-tl-desc { grid-column: 2; font-family: var(--ghk-sans); font-size: .78rem; color: var(--ghk-txt3); margin-top: -8px; }

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.ghk-reviews { background: var(--ghk-d1); }
.ghk-overall-rating { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.ghk-overall-score { font-family: var(--ghk-serif); font-size: 1.05rem; color: var(--ghk-txt); }
.ghk-overall-count { font-family: var(--ghk-sans); font-size: .76rem; color: var(--ghk-txt3); }
.ghk-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ghk-review {
  background: var(--ghk-d2);
  border: 1px solid var(--ghk-border);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s, border-color .3s;
}
.ghk-review:hover { transform: translateY(-2px); border-color: var(--ghk-border2); }
.ghk-review--featured {
  grid-column: span 2;
  border-color: rgba(201,169,110,.28);
  background: linear-gradient(135deg, rgba(201,169,110,.05) 0%, var(--ghk-d2) 100%);
}
.ghk-review-hd { display: flex; align-items: center; gap: 10px; }
.ghk-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ghk-d4), var(--ghk-d5));
  border: 1px solid var(--ghk-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ghk-sans);
  font-size: .72rem;
  font-weight: 600;
  color: var(--ghk-gold);
  flex-shrink: 0;
}
.ghk-reviewer-info { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.ghk-reviewer-name { font-family: var(--ghk-sans); font-size: .86rem; font-weight: 600; color: var(--ghk-txt); }
.ghk-reviewer-tag { font-family: var(--ghk-sans); font-size: .7rem; color: var(--ghk-txt3); }
.ghk-review-body { font-family: var(--ghk-sans); font-size: .84rem; color: var(--ghk-txt2); line-height: 1.7; font-style: italic; flex: 1; margin: 0; }
.ghk-review-meta { display: flex; gap: 7px; font-family: var(--ghk-sans); font-size: .7rem; color: var(--ghk-txt3); padding-top: 10px; border-top: 1px solid var(--ghk-border); }

/* ══════════════════════════════════════════
   INGREDIENTS
══════════════════════════════════════════ */
.ghk-ingredients { background: var(--ghk-bg); }
.ghk-ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 44px; }
.ghk-ing-card {
  position: relative;
  background: var(--ghk-d2);
  border: 1px solid var(--ghk-border);
  border-radius: 12px;
  padding: 22px;
  transition: border-color .25s;
}
.ghk-ing-card:hover { border-color: var(--ghk-border2); }
.ghk-ing-card--hero { border-color: var(--ghk-gold); background: linear-gradient(135deg, rgba(201,169,110,.08) 0%, var(--ghk-d2) 100%); }
.ghk-ing-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--ghk-sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #06060f;
  background: linear-gradient(135deg, var(--ghk-gold), var(--ghk-gold-lt));
  padding: 2px 7px;
  border-radius: 4px;
}
.ghk-ing-card h4 { font-family: var(--ghk-sans); font-size: .9rem; font-weight: 600; color: var(--ghk-txt); margin: 0 0 3px; }
.ghk-ing-conc { font-family: var(--ghk-sans); font-size: .7rem; color: var(--ghk-gold); font-weight: 500; letter-spacing: .4px; margin: 0 0 9px; display: block; }
.ghk-ing-desc { font-family: var(--ghk-sans); font-size: .78rem; color: var(--ghk-txt2); line-height: 1.6; margin: 0; }
.ghk-free-from { text-align: center; }
.ghk-free-from-title { font-family: var(--ghk-serif); font-size: 1.15rem; color: var(--ghk-txt2); font-weight: 400; margin: 0 0 14px; }
.ghk-free-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.ghk-free-tags span {
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid var(--ghk-border);
  font-family: var(--ghk-sans);
  font-size: .72rem;
  color: var(--ghk-txt3);
  background: var(--ghk-d2);
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.ghk-faq { background: var(--ghk-d1); }
.ghk-faq-list { max-width: 740px; margin: 0 auto; }
.ghk-faq-item { border-bottom: 1px solid var(--ghk-border); }
.ghk-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ghk-sans);
  font-size: .92rem;
  font-weight: 500;
  color: var(--ghk-txt);
  transition: color .2s;
}
.ghk-faq-q:hover { color: var(--ghk-gold); }
.ghk-faq-arrow { flex-shrink: 0; color: var(--ghk-txt3); transition: transform .3s var(--ghk-ease), color .2s; }
.ghk-faq-item--open .ghk-faq-arrow { transform: rotate(180deg); color: var(--ghk-gold); }
.ghk-faq-a {
  /* display controlled by JS inline style */
}
.ghk-faq-a p { font-family: var(--ghk-sans); font-size: .86rem; color: var(--ghk-txt2); line-height: 1.7; padding-bottom: 20px; margin: 0; }

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.ghk-final-cta {
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
  overflow: hidden;
  background: var(--ghk-bg);
}
.ghk-final-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(201,169,110,.07) 0%, transparent 70%);
  pointer-events: none;
}
.ghk-final-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.ghk-final-title { font-family: var(--ghk-serif); font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--ghk-txt); line-height: 1.1; margin: 0; }
.ghk-final-sub { font-family: var(--ghk-sans); font-size: .95rem; color: var(--ghk-txt2); line-height: 1.7; margin: 0; }
.ghk-final-price { display: flex; align-items: baseline; gap: 10px; }
.ghk-final-note { font-family: var(--ghk-sans); font-size: .76rem; color: var(--ghk-txt3); margin: 0; }
.ghk-final-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.ghk-final-badges li { display: flex; align-items: center; gap: 5px; font-family: var(--ghk-sans); font-size: .75rem; color: var(--ghk-txt3); }
.ghk-final-badges li svg { color: var(--ghk-gold); }

/* ── DISCLAIMER ── */
.ghk-disclaimer {
  background: var(--ghk-d2);
  border-top: 1px solid var(--ghk-border);
  padding: 18px 24px;
  text-align: center;
}
.ghk-disclaimer p { font-family: var(--ghk-sans); font-size: .68rem; color: var(--ghk-txt3); line-height: 1.6; max-width: 760px; margin: 0 auto; }



/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.ghk-anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ghk-ease), transform .6s var(--ghk-ease);
}
.ghk-anim--in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ghk-hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .ghk-gallery { max-width: 480px; margin: 0 auto; }
  .ghk-purchase { align-items: center; text-align: center; }
  .ghk-form { width: 100%; }
  .ghk-pills, .ghk-rating, .ghk-price, .ghk-trust, .ghk-cta-row { justify-content: center; }
  .ghk-product-tagline { margin: 0 auto; }
  .ghk-angles-grid { grid-template-columns: repeat(2, 1fr); }
  .ghk-benefits-layout { grid-template-columns: 1fr; }
  .ghk-benefits-left { position: static; }
  .ghk-benefits-left .ghk-section-title,
  .ghk-benefits-left .ghk-section-sub { text-align: center; }
  .ghk-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ghk-how-grid { grid-template-columns: 1fr; }
  .ghk-how-divider { display: none; }
  .ghk-reviews-grid { grid-template-columns: 1fr; }
  .ghk-review--featured { grid-column: span 1; }
  .ghk-ing-grid { grid-template-columns: repeat(2, 1fr); }
  .ghk-badge--tl { top: -12px; left: -12px; }
  .ghk-badge--tr { top: -12px; right: -12px; }
  .ghk-badge--bl { bottom: -12px; right: -12px; left: auto; }
}

@media (max-width: 480px) {
  .ghk-badge {
    padding: 7px 10px;
    border-radius: 8px;
  }
  .ghk-badge__num, .ghk-badge__ico { font-size: 1rem; }
  .ghk-badge__lbl { font-size: .55rem; }
  .ghk-badge--tl { top: -10px; left: -10px; }
  .ghk-badge--tr { top: -10px; right: -10px; }
  .ghk-badge--bl { bottom: -10px; right: -10px; left: auto; }
}

@media (max-width: 640px) {
  .ghk-hero { padding-left: 16px; padding-right: 16px; }
  .ghk-angles-grid { grid-template-columns: 1fr; }
  .ghk-benefits-grid { grid-template-columns: 1fr; }
  .ghk-stats-grid { grid-template-columns: 1fr 1fr; }
  .ghk-ing-grid { grid-template-columns: 1fr; }
  .ghk-proof-div { display: none; }
  .ghk-cta-row { flex-direction: column; }
  .ghk-btn { width: 100%; justify-content: center; }
  .ghk-tl-item { grid-template-columns: 64px 1fr; }
  .ghk-toast { bottom: 16px; right: 16px; left: 16px; }
}
