/* ================================================================
   EditorialGlow — Complete Design System
   Standalone PHP Site · cPanel Ready
   ================================================================ */

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

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --ivory:        #FAF9F6;
  --ivory-100:    #F3F1EC;
  --ivory-200:    #EAE7DF;
  --charcoal:     #1A1A1A;
  --charcoal-60:  #666260;
  --charcoal-30:  #B3B1AF;
  --gold:         #C5A059;
  --gold-light:   #D4B47A;
  --gold-dark:    #A8863D;
  --gold-10:      rgba(197,160,89,.10);
  --gold-20:      rgba(197,160,89,.20);
  --white:        #FFFFFF;
  --gray-100:     #EFEFED;
  --gray-200:     #DDDBD7;
  --gray-400:     #9E9C99;
  --success:      #4A7C59;
  --error:        #C0392B;
  --shadow-xs:    0 1px 3px rgba(26,26,26,.06);
  --shadow-sm:    0 2px 8px rgba(26,26,26,.08);
  --shadow-md:    0 8px 32px rgba(26,26,26,.12);
  --shadow-gold:  0 4px 24px rgba(197,160,89,.30);
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-full: 9999px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:  cubic-bezier(.25,1,.5,1);
  --dur:   0.4s;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
a { color: var(--gold); text-decoration: none; transition: color var(--dur); }
a:hover { color: var(--gold-light); }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: var(--sans); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ivory-100); }
::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: var(--gold-20); color: var(--charcoal); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
@keyframes shimmer  { 0% { background-position:-200% center; } 100% { background-position:200% center; } }
@keyframes pulse    { 0%,100% { opacity:1; } 50% { opacity:.5; } }
@keyframes spin     { to { transform: rotate(360deg); } }

