
/* ─── Bliss Help Centre Theme ────────────────────────────────────────────────
   Brand: Bliss (weight management)
   Version: 1.0.0
   ─────────────────────────────────────────────────────────────────────────── */
 
/* ─── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');
 
/* ─── Brand Tokens ─────────────────────────────────────────────────────────── */
:root {
  --teal:       #015D62;
  --mint:       #ADE8CA;
  --sky:        #BFE5E8;
  --purple:     #3C2F7F;
  --plum:       #7E4F92;
  --ivory:      #F4EFEC;
  --white:      #ffffff;
  --text:       #1a1a2e;
  --text-mid:   #3C2F7F;
  --text-light: #6b6b8a;
  --border:     #e8e2f0;
  --shadow:     rgba(60, 47, 127, 0.08);
  --radius-sm:  10px;
  --radius-md:  14px;
  --radius-lg:  20px;
}
 
/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--white);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
 
/* ─── Nav ───────────────────────────────────────────────────────────────────── */
.bliss-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--border);
}
 
.bliss-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--purple);
  letter-spacing: -0.5px;
  text-decoration: none;
  line-height: 1;
}
 
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
 
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
 
.nav-links a:hover { color: var(--purple); }
 
.nav-links .nav-btn {
  background: var(--purple);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
 
.nav-links .nav-btn:hover {
  background: var(--plum);
  color: var(--white);
  transform: translateY(-1px);
}
 
/* ─── Emergency Banner ─────────────────────────────────────────────────────── */
.emergency-banner {
  display: none;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-bottom: 1px solid #f59e0b;
}
 
.emergency-banner[data-active="true"] {
  display: block;
}
 
.emergency-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.emergency-icon {
  font-size: 16px;
  flex-shrink: 0;
}
 
.emergency-text {
  font-size: 13px;
  font-weight: 500;
  color: #92400e;
  flex: 1;
  line-height: 1.4;
}
 
.emergency-text a {
  color: #92400e;
  font-weight: 600;
  text-decoration: underline;
}
 
.emergency-close {
  background: none;
  border: none;
  font-size: 16px;
  color: #92400e;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
 
.emergency-close:hover {
  opacity: 1;
}
 
/* ─── Reviewed By Byline (with headshot) ──────────────────────────────────── */
.reviewed-by {
  margin-top: 32px;
  margin-bottom: 8px;
  padding: 16px 18px;
  background: rgba(173, 232, 202, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
 
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--ivory, #F4EFEC);
}
 
.reviewer-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
 
.reviewer-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.85;
}
 
.reviewer-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--bliss-text, #1a1a2e);
  line-height: 1.2;
}
 
.reviewer-role {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
}
 
/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.bliss-hero {
  background: linear-gradient(135deg, var(--purple), var(--plum), var(--purple), #2a2066);
  background-size: 400% 400%;
  animation: heroGradient 12s ease infinite;
  padding: 72px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
 
@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 
.bliss-hero--small {
  padding: 48px 48px 56px;
}
 
.bliss-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(173,232,202,0.18) 0%, transparent 70%);
  pointer-events: none;
}
 
.bliss-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,79,146,0.3) 0%, transparent 70%);
  pointer-events: none;
}
 
.hero-label {
  display: inline-block;
  background: rgba(173,232,202,0.2);
  color: var(--mint);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(173,232,202,0.3);
  position: relative;
  z-index: 1;
}
 
.bliss-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
 
.bliss-hero h1 em {
  font-style: italic;
  color: var(--mint);
}
 
.bliss-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
 
/* ─── Search ────────────────────────────────────────────────────────────────── */
.search-wrap {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
 
.search-wrap .search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}
 
/* Zendesk search field override */
.search-wrap form { position: relative; }
 
.search-wrap input[type="search"],
.search-wrap .search-field input {
  width: 100%;
  padding: 16px 56px 16px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
 
.search-wrap input[type="search"]::placeholder,
.search-wrap .search-field input::placeholder {
  color: rgba(255,255,255,0.5);
}
 
.search-wrap input[type="search"]:focus,
.search-wrap .search-field input:focus {
  border-color: var(--mint);
  background: rgba(255,255,255,0.16);
}
 
.search-wrap button[type="submit"] { display: none; }
 
/* ─── Category Bar ──────────────────────────────────────────────────────────── */
.bliss-category-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  justify-content: center;
  scrollbar-width: none;
  scroll-padding-left: 16px;
}
 
