/* ================================================
   BUENOS SUPLEMENTOS — Main Stylesheet
   Mobile-first | Lato font | Teal + Gold palette
   ================================================ */

:root {
  --primary:        #1E6C93;
  --primary-bright: #49AAD4;
  --gold:           #F5A623;
  --dark:           #212121;
  --dark-hover:     #2c2c2c;
  --dark-text:      rgba(255,255,255,0.87);
  --dark-muted:     rgba(255,255,255,0.55);
  --bg:             #FFFFFF;
  --bg-alt:         #F2F2F2;
  --text:           #333333;
  --text-light:     #666666;
  --whatsapp:       #25D366;
  --whatsapp-dark:  #1da851;
  --sidebar-width:  260px;
  --header-h:       60px;
  --radius:         8px;
  --shadow:         0 2px 8px rgba(0,0,0,0.12);
  --shadow-hover:   0 6px 20px rgba(0,0,0,0.18);
  --transition:     0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 14px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hamburger {
  background: none;
  border: none;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.header-logo { height: 40px; width: auto; }

.header-home-link { display: flex; align-items: center; }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .site-header { left: var(--sidebar-width); padding-left: 28px; }
}

/* ── Sidebar ── */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-width);
  height: 100dvh;
  background: var(--dark);
  z-index: 1100;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.sidebar.open { transform: translateX(0); }
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

.sidebar-logo-wrap {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  margin-top: var(--header-h);
}
.sidebar-logo-wrap img { max-width: 180px; }

.sidebar-nav { padding: 8px 0 24px; flex: 1; }