.page-fade { animation: fadeUp .65s var(--ease) both; }
.eg-reveal { opacity:0; transform:translateY(22px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.eg-reveal.visible { opacity:1; transform:none; }
.eg-reveal.d1 { transition-delay: .1s; }
.eg-reveal.d2 { transition-delay: .2s; }
.eg-reveal.d3 { transition-delay: .3s; }
.eg-reveal.d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .page-fade, .eg-reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 clamp(1rem,5vw,3rem); }
.container--narrow { max-width: 860px; }
.section { margin-bottom: 5rem; }

/* ── PROGRESS BAR ───────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 9999; transform-origin: left; transform: scaleX(0);
  transition: transform .1s linear; will-change: transform;
}

/* ── SKIP LINK ───────────────────────────────────────────────── */
.skip-link { position:absolute; top:-100px; left:1rem; background:var(--gold); color:#fff; padding:.5rem 1rem; border-radius:0 0 8px 8px; font-weight:700; z-index:9999; transition:top .2s; }
.skip-link:focus { top:0; color:#fff; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(250,249,246,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ivory-200);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-logo {
  font-family: var(--serif); font-size: clamp(1.35rem,2.5vw,1.75rem);
  font-weight: 700; color: var(--charcoal); letter-spacing: -.02em;
  flex-shrink: 0; line-height: 1;
}
.site-logo span { color: var(--gold); }
.site-logo:hover { color: var(--charcoal); text-decoration: none; }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: clamp(.75rem,2vw,1.75rem); }
.nav-link {
  font-size: .85rem; font-weight: 500; color: var(--charcoal-60);
  letter-spacing: .02em; position: relative; padding-bottom: 2px;
  white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold); text-decoration: none; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link--login {
  padding: .3rem 1rem; border: 1.5px solid var(--gold-20);
  border-radius: var(--r-full); color: var(--gold) !important; font-weight: 700;
}
.nav-link--login::after { display: none !important; }
.nav-link--login:hover { background: var(--gold-10); border-color: var(--gold); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .primary-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(250,249,246,.98); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start;
    padding: 1.5rem clamp(1rem,5vw,3rem);
    gap: 0; border-bottom: 1px solid var(--ivory-200);
    box-shadow: var(--shadow-md);
  }
  .primary-nav.open { display: flex; }
  .nav-link { font-size: 1rem; padding: .75rem 0; width: 100%; border-bottom: 1px solid var(--ivory-100); }
  .nav-link::after { display: none; }
  .nav-link--login { border: 1.5px solid var(--gold-20); padding: .75rem 1rem; margin-top: .75rem; text-align: center; width: 100%; display: block; }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 2.25rem; font-size: .85rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; border: none;
  border-radius: var(--r-full); cursor: pointer; text-decoration: none;
  transition: background var(--dur), color var(--dur), transform var(--dur), box-shadow var(--dur);
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: none; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-light); color: #fff; box-shadow: var(--shadow-gold); }
.btn--dark { background: var(--charcoal); color: var(--ivory); }
.btn--dark:hover { background: #2D2D2D; color: var(--ivory); }
.btn--outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn--outline:hover { background: var(--gold-10); }
.btn--lg { padding: 1.1rem 3rem; font-size: .95rem; }
.btn--sm { padding: .5rem 1.25rem; font-size: .75rem; min-height: 36px; }
@media (max-width: 480px) { .btn { width: 100%; justify-content: center; } }

/* ── BADGE ───────────────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 12px; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: var(--r-full); }
.badge--gold { background: var(--gold); color: #fff; }
.badge--dark { background: var(--charcoal); color: var(--ivory); }
.badge--success { background: var(--success); color: #fff; }

/* ── SECTION HEADING ─────────────────────────────────────────── */
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.section-title { font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.2rem); position: relative; }
.section-title::after { content: ''; display: block; width: 40px; height: 2px; background: var(--gold); margin-top: .5rem; border-radius: 99px; }
.section-link { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.section-link:hover { color: var(--gold-dark); }

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  display: flex; align-items: center; justify-content: center; gap: .875rem;
  padding: .85rem 1.5rem; margin-bottom: 3rem;
  background: linear-gradient(135deg,#1A1A1A,#242420);
  color: #EAE7DF; font-size: .7rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--r-md); position: relative; overflow: hidden;
}
.trust-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,transparent,rgba(197,160,89,.08),transparent);
  background-size: 200% 100%; animation: shimmer 4s linear infinite;
}
.trust-bar__icon { color: var(--gold); position: relative; flex-shrink: 0; }
.trust-bar__text { position: relative; }
.trust-bar__accent { color: var(--gold-light); font-weight: 700; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; min-height: 580px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  margin-bottom: 5rem;
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(26,26,26,.88) 0%,rgba(26,26,26,.4) 100%); }
.hero__content { position: relative; z-index: 2; padding: clamp(2rem,5vw,5rem); max-width: 680px; }
.hero__kicker { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.hero__title { font-family: var(--serif); font-size: clamp(2.4rem,5vw,4rem); font-weight: 700; color: #FAF9F6; margin-bottom: 1.25rem; line-height: 1.1; }
.hero__title span { color: var(--gold); font-style: italic; }
.hero__subtitle { font-size: 1.05rem; color: rgba(250,249,246,.78); margin-bottom: 2.5rem; line-height: 1.7; max-width: 520px; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 640px) { .hero { min-height: 480px; } .hero__ctas .btn { flex: 1; } }

/* ── REVIEW CARDS ────────────────────────────────────────────── */
.cards-grid { display: grid; gap: 1.75rem; }
.cards-grid--2 { grid-template-columns: repeat(2,1fr); }
.cards-grid--3 { grid-template-columns: repeat(3,1fr); }
.cards-grid--4 { grid-template-columns: repeat(4,1fr); }
@media (max-width:1100px) { .cards-grid--4 { grid-template-columns: repeat(3,1fr); } }
@media (max-width:860px)  { .cards-grid--3,.cards-grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width:540px)  { .cards-grid--2,.cards-grid--3,.cards-grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs); overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.card__img-wrap {
  display: block; overflow: hidden; position: relative;
  aspect-ratio: 4/3;
}
.card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__img { transform: scale(1.06); }
.card__badge { position: absolute; top: .875rem; right: .875rem; }
.card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; display: block; }
.card__title { font-family: var(--serif); font-size: 1.15rem; color: var(--charcoal); margin-bottom: .625rem; line-height: 1.3; flex: 1; }
.card__title a { color: var(--charcoal); }
.card__title a:hover { color: var(--gold); text-decoration: none; }
.card__excerpt { font-size: .85rem; color: var(--charcoal-60); line-height: 1.6; margin-bottom: 1.25rem; }
.card__footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; margin-top: auto; }
.card__stars { color: var(--gold); font-size: .9rem; letter-spacing: 1px; }
.card__rating { font-family: var(--serif); font-size: 1rem; font-weight: 700; }
.card__link { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.card__link:hover { color: var(--gold-dark); text-decoration: none; }

/* ── REVIEW PAGE LAYOUT ──────────────────────────────────────── */
.review-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; margin-top: 2.5rem; }
@media (max-width: 960px) { .review-layout { grid-template-columns: 1fr; } }