/* On mobile/tablet the chip bar overflows — anchor to the left instead of centring,
   otherwise users see the middle of the bar on first load. */
@media (max-width: 900px) {
  .bliss-category-bar {
    justify-content: flex-start;
    padding: 0 16px;
  }
}
 
.bliss-category-bar::-webkit-scrollbar { display: none; }
 
.cat-chip {
  flex-shrink: 0;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  background: none;
  border-left: none; border-right: none; border-top: none;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
 
.cat-chip:hover {
  color: var(--purple);
  border-bottom-color: rgba(60,47,127,0.2);
}
 
.cat-chip.active,
.cat-chip:focus {
  color: var(--purple);
  border-bottom-color: var(--purple);
  font-weight: 600;
}
 
/* ─── Main Layout ───────────────────────────────────────────────────────────── */
.bliss-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
 
.bliss-main--full {
  grid-template-columns: 1fr;
  max-width: 780px;
}
 
.bliss-main--narrow {
  grid-template-columns: 1fr;
  max-width: 640px;
}
 
/* ─── Sidebar ───────────────────────────────────────────────────────────────── */
.bliss-sidebar {
  position: sticky;
  top: 88px;
}
 
.sidebar-section { margin-bottom: 32px; }
 
.sidebar-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
  padding-left: 4px;
}
 
.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
 
.sidebar-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.15s;
}
 
.sidebar-links li a:hover {
  background: rgba(60,47,127,0.06);
  color: var(--purple);
}
 
.sidebar-links li a.active {
  background: rgba(60,47,127,0.08);
  color: var(--purple);
  font-weight: 500;
}
 
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.15s;
  display: inline-block;
}
 
.sidebar-links li a.active .dot,
.sidebar-links li a:hover .dot { background: var(--teal); }
 
/* ─── Section Header ────────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
 
.section-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
 
.section-icon.teal   { background: rgba(1,93,98,0.1); }
.section-icon.purple { background: rgba(60,47,127,0.1); }
.section-icon.mint   { background: rgba(173,232,202,0.4); }
.section-icon.plum   { background: rgba(126,79,146,0.1); }
 
.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--text);
}
 
.section-header p {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}
 
/* ─── FAQ Group ─────────────────────────────────────────────────────────────── */
.faq-group { margin-bottom: 48px; }
 
.bliss-section-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 24px 0 10px;
}
 
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, border-left-color 0.2s;
}
 
.faq-item:hover {
  border-color: rgba(60,47,127,0.2);
  box-shadow: 0 4px 20px var(--shadow);
}
 
.faq-item.open {
  border-left-color: var(--teal);
  border-color: rgba(1,93,98,0.2);
  box-shadow: 0 4px 20px var(--shadow);
}
 
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
 
.faq-question:hover { color: var(--purple); }
.faq-question.open  { color: var(--purple); }
 
.faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.3s;
}
 
.faq-question.open .faq-chevron {
  background: rgba(60,47,127,0.1);
  transform: rotate(180deg);
}
 
.faq-chevron svg {
  width: 14px; height: 14px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}
 
.faq-question.open .faq-chevron svg { stroke: var(--purple); }
 
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
 
.faq-answer.open { max-height: 800px; }
 
.faq-answer-inner {
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
}
 
.faq-answer-inner p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  padding-top: 16px;
}
 
.faq-answer-inner p + p { margin-top: 12px; }
 
.faq-answer-inner a,
.read-more-link {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(1,93,98,0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
  font-size: 13px;
  display: inline-block;
  margin-top: 12px;
}
 
.faq-answer-inner a:hover,
.read-more-link:hover { text-decoration-color: var(--teal); }
 
.view-all-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(60,47,127,0.2);
  transition: border-color 0.2s;
}
 
