/* ── ReFeel Shared Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #1A1A1A;
  background: #ffffff;
}

a { color: inherit; }
h1, h2, h3 { font-weight: 500; }

/* ── Tokens ── */
:root {
  --teal:        #1D9E75;
  --teal-light:  #E1F5EE;
  --teal-mid:    #9FE1CB;
  --teal-dark:   #0F6E56;
  --teal-deeper: #085041;
  --near-black:  #1A1A1A;
  --mid-grey:    #6B6B6B;
  --light-grey:  #F5F5F3;
  --border:      #E8E8E8;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'DM Sans', sans-serif;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-pill: 40px;
}

/* ── Announcement Bar ── */
.announce {
  background: var(--teal);
  padding: 9px 2rem;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announce a { color: white; text-decoration: underline; text-underline-offset: 2px; }
.adot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.45); }

/* ── Nav ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 0.5px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { font-size: 18px; font-weight: 500; letter-spacing: 0.04em; color: var(--near-black); text-decoration: none; }
.nav-links { display: flex; gap: 1.75rem; }
.nav-links a { font-size: 13px; color: var(--mid-grey); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--near-black); }
.nav-links a.active { color: var(--near-black); font-weight: 500; border-bottom: 1.5px solid var(--near-black); padding-bottom: 2px; }

/* ── Buttons ── */
.btn { display: inline-block; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; padding: 13px 28px; border-radius: var(--radius-pill); text-align: center; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.15s; }
.btn:hover { opacity: 0.88; }
.btn-main  { background: var(--teal); color: white; }
.btn-ghost { background: transparent; color: var(--near-black); border: 0.5px solid #ccc; }
.btn-white { background: white; color: var(--teal-dark); }
.btn-outline-white { background: transparent; color: white; border: 0.5px solid rgba(255,255,255,0.4); }
.btn-full  { display: block; width: 100%; }

/* ── Utilities ── */
.eyebrow { font-size: 11px; letter-spacing: 0.12em; color: var(--teal); font-weight: 500; text-transform: uppercase; margin-bottom: 0.75rem; }
.serif { font-family: var(--serif); }
.divider { height: 0.5px; background: var(--border); margin: 0 2rem; }
.section { padding: 3rem 2rem; }
.teal-bg { background: var(--teal); }
.light-bg { background: var(--light-grey); }

/* ── Stars ── */
.stars { color: var(--teal); letter-spacing: 1px; }

/* ── Review Cards ── */
.rev-card { background: white; border: 0.5px solid var(--border); border-radius: var(--radius-md); padding: 1.1rem; display: flex; flex-direction: column; }
.rev-stars { color: var(--teal); font-size: 12px; letter-spacing: 1px; margin-bottom: 8px; }
.rev-text { font-size: 12px; color: var(--near-black); font-family: var(--serif); font-style: italic; line-height: 1.6; margin-bottom: 10px; flex: 1; }
.rev-author { display: flex; align-items: center; gap: 6px; padding-top: 8px; border-top: 0.5px solid var(--border); }
.rev-av { width: 24px; height: 24px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 500; color: var(--teal-dark); flex-shrink: 0; }
.rev-name { font-size: 12px; font-weight: 500; color: var(--near-black); }
.rev-meta { font-size: 10px; color: var(--mid-grey); }
.rev-verified { margin-left: auto; display: flex; align-items: center; gap: 3px; font-size: 10px; color: var(--teal); }

/* ── Cert Pills ── */
.cert-strip { padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.cpill { font-size: 10px; color: var(--mid-grey); border: 0.5px solid var(--border); border-radius: 20px; padding: 4px 12px; }

/* ── Ingredient rows ── */
.ing-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.75rem; }
.ing-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.ing-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.ing-name { color: var(--near-black); font-weight: 500; }
.ing-role { color: var(--mid-grey); }

/* ── Reassurance row ── */
.reassure { display: flex; align-items: center; justify-content: center; gap: 1.5rem; font-size: 11px; color: var(--mid-grey); flex-wrap: wrap; }
.reassure span { display: flex; align-items: center; gap: 5px; }

/* ── Footer ── */
footer {
  padding: 2rem;
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mid-grey);
  flex-wrap: wrap;
  gap: 1rem;
}
footer a { color: var(--mid-grey); text-decoration: none; }
footer a:hover { color: var(--near-black); }
.footer-links { display: flex; gap: 1.5rem; }

@media (max-width: 640px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 11px; }
}