/* Review Header */
.review-cat { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .875rem; display: inline-block; }
.review-cat::before { content: '— '; color: var(--gold-dark); }
.review-title { font-size: clamp(1.9rem,4vw,3rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; }
.review-subtitle { font-style: italic; font-size: clamp(1rem,1.8vw,1.25rem); color: var(--charcoal-60); margin-bottom: 1.5rem; line-height: 1.6; }
.review-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: var(--charcoal-60); padding: 1rem 0; border-top: 1px solid var(--ivory-200); margin-bottom: 2rem; }
.stars { color: var(--gold); letter-spacing: 2px; }
.rating-num { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.views-count { display: inline-flex; align-items: center; gap: 5px; }

/* Hero Image */
.review-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r-lg); margin-bottom: .75rem; }

/* Gallery Strip */
.gallery-strip { display: flex; gap: .625rem; overflow-x: auto; padding-bottom: .25rem; margin-bottom: 2rem; -webkit-overflow-scrolling: touch; }
.gallery-strip img { width: 76px; height: 76px; object-fit: cover; border-radius: var(--r-sm); cursor: pointer; border: 2px solid transparent; transition: border-color .3s; flex-shrink: 0; }
.gallery-strip img.active, .gallery-strip img:hover { border-color: var(--gold); }