.view-all-link:hover { border-color: var(--purple); }
 
/* ─── Section Links (Dynamic Home) ─────────────────────────────────────────── */
.faq-section-link {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
 
.faq-section-link:hover { color: var(--purple); }
 
.faq-section-name { flex: 1; }
 
.faq-section-link .faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
 
.faq-section-link:hover .faq-chevron {
  background: rgba(60,47,127,0.1);
}
 
.faq-section-link .faq-chevron svg {
  width: 14px; height: 14px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}
 
.faq-section-link:hover .faq-chevron svg { stroke: var(--purple); }
 
/* ─── Popular Grid ──────────────────────────────────────────────────────────── */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
 
.popular-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
 
.popular-card:hover {
  border-color: rgba(60,47,127,0.25);
  box-shadow: 0 4px 20px var(--shadow);
  transform: translateY(-2px);
}
 
.popular-card-icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}
 
.popular-card h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 6px;
}
 
.popular-card span {
  font-size: 12px;
  color: var(--text-light);
}
 
/* ─── Pill Tags ─────────────────────────────────────────────────────────────── */
.pill-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-right: 8px;
  margin-bottom: 12px;
}
 
.pill-teal  { background: rgba(1,93,98,0.1);   color: var(--teal); }
.pill-plum  { background: rgba(126,79,146,0.1); color: var(--plum); }
 
/* ─── Contact Card ──────────────────────────────────────────────────────────── */
.contact-card {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
}
 
.contact-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 6px;
}
 
.contact-card p {
  font-size: 14px;
  color: var(--teal);
  opacity: 0.8;
  line-height: 1.5;
  max-width: 360px;
}
 
.contact-card-small {
  background: rgba(60,47,127,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-top: 24px;
}
 
.contact-card-small p {
  font-size: 14px;
  color: var(--text-light);
}
 
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
 
/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
 
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
 
.btn-white   { background: var(--white); color: var(--teal); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-purple  { background: var(--purple); color: var(--white); }
 
/* ─── Article Page ──────────────────────────────────────────────────────────── */
.bliss-article-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
 
.bliss-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--text-light);
}
 
.bliss-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
 
.bliss-breadcrumb a:hover { color: var(--purple); }
.bliss-breadcrumb span   { color: var(--border); }
 
.bliss-article-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
}
 
.bliss-article {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px 48px;
}
 
.article-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
 
.article-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}
 
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
}
 
.article-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}
 
.article-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--text);
  margin: 28px 0 12px;
}
 
.article-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 8px;
}
 
.article-body p  { margin-bottom: 16px; }
.article-body ul,
.article-body ol { padding-left: 20px; margin-bottom: 16px; }
.article-body li { margin-bottom: 6px; }
 
.article-body a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(1,93,98,0.3);
}
 
.article-body a:hover { text-decoration-color: var(--teal); }
 
.article-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
 
.article-helpful p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}
 
.helpful-btns {
  display: flex;
  gap: 10px;
}
 
.btn-helpful {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.2s;
}
 
.btn-helpful:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(60,47,127,0.05);
}
 
.vote-count {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}
 
.article-sidebar {
  position: sticky;
  top: 88px;
}
 
.related-section {}
 
/* ─── Search Results ────────────────────────────────────────────────────────── */
.results-count {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}
 
.search-results-list { list-style: none; }
 
.search-result-item { cursor: pointer; }
 
.search-result-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
}
 
.search-result-link h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
 
.search-result-link p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 6px;
}
 
.search-result-meta {
  font-size: 12px;
  color: var(--plum);
  font-weight: 500;
}
 
.no-results {
  text-align: center;
  padding: 64px 24px;
}
 
.no-results h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  margin-bottom: 12px;
}
 
.no-results p {
  font-size: 15px;
  color: var(--text-light);
}
 
.no-results a { color: var(--teal); }
 
/* ─── Request Form ──────────────────────────────────────────────────────────── */
.bliss-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px 48px;
  margin-top: 32px;
}
 
.bliss-form-card label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
 
.bliss-form-card input[type="text"],
.bliss-form-card input[type="email"],
.bliss-form-card textarea,
.bliss-form-card select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 20px;
}
 