.sidebar-nav a {
  display: block;
  padding: 13px 24px;
  color: var(--dark-text);
  font-size: 13.5pt;
  font-weight: 300;
  letter-spacing: 0.2px;
  transition: background var(--transition), color var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-nav a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.sidebar-nav a.active {
  color: var(--primary-bright);
  border-left-color: var(--primary-bright);
  background: rgba(73,170,212,0.08);
  font-weight: 400;
}

/* ── Overlay ── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.overlay.show { opacity: 1; pointer-events: all; }
@media (min-width: 768px) { .overlay { display: none; } }

/* ── Desktop sidebar permanent ── */
@media (min-width: 768px) {
  .sidebar { transform: translateX(0); }
  .sidebar-logo-wrap { margin-top: 0; padding-top: 24px; }
}

/* ── Layout shell ── */
.main-content {
  margin-top: var(--header-h);
  min-height: calc(100dvh - var(--header-h));
}
@media (min-width: 768px) {
  .main-content { margin-left: var(--sidebar-width); }
}

/* ── Hero (homepage) ── */
.hero {
  background: linear-gradient(145deg, #1a5577 0%, var(--primary) 50%, #226E93 100%);
  padding: 52px 24px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-logo {
  max-width: 280px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.hero-tagline {
  font-size: 16pt;
  font-weight: 300;
  letter-spacing: 1.5px;
  opacity: 0.9;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-years {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 10pt;
  font-weight: 300;
  margin-top: 10px;
  letter-spacing: 0.5px;
}
.hero-years .star { color: var(--gold); font-size: 13pt; }

@media (min-width: 480px) {
  .hero-logo { max-width: 340px; }
  .hero-tagline { font-size: 18pt; }
}
@media (min-width: 768px) {
  .hero { padding: 72px 48px 80px; }
  .hero-logo { max-width: 380px; }
}

/* ── Section shell ── */
.section { padding: 48px 20px; }
.section-title {
  font-size: 22pt;
  font-weight: 300;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.section-subtitle {
  font-size: 11pt;
  color: var(--text-light);
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .section { padding: 64px 40px; }
  .section-title { font-size: 26pt; }
}

/* ── Category cards grid ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 480px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
@media (min-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(5, 1fr); }
}

.category-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 22px 12px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition), background var(--transition);
}
.category-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--primary-bright);
  background: white;
}
.cat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  line-height: 1;
}
.cat-icon svg { width: 100%; height: 100%; }
.cat-name {
  font-size: 9.5pt;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* ── Banner (product pages) ── */
.page-banner {
  background: linear-gradient(135deg, #1a5577, var(--primary));
  color: white;
  padding: 48px 24px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 36px;
  background: var(--bg-alt);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-banner h1 {
  font-size: 26pt;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-banner p {
  font-size: 12pt;
  font-weight: 300;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .page-banner { padding: 60px 48px 64px; }
  .page-banner h1 { font-size: 32pt; }
}

/* ── Products grid ── */
.products-section {
  background: var(--bg-alt);
  padding: 40px 16px 56px;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .products-section { padding: 48px 32px 64px; }
}

.product-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.product-img-wrap {
  width: 100%;
  height: 190px;
  aspect-ratio: auto;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  contain: strict;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  /* width/height attrs set by vercelImg() give the browser the 1:1
     aspect ratio before the image loads, preventing layout shift    */
}
.product-img-placeholder {
  font-size: 48px;
  opacity: 0.25;
}

.product-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-brand {
  font-size: 8.5pt;
  font-weight: 700;
  color: var(--primary-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-name {
  font-size: 13pt;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}
.product-desc {
  font-size: 10pt;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-top: 2px;
}
.product-price {
  font-size: 16pt;
  font-weight: 700;
  color: var(--dark);
  margin-top: 6px;
}
.product-price .currency {
  font-size: 10pt;
  font-weight: 400;
  color: var(--text-light);
  margin-right: 2px;
}
.product-price .ask {
  font-size: 11pt;
  font-weight: 400;
  color: var(--primary);
}
.product-footer { padding: 0 16px 16px; }

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--whatsapp);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 13px 18px;
  font-size: 11pt;
  font-weight: 700;
  width: 100%;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-wa:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.02);
}
.btn-wa svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

/* ── Reviews section ── */
.reviews-section {
  background: var(--dark);
  padding: 56px 20px;
  color: white;
}
.reviews-header { text-align: center; margin-bottom: 36px; }
.reviews-header .section-title { color: white; }
.reviews-header .section-subtitle { color: var(--dark-muted); }

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.rating-big { font-size: 40pt; font-weight: 700; color: var(--gold); line-height: 1; }
.rating-stars { color: var(--gold); font-size: 18pt; letter-spacing: 2px; }
.rating-total { color: var(--dark-muted); font-size: 10.5pt; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .reviews-section { padding: 72px 40px; }
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.1); }

.review-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16pt;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta { flex: 1; min-width: 0; }
.review-author { font-size: 11pt; font-weight: 700; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-date { font-size: 8.5pt; color: var(--dark-muted); margin-top: 1px; }
.review-stars { color: var(--gold); font-size: 13pt; letter-spacing: 1px; }
.review-text { font-size: 10.5pt; line-height: 1.65; color: var(--dark-text); }
.review-google-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8.5pt;
  color: var(--dark-muted);
  margin-top: 4px;
}
.review-google-badge svg { width: 14px; height: 14px; }

/* Reviews loading / error states */
.reviews-loading, .reviews-error {
  text-align: center;
  padding: 40px 20px;
  color: var(--dark-muted);
}
.spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--primary-bright);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Skeleton loading cards */
.skel {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  animation: shimmer 1.4s ease infinite;
}
.skel-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1;   }
}

.reviews-config-notice {
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 10pt;
  color: #ffc966;
  margin-bottom: 24px;
  line-height: 1.7;
}
.reviews-config-notice code {
  background: rgba(255,255,255,0.1);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 9.5pt;
}
.reviews-config-notice a { color: var(--primary-bright); text-decoration: underline; }

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 22px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.65);
}
.whatsapp-fab svg { width: 30px; height: 30px; fill: white; flex-shrink: 0; }
.whatsapp-fab .fab-label {
  position: absolute;
  right: calc(100% + 12px);
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.whatsapp-fab:hover .fab-label,
.whatsapp-fab:focus .fab-label {
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-fab .fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ── Footer ── */
.site-footer {
  background: #111;
  color: var(--dark-text);
  padding: 40px 24px 28px;
  text-align: center;
  border-top: 3px solid var(--primary);
}
.footer-logo { max-width: 200px; margin: 0 auto 18px; opacity: 0.9; }
.footer-tagline {
  font-size: 10.5pt;
  font-weight: 300;
  color: var(--dark-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 24px;
}
.footer-nav a {
  color: var(--primary-bright);
  font-size: 10pt;
  transition: color var(--transition);
}
.footer-nav a:hover { color: white; }
.footer-divider {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 0 auto 20px;
  border-radius: 1px;
}
.footer-copy { font-size: 9pt; color: rgba(255,255,255,0.3); line-height: 1.8; }
.footer-copy a { color: var(--primary-bright); }

/* ── Social icons ── */
.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}
.social-icon:hover {
  transform: translateY(-3px) scale(1.12);
  border-color: transparent;
}
.social-icon svg { width: 20px; height: 20px; fill: currentColor; }

/* Per-platform hover colours */
.social-icon.si-facebook:hover  { background: #1877F2; }
.social-icon.si-instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-icon.si-x:hover         { background: #000; }
.social-icon.si-threads:hover   { background: #000; }
.social-icon.si-whatsapp:hover  { background: #25D366; }
.social-icon.si-tiktok:hover    { background: #000; }
.social-icon.si-youtube:hover   { background: #FF0000; }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.gold { color: var(--gold); }

/* ══════════════════════════════════════
   PRODUCT CARD — Rich variant
   ══════════════════════════════════════ */
.product-card--rich { cursor: default; }
.product-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  flex: 1;
}
.product-card-link .product-img-wrap,
.product-card-link .product-body { pointer-events: none; }

.product-footer--rich {
  display: flex;
  gap: 8px;
  align-items: stretch;
  padding: 0 16px 16px;
}

.btn-detail {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  padding: 13px 14px;
  font-size: 11pt;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-detail:hover { background: #174f6e; transform: scale(1.02); }
.btn-detail svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

.btn-wa--icon {
  width: 48px;
  flex-shrink: 0;
  padding: 0;
  border-radius: 6px;
}
.btn-wa--icon svg { width: 22px; height: 22px; }

/* ══════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════ */
.product-detail-wrap {
  padding-bottom: 100px; /* space for sticky bar */
}

.pd-loading {
  padding: 60px 24px;
  text-align: center;
  color: var(--text-light);
  font-size: 12pt;
}
.pd-loading a { color: var(--primary); text-decoration: underline; }

/* Back bar */
.pd-back-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 20px;
}
.pd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 10.5pt;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}
.pd-back-link:hover { color: var(--primary-bright); }
.pd-back-link svg { width: 20px; height: 20px; fill: currentColor; }

/* Hero block */
.pd-hero {
  background: white;
  display: flex;
  flex-direction: column;
}
@media (min-width: 680px) {
  .pd-hero { flex-direction: row; align-items: flex-start; }
}

.pd-img-wrap {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  flex-shrink: 0;
}
@media (min-width: 680px) {
  .pd-img-wrap { width: 320px; min-height: 320px; }
}
.pd-img {
  width: 100%;
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  padding: 20px;
}
.pd-img-placeholder {
  font-size: 80px;
  opacity: 0.2;
}

.pd-hero-body {
  padding: 24px 20px 20px;
  flex: 1;
}

.pd-brand {
  font-size: 9pt;
  font-weight: 700;
  color: var(--primary-bright);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.pd-name {
  font-size: 20pt;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 8px;
}
@media (min-width: 680px) {
  .pd-name { font-size: 24pt; }
}
.pd-tagline {
  font-size: 11pt;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 16px;
}

.pd-price {
  font-size: 18pt;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.pd-price-currency {
  font-size: 11pt;
  font-weight: 400;
  color: var(--text-light);
  margin-right: 2px;
}
.pd-price--ask {
  font-size: 13pt;
  font-weight: 400;
  color: var(--primary);
}

.pd-serving-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pd-serving-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 16px;
  min-width: 90px;
  text-align: center;
}
.pd-serving-chip strong {
  font-size: 13pt;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.pd-serving-chip span {
  font-size: 8pt;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.pd-flavors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.pd-flavors-label {
  font-size: 9pt;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.pd-flavor-chip {
  background: var(--primary);
  color: white;
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 9pt;
  font-weight: 400;
}

/* Body sections */
.pd-body {
  background: var(--bg-alt);
}
.pd-section {
  background: white;
  margin: 12px 0;
  padding: 24px 20px;
}
@media (min-width: 768px) {
  .pd-section { padding: 28px 32px; }
}
.pd-section-title {
  font-size: 15pt;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-alt);
}

/* Nutrition Facts */
.pd-nf {
  border: 2px solid var(--dark);
  border-radius: 4px;
  max-width: 100%;
}
.pd-nf-title {
  background: var(--dark);
  color: white;
  font-size: 15pt;
  font-weight: 700;
  padding: 10px 14px;
  letter-spacing: 0.5px;
}
.pd-nf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10.5pt;
}
.pd-nf-table tr {
  border-bottom: 1px solid #ddd;
}
.pd-nf-table tr:last-child { border-bottom: none; }
.pd-nf-calories .pd-nf-label {
  font-weight: 700;
  font-size: 11.5pt;
}
.pd-nf-label {
  padding: 8px 14px;
  color: var(--dark);
  line-height: 1.4;
}
.pd-nf-amount {
  padding: 8px 10px;
  font-weight: 700;
  text-align: right;
  width: 1%;
  color: var(--dark);
}
.pd-nf-dv {
  padding: 8px 14px 8px 6px;
  color: var(--text-light);
  font-size: 9pt;
  text-align: right;
  white-space: nowrap;
}
.pd-nf-footnote {
  padding: 8px 14px;
  font-size: 8.5pt;
  color: var(--text-light);
  background: #f9f9f9;
  border-top: 1px solid #ddd;
}

/* ── Amino Acid Profile ── */
.pd-amino-subtitle {
  font-size: 0.78em;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 6px;
}
.pd-amino-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  background: var(--card-bg, #1a1a1a);
}
.pd-amino-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10pt;
}
.pd-amino-table tr {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pd-amino-table tr:last-child { border-bottom: none; }
.pd-amino-label {
  padding: 8px 14px;
  color: var(--text-light);
  text-transform: uppercase;
  font-size: 9pt;
  letter-spacing: 0.4px;
  width: 28%;
}
.pd-amino-label:nth-child(3) { border-left: 1px solid rgba(255,255,255,.08); }
.pd-amino-amount {
  padding: 8px 14px 8px 4px;
  font-weight: 700;
  color: var(--primary, #d4af37);
  white-space: nowrap;
  width: 22%;
}

/* ── Characteristic Ratings ── */
.pd-ratings {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pd-rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pd-rating-label {
  font-size: 9.5pt;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  min-width: 90px;
}
.pd-rating-stars {
  display: flex;
  gap: 3px;
}
.pd-star {
  width: 20px;
  height: 20px;
  fill: var(--primary, #d4af37);
}
.pd-star--empty {
  fill: rgba(255,255,255,.18);
}

/* ── Product Image Gallery ── */
.pd-img-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.pd-gallery-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  background: #111;
}
@media (max-width: 480px) {
  .pd-img-gallery {
    grid-template-columns: 1fr;
  }
}

/* ── Instagram Embed ── */
.pd-instagram-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pd-instagram-wrap .instagram-media {
  margin: 0 auto !important;
}
.pd-embed-credit {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin: 0;
}

/* Benefits */
.pd-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 11pt;
  color: var(--text);
  line-height: 1.5;
}
.pd-check {
  color: var(--primary-bright);
  font-weight: 700;
  font-size: 13pt;
  flex-shrink: 0;
  margin-top: -1px;
}

/* Who for + How to use */
.pd-text {
  font-size: 11pt;
  color: var(--text);
  line-height: 1.75;
}
.pd-how-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(30,108,147,0.06);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  padding: 16px 18px;
}
.pd-how-box svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.pd-how-box p {
  font-size: 11pt;
  color: var(--text);
  line-height: 1.75;
}

/* FAQs */
.pd-faqs { display: flex; flex-direction: column; gap: 0; }
.pd-faq {
  border-bottom: 1px solid #eee;
}
.pd-faq:last-child { border-bottom: none; }
.pd-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  font-size: 11pt;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.pd-faq-q:hover { color: var(--primary); }
.pd-faq-icon {
  width: 22px;
  height: 22px;
  fill: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.pd-faq-q[aria-expanded="true"] .pd-faq-icon { transform: rotate(180deg); }
.pd-faq-a {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}
.pd-faq-q[aria-expanded="false"] + .pd-faq-a {
  grid-template-rows: 0fr;
}
.pd-faq-a > p {
  overflow: hidden;
  padding-bottom: 16px;
  font-size: 10.5pt;
  color: var(--text-light);
  line-height: 1.75;
}

/* CTA section */
.pd-section--cta {
  text-align: center;
  padding: 32px 20px;
}
.pd-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--whatsapp);
  color: white;
  border-radius: 8px;
  padding: 16px 28px;
  font-size: 13pt;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  width: 100%;
  max-width: 480px;
}
.pd-cta-btn:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
.pd-cta-btn svg { width: 24px; height: 24px; fill: white; flex-shrink: 0; }
.pd-cta-note {
  margin-top: 10px;
  font-size: 9.5pt;
  color: var(--text-light);
}

/* Sticky WhatsApp bar */
.pd-wa-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--whatsapp);
  padding: 12px 16px;
  z-index: 800;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}
@media (min-width: 768px) {
  .pd-wa-sticky { left: var(--sidebar-width); }
}
.pd-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-size: 12pt;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.pd-wa-btn svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }

/* ══════════════════════════════════════
   SEARCH OVERLAY
   ══════════════════════════════════════ */
.search-btn {
  background: none;
  border: none;
  padding: 8px;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
  transition: color var(--transition);
  flex-shrink: 0;
}
.search-btn:hover { color: var(--primary-bright); }
.search-btn svg { width: 22px; height: 22px; }

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 20px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }

.search-box {
  width: 100%;
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 6px 8px 6px 16px;
}
.search-box-icon { width: 20px; height: 20px; flex-shrink: 0; color: rgba(255,255,255,0.35); }
.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15pt;
  font-weight: 300;
  color: white;
  padding: 10px 0;
}
.search-input::placeholder { color: rgba(255,255,255,0.32); }
.search-close-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 9.5pt;
  font-weight: 700;
  padding: 7px 12px;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
  font-family: inherit;
}
.search-close-btn:hover { background: rgba(255,255,255,0.2); }
.search-hint {
  color: rgba(255,255,255,0.35);
  font-size: 10pt;
  margin-top: 14px;
  align-self: flex-start;
  max-width: 640px;
  width: 100%;
}
.search-results-list {
  width: 100%;
  max-width: 640px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 55vh;
  overflow-y: auto;
}
.search-results-list::-webkit-scrollbar { width: 4px; }
.search-results-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 11px 14px;
  text-decoration: none;
  color: white;
  transition: background var(--transition), border-color var(--transition);
}
.search-result-item:hover {
  background: rgba(73,170,212,0.15);
  border-color: var(--primary-bright);
}
.sri-img {
  width: 42px; height: 42px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.sri-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.sri-body { flex: 1; min-width: 0; }
.sri-brand { font-size: 7.5pt; font-weight: 700; color: var(--primary-bright); text-transform: uppercase; letter-spacing: 0.8px; }
.sri-name { font-size: 10.5pt; font-weight: 700; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sri-cat { font-size: 8.5pt; color: rgba(255,255,255,0.4); margin-top: 1px; }
.sri-arrow { color: rgba(255,255,255,0.3); flex-shrink: 0; }
.sri-arrow svg { width: 18px; height: 18px; }
.search-no-results { color: rgba(255,255,255,0.4); font-size: 11pt; text-align: center; padding: 28px 0; }
.search-section-label { font-size: 8pt; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.28); padding: 4px 4px 8px; }
.search-result-item.focused { background: rgba(73,170,212,0.18); border-color: var(--primary-bright); outline: none; }
.sri-price { display: inline; margin-left: 8px; color: var(--primary-bright); font-weight: 700; font-size: 8.5pt; }

/* ══════════════════════════════════════
   PROMOTIONS SECTION
   ══════════════════════════════════════ */
.promos-section { background: var(--bg); padding: 36px 0 44px; }
.promos-section .section-title,
.promos-section .section-subtitle { padding-left: 20px; }
@media (min-width: 768px) {
  .promos-section .section-title,
  .promos-section .section-subtitle { padding-left: 40px; }
}
.promos-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 20px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.promos-scroll::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .promos-scroll { padding: 10px 40px 16px; } }

.promo-card {
  flex-shrink: 0;
  width: 272px;
  background: linear-gradient(135deg, var(--primary), var(--primary-bright));
  border-radius: 12px;
  padding: 20px 20px 18px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute;
  top: -22px; right: -22px;
  width: 90px; height: 90px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.promo-card--gold { background: linear-gradient(135deg, #8B6A10, #F5A623); }
.promo-card--dark { background: linear-gradient(135deg, #1c1c1c, #383838); }
.promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 20px;
  font-size: 7.5pt;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  align-self: flex-start;
}
.promo-title { font-size: 15pt; font-weight: 700; line-height: 1.3; margin-top: 4px; }
.promo-desc { font-size: 9.5pt; opacity: 0.85; line-height: 1.55; flex: 1; }
.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 9.5pt;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: background var(--transition);
  margin-top: 6px;
  align-self: flex-start;
}
.promo-cta:hover { background: rgba(255,255,255,0.28); color: white; }
.promo-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ══════════════════════════════════════
   SEO CONTENT BLOCK
   ══════════════════════════════════════ */
.seo-block {
  background: white;
  padding: 48px 20px;
  border-top: 1px solid #ebebeb;
}
.seo-block-inner { max-width: 860px; margin: 0 auto; }
.seo-block h2 {
  font-size: 19pt;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.35;
}
.seo-block h3 {
  font-size: 12.5pt;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
}
.seo-block p {
  font-size: 10.5pt;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 10px;
}
.seo-block a { color: var(--primary); text-decoration: underline; }
.seo-block a:hover { color: var(--primary-bright); }
.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}
@media (min-width: 500px) { .seo-links-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) {
  .seo-block { padding: 64px 40px; }
  .seo-block h2 { font-size: 22pt; }
  .seo-links-grid { grid-template-columns: repeat(4, 1fr); }
}
.seo-link-item {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 10pt;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  display: block;
  text-align: center;
}
.seo-link-item:hover { background: var(--primary); color: white; }

/* ══════════════════════════════════════
   NEWSLETTER / LEAD CAPTURE
   ══════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, #133550, var(--primary));
  color: white;
  padding: 56px 20px;
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 {
  font-size: 20pt;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.newsletter-inner > p {
  font-size: 11pt;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.6;
}
.nl-discount-badge {
  display: inline-block;
  background: var(--gold);
  color: #1a1a1a;
  border-radius: 20px;
  font-size: 8.5pt;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.nl-field { display: flex; flex-direction: column; gap: 4px; }
.nl-label {
  font-size: 8.5pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.7;
}
.nl-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 11pt;
  color: white;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.nl-input::placeholder { color: rgba(255,255,255,0.38); }
.nl-input:focus { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.15); }
.nl-input.invalid { border-color: #ff7070; }
.nl-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 480px) { .nl-row { grid-template-columns: 1fr 1fr; } }
.nl-submit {
  background: var(--gold);
  color: #111;
  border: none;
  border-radius: 6px;
  padding: 15px 24px;
  font-family: inherit;
  font-size: 12pt;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.nl-submit:hover { background: #e6961f; transform: translateY(-1px); }
.nl-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.nl-legal { font-size: 8.5pt; opacity: 0.45; text-align: center; line-height: 1.6; margin-top: 4px; }
.nl-feedback {
  padding: 13px 18px;
  border-radius: 8px;
  font-size: 10.5pt;
  font-weight: 700;
  text-align: center;
  display: none;
}
.nl-feedback.success {
  background: rgba(37,211,102,0.18);
  border: 1px solid rgba(37,211,102,0.35);
  color: #5dffaa;
  display: block;
}
.nl-feedback.error {
  background: rgba(255,80,80,0.18);
  border: 1px solid rgba(255,80,80,0.35);
  color: #ff9999;
  display: block;
}
@media (min-width: 768px) {
  .newsletter-section { padding: 72px 40px; }
  .newsletter-inner h2 { font-size: 24pt; }
}

/* ══════════════════════════════════════
   BLOG
   ══════════════════════════════════════ */

/* Blog index grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-grid { gap: 32px; }
}

/* Blog card */
.blog-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid #e8e8e8;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.blog-card-img-link { display: block; }
.blog-card-img-wrap {
  height: 280px;
  background: linear-gradient(135deg, #1a5577, var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.22);
  overflow: hidden;
}
.blog-card-img-wrap svg { width: 52px; height: 52px; }
.blog-card-img-wrap--photo { background: #111; padding: 0; }
.blog-card-img { width: 100%; height: 100%; object-fit: contain; display: block; }
video.blog-card-img { object-fit: contain; }

/* Post cover media (video or image below header) */
.post-cover {
  width: 100%;
  max-width: 820px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.post-cover video,
.post-cover img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .post-cover video,
  .post-cover img { max-height: 560px; }
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Category badge (shared with blog post page) */
.blog-badge {
  display: inline-block;
  background: rgba(30,108,147,0.10);
  color: var(--primary);
  border-radius: 20px;
  font-size: 8pt;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 12px;
  width: fit-content;
}

.blog-card-title {
  font-size: 14pt;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--primary); }

.blog-card-excerpt {
  font-size: 10.5pt;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 8px;
  font-size: 9pt;
  color: var(--text-light);
  align-items: center;
}

.blog-card-link {
  font-size: 10pt;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.2px;
}
.blog-card-link:hover { color: var(--primary-bright); }

/* ── Blog post page ── */

.breadcrumb {
  padding: 13px 24px;
  font-size: 9.5pt;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border-bottom: 1px solid #e8e8e8;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { color: #bbb; }
@media (min-width: 768px) { .breadcrumb { padding: 13px 40px; } }

.post-header {
  padding: 40px 24px 32px;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}
@media (min-width: 768px) { .post-header { padding: 52px 40px 40px; } }

.post-header h1 {
  font-size: 22pt;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
@media (min-width: 768px) { .post-header h1 { font-size: 28pt; } }

.post-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 10pt;
  color: var(--text-light);
}

/* Article body */
.post-body {
  padding: 36px 24px 48px;
  max-width: 820px;
  line-height: 1.8;
  font-size: 12pt;
  color: var(--text);
}
@media (min-width: 768px) { .post-body { padding: 48px 40px 64px; } }

.post-body h2 {
  font-size: 18pt;
  font-weight: 700;
  color: var(--primary);
  margin: 44px 0 14px;
  line-height: 1.3;
}
.post-body h3 {
  font-size: 14pt;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
}
.post-body p { margin-bottom: 18px; }
.post-body ul,
.post-body ol {
  margin: 0 0 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { line-height: 1.75; }
.post-body strong { color: var(--text); font-weight: 700; }
.post-body a { color: var(--primary); font-weight: 700; }
.post-body a:hover { text-decoration: underline; }

/* Post page CTA bar */
.post-cta-section {
  background: var(--bg-alt);
  padding: 32px 24px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}
@media (min-width: 768px) {
  .post-cta-section {
    padding: 32px 40px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.post-cta-section > p {
  font-size: 11pt;
  color: var(--text-light);
  margin: 0;
}
.post-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Shared button styles */
.btn-primary {
  background: var(--primary);
  color: white;
  border-radius: 6px;
  padding: 11px 22px;
  font-size: 11pt;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition);
}
.btn-primary:hover { background: var(--primary-bright); color: white; }

.btn-wa {
  background: var(--whatsapp);
  color: white;
  border-radius: 6px;
  padding: 11px 22px;
  font-size: 11pt;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition);
}
.btn-wa:hover { background: var(--whatsapp-dark); color: white; }

/* Related posts */
.related-section {
  padding: 40px 24px 56px;
  max-width: 860px;
}
@media (min-width: 768px) { .related-section { padding: 40px 40px 64px; } }

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}
@media (min-width: 560px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }

.related-card {
  background: var(--bg-alt);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.related-card:hover { box-shadow: var(--shadow); border-color: var(--primary-bright); }
.related-card strong { font-size: 11.5pt; line-height: 1.35; }
.related-read { font-size: 9.5pt; color: var(--primary); font-weight: 700; margin-top: auto; }

/* Loading spinner (reused from reviews) */
.post-loading { display: flex; justify-content: center; padding: 60px 0; }