/* Vlog Facade */
.vlog-wrap { margin-bottom: 2.5rem; }
.vlog-wrap h2 { font-size: clamp(1.3rem,2.5vw,1.7rem); margin-bottom: 1rem; }
.vlog-facade { position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; background: var(--charcoal); cursor: pointer; }
.vlog-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.vlog-facade:hover img { transform: scale(1.04); }
.vlog-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(26,26,26,.65),transparent 55%); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; }
.vlog-play { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s, box-shadow .3s; }
.vlog-facade:hover .vlog-play { background: var(--gold-light); transform: scale(1.12); box-shadow: 0 8px 32px rgba(197,160,89,.4); }
.vlog-label { color: #FAF9F6; font-size: .875rem; font-weight: 500; letter-spacing: .04em; text-shadow: 0 1px 4px rgba(0,0,0,.5); }

/* Review Body */
.review-body { font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; }
.review-body p { margin-bottom: 1.25rem; }
.review-body h2 { font-size: clamp(1.3rem,2.5vw,1.7rem); margin: 2.5rem 0 .875rem; }
.review-body h3 { font-size: clamp(1.1rem,2vw,1.4rem); margin: 2rem 0 .75rem; }
.review-body blockquote { border-left: 3px solid var(--gold); padding: 1.25rem 1.5rem; background: var(--gold-10); border-radius: 0 var(--r-md) var(--r-md) 0; font-style: italic; margin: 1.75rem 0; font-size: 1.1rem; color: var(--charcoal-60); }
.review-body ul { margin: 0 0 1.25rem 1.5rem; list-style: disc; }
.review-body li { margin-bottom: .4rem; }

/* Verdict */
.verdict { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (max-width:560px) { .verdict { grid-template-columns: 1fr; } }
.verdict__col { background: var(--white); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-xs); }
.verdict__col--pros { border-top: 3px solid var(--success); }
.verdict__col--cons { border-top: 3px solid var(--charcoal-30); }
.verdict__head { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.25rem; }
.verdict__col--pros .verdict__head { color: var(--success); }
.verdict__col--cons .verdict__head { color: var(--charcoal-60); }
.verdict__list { display: flex; flex-direction: column; gap: .875rem; }
.verdict__item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; line-height: 1.55; }
.icon-pro { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.icon-con { color: var(--charcoal-30); flex-shrink: 0; margin-top: 2px; }

/* Amazon CTA */
.amazon-cta { background: linear-gradient(135deg,#1A1A1A,#242420); border-radius: var(--r-lg); padding: 2.5rem; text-align: center; position: relative; overflow: hidden; margin-bottom: 2rem; }
.amazon-cta::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--gold-dark),var(--gold-light),var(--gold-dark)); }
.amazon-cta::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,transparent,rgba(197,160,89,.05),transparent); background-size:200% 100%; animation:shimmer 5s linear infinite; }
.amazon-cta__note { font-size:.78rem; color:var(--gray-400); margin-bottom:1rem; letter-spacing:.04em; position:relative; z-index:1; }
.amazon-cta__btn { display:inline-flex; align-items:center; gap:.75rem; padding:1rem 2.5rem; background:var(--gold); color:#fff; font-size:.95rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; border-radius:var(--r-md); text-decoration:none; transition:background var(--dur),box-shadow var(--dur),transform var(--dur); margin-bottom:1rem; position:relative; z-index:1; }
.amazon-cta__btn:hover { background:var(--gold-light); color:#fff; box-shadow:var(--shadow-gold); transform:translateY(-3px); text-decoration:none; }
.amazon-cta__disc { font-size:.72rem; color:var(--gray-400); line-height:1.65; position:relative; z-index:1; }
@media (max-width:480px) { .amazon-cta__btn { width:100%; justify-content:center; } }

/* Reaction Buttons */
.reaction-row { display:flex; gap:.625rem; flex-wrap:wrap; }
.reaction-btn { display:inline-flex; align-items:center; gap:6px; padding:8px 16px; border:1.5px solid var(--gray-200); border-radius:var(--r-full); background:var(--white); font-size:.85rem; font-weight:500; cursor:pointer; transition:border-color .3s, color .3s, background .3s; min-height:44px; }
.reaction-btn:hover { border-color:var(--gold); color:var(--gold); }
.reaction-btn.active { background:var(--gold-10); border-color:var(--gold); color:var(--gold); }

/* Share */
.share-bar { border-top:1px solid var(--ivory-200); border-bottom:1px solid var(--ivory-200); padding:1.5rem 0; margin:2.5rem 0; }
.share-label { font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--charcoal-60); margin-bottom:.875rem; }
.share-btns { display:flex; flex-wrap:wrap; gap:.625rem; }
.share-btn { display:inline-flex; align-items:center; gap:.4rem; padding:.4rem 1rem; font-size:.85rem; font-weight:500; border:1.5px solid var(--gray-200); border-radius:var(--r-full); background:var(--white); color:var(--charcoal); cursor:pointer; text-decoration:none; transition:border-color .3s,color .3s; min-height:40px; }
.share-btn:hover { text-decoration:none; }
.share-btn--copy:hover { border-color:var(--gold); color:var(--gold); }
.share-btn--fb:hover   { border-color:#1877F2; color:#1877F2; }
.share-btn--wa:hover   { border-color:#25D366; color:#25D366; }
.share-btn--tw:hover   { border-color:#000; color:#000; }
#copy-msg { font-size:.8rem; color:var(--success); margin-top:.625rem; display:none; }

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--white); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-xs); }
.sidebar-card h3 { font-size: 1.05rem; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--ivory-200); }
.spec-row { display: flex; justify-content: space-between; align-items: center; font-size: .875rem; padding: .5rem 0; border-bottom: 1px solid var(--ivory-100); gap: .5rem; }
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--charcoal-60); flex-shrink: 0; }
.spec-value { font-weight: 600; text-align: right; }
.sidebar-cta { display: block; width: 100%; padding: .875rem; background: var(--gold); color: #fff; font-weight: 700; font-size: .875rem; letter-spacing: .08em; text-transform: uppercase; text-align: center; border-radius: var(--r-md); text-decoration: none; transition: background .3s, transform .3s; margin-bottom: .5rem; }
.sidebar-cta:hover { background: var(--gold-light); color: #fff; text-decoration: none; transform: translateY(-2px); }
.sidebar-disc { font-size: .68rem; color: var(--charcoal-30); text-align: center; }
.related-item { display: flex; gap: .875rem; padding: .875rem 0; border-bottom: 1px solid var(--ivory-100); text-decoration: none; color: inherit; transition: opacity .3s; }
.related-item:last-child { border-bottom: none; }
.related-item:hover { opacity: .75; }
.related-item img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--r-sm); flex-shrink: 0; }
.related-item h4 { font-family: var(--serif); font-size: .95rem; line-height: 1.3; color: var(--charcoal); margin-bottom: .25rem; }
.related-item span { font-size: .72rem; color: var(--charcoal-30); }