.bliss-form-card input:focus,
.bliss-form-card textarea:focus,
.bliss-form-card select:focus {
  border-color: var(--purple);
}
 
.bliss-form-card textarea { min-height: 140px; resize: vertical; }
 
.bliss-form-card input[type="submit"] {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: auto;
  margin-bottom: 0;
}
 
.bliss-form-card input[type="submit"]:hover {
  background: var(--plum);
  transform: translateY(-1px);
}
 
.form-errors {
  background: rgba(126,79,146,0.08);
  border: 1px solid rgba(126,79,146,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--plum);
}
 
/* ─── Footer ────────────────────────────────────────────────────────────────── */
.bliss-footer {
  background: var(--purple);
  padding: 40px 48px 28px;
}
 
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
 
.footer-brand {}
 
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--white);
}
 
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-style: italic;
}
 
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
 
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
 
.footer-links a:hover { color: var(--white); }
 
.footer-social {
  display: flex;
  gap: 12px;
}
 
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.2s;
}
 
.social-icon:hover {
  border-color: var(--mint);
  color: var(--mint);
  background: rgba(173,232,202,0.1);
}
 
.footer-bottom {
  padding-top: 20px;
  text-align: center;
}
 
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
 
/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .bliss-main {
    grid-template-columns: 1fr;
  }
 
  .bliss-sidebar { display: none; }
 
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
 
  .bliss-article-layout { grid-template-columns: 1fr; }
 
  .article-sidebar { display: none; }
 
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
 
  .bliss-nav { padding: 0 24px; }
  .bliss-hero { padding: 48px 24px 56px; }
}
 
@media (max-width: 600px) {
  .popular-grid { grid-template-columns: 1fr; }
 
  .bliss-nav .nav-links li:not(:last-child) { display: none; }
 
  .bliss-footer { padding: 32px 24px 20px; }
 
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
 
  .footer-links { flex-wrap: wrap; justify-content: center; }
 
  .footer-social { justify-content: center; }
}
 
/* ─── Back to Top ──────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(60,47,127,0.3);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  z-index: 99;
}
 
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
 
.back-to-top:hover {
  background: var(--plum);
  transform: translateY(-2px);
}
 
.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
 
/* ─── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
 
/* ─── Category Grid (Option A) ──────────────────────────────────────────────── */
.bliss-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0 32px;
}
 
.bliss-cat-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 6px rgba(60, 47, 127, 0.06), 0 6px 16px rgba(60, 47, 127, 0.08);
  transition: all 0.18s ease;
}
 
.bliss-cat-card:hover {
  border-color: var(--brand-teal, #015D62);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(60, 47, 127, 0.10), 0 12px 28px rgba(60, 47, 127, 0.12);
}
 
.bliss-cat-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(173, 232, 202, 0.4);
}
 
.bliss-cat-icon.teal { background: rgba(1, 93, 98, 0.1); }
.bliss-cat-icon.mint { background: rgba(173, 232, 202, 0.4); }
.bliss-cat-icon.plum { background: rgba(126, 79, 146, 0.1); }
 
.bliss-cat-body {
  flex: 1;
  min-width: 0;
}
 
.bliss-cat-body h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--bliss-text, #1a1a2e);
}
 
.bliss-cat-body p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.45;
}
 
@media (max-width: 768px) {
  .bliss-cat-grid {
    grid-template-columns: 1fr;
  }
}
 
/* ─── Hide all breadcrumbs site-wide ────────────────────────────────────────── */
.bliss-breadcrumb,
nav.breadcrumbs,
ol.breadcrumbs,
.breadcrumbs { display: none !important; }
 
/* ─── Reviewer Links ────────────────────────────────────────────────────────── */
.reviewer-avatar-link {
  display: inline-block;
  line-height: 0;
  border-radius: 50%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
 
.reviewer-avatar-link:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(60, 47, 127, 0.18);
}
 
.reviewer-name-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
}
 
.reviewer-name-link:hover {
  color: var(--bliss-teal, #015D62);
  border-bottom-color: currentColor;
}
 