/* ── COMMENTS ────────────────────────────────────────────────── */
.comments-section { margin-top: 4rem; }
.comments-title { font-size: clamp(1.3rem,2.5vw,1.7rem); margin-bottom: 2rem; }
.comment { background: var(--white); border-radius: var(--r-md); padding: 1.5rem; box-shadow: var(--shadow-xs); margin-bottom: 1.25rem; }
.comment--nested { margin-left: clamp(1.5rem,5vw,3rem); border-left: 3px solid var(--gold-20); }
.comment__header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-10); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.comment__name { font-weight: 600; font-size: .9rem; display: block; }
.comment__date { font-size: .72rem; color: var(--charcoal-30); }
.comment__text { font-size: .95rem; line-height: 1.65; margin-bottom: 1rem; }
.comment__footer { display: flex; align-items: center; gap: .875rem; }
.comment-reaction { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border: 1.5px solid var(--gray-200); border-radius: var(--r-full); background: none; font-size: .8rem; cursor: pointer; transition: border-color .3s, color .3s; min-height: 36px; }
.comment-reaction:hover { border-color: var(--gold); color: var(--gold); }
.comment-reaction.active { background: var(--gold-10); border-color: var(--gold); color: var(--gold); }
.reply-btn { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal-30); background: none; border: none; cursor: pointer; transition: color .3s; }
.reply-btn:hover { color: var(--gold); }

/* ── NEWSLETTER ──────────────────────────────────────────────── */
.newsletter-section { background: linear-gradient(135deg,#1A1A1A,#1E1C18); padding: 5rem 0; margin: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.newsletter-section::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--gold),transparent); }
.newsletter-inner { max-width: 600px; margin: 0 auto; padding: 0 1.5rem; }
.newsletter-title { font-family: var(--serif); font-size: clamp(1.8rem,4vw,2.6rem); color: var(--ivory); margin-bottom: .875rem; }
.newsletter-desc { font-size: 1rem; color: rgba(250,249,246,.65); margin-bottom: 2.5rem; line-height: 1.7; }
.newsletter-form { display: flex; gap: .625rem; max-width: 480px; margin: 0 auto; }
@media (max-width:500px) { .newsletter-form { flex-direction: column; } }
.newsletter-input { flex: 1; padding: 1rem 1.25rem; font-family: var(--sans); font-size: .95rem; border: 1.5px solid rgba(255,255,255,.15); border-radius: var(--r-full); background: rgba(255,255,255,.08); color: var(--ivory); outline: none; transition: border-color .3s; }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: rgba(250,249,246,.4); }
#nl-success { display:none; margin-top:1.25rem; font-size:.9rem; color:var(--gold-light); font-weight:600; }

/* ── PAGE HEADER ─────────────────────────────────────────────── */
.page-header { padding: 3rem 0 2rem; border-bottom: 1px solid var(--ivory-200); margin-bottom: 3rem; }
.page-header__kicker { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .875rem; display: block; }
.page-header__title { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 700; margin-bottom: .75rem; }
.page-header__desc { font-size: 1rem; color: var(--charcoal-60); max-width: 600px; line-height: 1.7; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--charcoal-60); margin-bottom: 1.75rem; flex-wrap: wrap; padding-top: 1.5rem; }
.breadcrumb a { color: var(--charcoal-60); }
.breadcrumb a:hover { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: var(--charcoal-30); }
.breadcrumb .current { color: var(--charcoal); font-weight: 500; }

/* ── FILTERS ─────────────────────────────────────────────────── */
.filter-row { display: flex; flex-wrap: wrap; gap: .625rem; margin-bottom: 2.5rem; }
.filter-btn { padding: .4rem 1.1rem; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; border: 1.5px solid var(--gray-200); border-radius: var(--r-full); background: var(--white); color: var(--charcoal-60); cursor: pointer; transition: all .3s; min-height: 36px; }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-10); }

/* ── STATIC PAGES ────────────────────────────────────────────── */
.static-content { max-width: 820px; margin: 0 auto; padding: 0 0 5rem; }
.static-content h2 { font-size: 1.5rem; margin: 3rem 0 .875rem; padding-top: .875rem; border-top: 1px solid var(--ivory-200); }
.static-content h3 { font-size: 1.2rem; margin: 2rem 0 .625rem; }
.static-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.static-content ul { margin: 0 0 1.25rem 1.5rem; list-style: disc; }
.static-content ul li { margin-bottom: .4rem; line-height: 1.7; }
.static-content a { color: var(--gold); }
.highlight-box { background: var(--gold-10); border: 1px solid var(--gold-20); border-radius: var(--r-md); padding: 1.5rem 2rem; margin: 2rem 0; }
.highlight-box p { margin-bottom: 0; }

/* ── LOGIN ───────────────────────────────────────────────────── */
.auth-wrap { min-height: calc(100vh - 72px); display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; }
.auth-card { width: 100%; max-width: 460px; background: var(--white); border-radius: var(--r-lg); padding: clamp(2rem,5vw,3rem); box-shadow: var(--shadow-md); }
.auth-logo { font-family: var(--serif); font-size: 1.75rem; font-weight: 700; color: var(--charcoal); display: block; text-align: center; margin-bottom: 1.75rem; }
.auth-logo span { color: var(--gold); }
.auth-logo:hover { text-decoration: none; color: var(--charcoal); }
.auth-title { font-size: 1.5rem; text-align: center; margin-bottom: .5rem; }
.auth-sub { font-size: .9rem; color: var(--charcoal-60); text-align: center; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .5rem; color: var(--charcoal); }
.form-input { width: 100%; padding: .875rem 1.1rem; font-size: .95rem; border: 1.5px solid var(--gray-200); border-radius: var(--r-md); background: var(--ivory); outline: none; transition: border-color .3s, box-shadow .3s; color: var(--charcoal); }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-10); }
.form-input::placeholder { color: var(--charcoal-30); }
.form-submit { width: 100%; padding: 1rem; background: var(--gold); color: #fff; border: none; border-radius: var(--r-md); font-family: var(--sans); font-size: .95rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .3s, transform .3s, box-shadow .3s; margin-top: .5rem; min-height: 52px; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; color: var(--charcoal-30); font-size: .85rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-100); }
.auth-footer-text { text-align: center; font-size: .85rem; color: var(--charcoal-60); margin-top: 1.5rem; }
.auth-footer-text a { color: var(--gold); font-weight: 600; }
.form-msg { font-size: .85rem; margin-top: .5rem; padding: .75rem 1rem; border-radius: var(--r-sm); display: none; }
.form-msg--success { background: rgba(74,124,89,.1); color: var(--success); }
.form-msg--error { background: rgba(192,57,43,.08); color: var(--error); }

/* ── PAGINATION ──────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.page-btn { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--gray-200); border-radius: var(--r-sm); font-size: .85rem; font-weight: 600; color: var(--charcoal-60); background: var(--white); cursor: pointer; text-decoration: none; transition: all .3s; }
.page-btn:hover, .page-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-10); text-decoration: none; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: var(--ivory-200); padding: 5rem 0 2rem; margin-top: 6rem; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 3rem; margin-bottom: 3.5rem; }
@media (max-width:860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-family: var(--serif); font-size: 1.65rem; font-weight: 700; color: var(--ivory); display: block; margin-bottom: .75rem; text-decoration: none; }
.footer-logo span { color: var(--gold); }
.footer-logo:hover { text-decoration: none; color: var(--ivory); }
.footer-tagline { font-size: .85rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .875rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.07); color: var(--gray-400); transition: background .3s, color .3s; }
.footer-social a:hover { background: var(--gold-10); color: var(--gold-light); text-decoration: none; }
.footer-col-title { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-link { font-size: .875rem; color: var(--gray-400); transition: color .3s; }
.footer-link:hover { color: var(--gold-light); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .75rem; color: var(--gray-400); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: .75rem; color: var(--gray-400); transition: color .3s; }
.footer-legal a:hover { color: var(--gold-light); text-decoration: none; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--charcoal-60); }
.divider { border: none; border-top: 1px solid var(--ivory-200); margin: 2.5rem 0; }

/* ── Beauty Pulse Trend Cards ───────────────────────────────── */
.pulse-card { background: var(--white); border-radius: var(--r-md); padding: 1.5rem; box-shadow: var(--shadow-xs); display: flex; gap: 1.25rem; transition: box-shadow var(--dur), transform var(--dur); }
.pulse-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pulse-card img { width: 100px; height: 80px; object-fit: cover; border-radius: var(--r-sm); flex-shrink: 0; }
@media (max-width:480px) { .pulse-card { flex-direction: column; } .pulse-card img { width: 100%; height: 180px; } }
.pulse-card__source { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; display: block; }
.pulse-card__title { font-family: var(--serif); font-size: 1.05rem; line-height: 1.35; margin-bottom: .4rem; color: var(--charcoal); }
.pulse-card__title:hover { color: var(--gold); }
.pulse-card__date { font-size: .72rem; color: var(--charcoal-30); }
