@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800;900&display=swap');

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

body {
  margin: 0;
  font-family: 'Open Sans', system-ui, sans-serif;
  background: #f5f5f5;
  color: #222;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* TOP BAR */
.adv-bar {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.adv-bar--hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.adv-bar--scrolled { justify-content: center; }
.adv-bar-left { }
.adv-bar-center {
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  font-size: 12px;
  color: #fff;
}
.adv-bar-right {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #ccc;
}

/* ARTICLE */
.article-wrap { max-width: 820px; margin: 0 auto; background: #fff; padding: 0; padding-bottom: 60px; }
.article-inner { padding: 18px 24px 0; }

.breadcrumb { font-size: 12px; color: #888; margin-bottom: 16px; }
.breadcrumb a { color: #888; text-decoration: none; }

.article-headline {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.2;
  color: #111;
  margin: 0 0 18px;
}

.article-meta {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e5e5;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #ddd;
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.meta-author { font-weight: 700; color: #111; }

/* HERO */
.hero-split { display: flex; gap: 8px; margin-bottom: 14px; height: 300px; }
.hero-split > div { flex: 1; overflow: hidden; }
.hero-split img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* BODY */
.article-body p { margin-bottom: 12px; line-height: 1.65; }
.article-body strong { color: #111; }
.article-body h2 {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 26px; font-weight: 900; color: #111;
  margin: 22px 0 10px; line-height: 1.25;
}
.article-body h3 {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 20px; font-weight: 800; color: #111;
  margin: 16px 0 8px;
}
.red-alert { font-weight: 700; font-size: 18px; color: #cc0000; }
.lead-bold { font-size: 18px; font-weight: 700; color: #111; }

/* IMAGES */
.inline-img { margin: 14px 0; text-align: center; }
.inline-img img { max-width: 100%; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.img-caption { font-size: 12px; color: #999; margin-top: 7px; font-style: italic; }

.scam-img { margin: 10px auto 14px; display: flex; justify-content: center; }
.scam-img img {
  width: 100%; max-width: 280px;
  aspect-ratio: 1/1; object-fit: cover;
  border: 1px solid #eee;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}
@media (max-width: 480px) { .scam-img img { max-width: 220px; } }

/* CHECKLIST */
.check-list { list-style: none; padding: 0; margin: 16px 0 22px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 15px; line-height: 1.6; }
.check-list .ck { color: #22aa44; flex-shrink: 0; font-size: 17px; margin-top: 1px; }

/* ZERO GRID */
.zero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.zero-item { background: #f8f8f5; border: 1px solid #eee; padding: 16px; text-align: center; }
.zero-big { font-size: 22px; font-weight: 900; color: #22aa44; display: block; margin-bottom: 4px; }
.zero-label { font-size: 12px; color: #777; text-transform: uppercase; letter-spacing: 0.5px; }

/* INGREDIENTS */
.ingredient-card { background: #fafaf8; border: 1px solid #eee; padding: 20px; margin: 16px 0; }
.ingredient-card h4 { font-size: 15px; font-weight: 800; color: #111; margin: 0 0 10px; }
.ingredient-card p { font-size: 15px; margin: 0; line-height: 1.7; color: #333; }

/* STEPS */
.steps { margin: 12px 0; }
.step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.step-num {
  background: #111; color: #fff; font-weight: 900; font-size: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-body { flex: 1; }
.step-body p { margin: 8px 0 0; font-size: 15px; }
.step-body--with-img { display: flex; align-items: flex-start; gap: 14px; }
.step-body--with-img p { margin: 0; flex: 1; align-self: center; }
.step-img { width: 110px; height: 110px; object-fit: cover; border: 1px solid #eee; box-shadow: 0 2px 10px rgba(0,0,0,0.08); flex-shrink: 0; }
@media (max-width: 480px) { .step-img { width: 88px; height: 88px; } }

/* REVIEWS */
.tp-card { border: 1px solid #e0e0e0; padding: 22px; margin: 16px 0; }
.tp-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #f0f0f0; }
.tp-avatar { width: 44px; height: 44px; border-radius: 50%; background: #dbfcf0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; color: #000; flex-shrink: 0; }
.tp-name { font-weight: 700; font-size: 15px; color: #000; }
.tp-verified { font-size: 12px; color: #666; }
.tp-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.tp-star { width: 20px; height: 20px; background: #00b67a; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; }
.tp-title { font-weight: 700; font-size: 16px; color: #000; margin-bottom: 8px; }
.tp-text { font-size: 15px; line-height: 1.6; color: #333; margin: 0; }

/* COMMENTS */
.comments-section { margin: 40px 0; border-top: 1px solid #e9eae9; padding-top: 20px; }
.comments-title { font-size: 16px; font-weight: 700; color: #1c1e21; margin: 0 0 20px; }
.comment-thread { margin-bottom: 20px; }
.comment-row { display: flex; gap: 10px; margin-bottom: 4px; }
.comment-avatar {
  width: 40px; height: 40px; background: #e4e6eb;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #606770; font-weight: 700; font-size: 16px; flex-shrink: 0; overflow: hidden;
}
.comment-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.comment-bubble { background: #f0f2f5; border-radius: 18px; padding: 8px 14px; display: inline-block; max-width: 100%; }
.comment-name { font-size: 13px; font-weight: 600; color: #050505; margin: 0 0 3px; }
.comment-text { font-size: 15px; color: #050505; margin: 0; }
.comment-actions { font-size: 12px; color: #65676b; padding-left: 12px; margin-top: 4px; margin-bottom: 8px; }
.comment-actions span { font-weight: 700; cursor: pointer; margin-right: 6px; }
.comment-reply { margin-left: 50px; margin-top: 8px; display: flex; gap: 8px; }
.comment-reply .comment-avatar { width: 28px; height: 28px; font-size: 12px; }
.comment-reply .comment-bubble { padding: 6px 10px; }
.comment-reply .comment-name { font-size: 12px; }
.comment-reply .comment-text { font-size: 14px; }
.read-more { margin: 14px 0 0; text-align: center; font-style: italic; font-size: 13px; color: #606770; cursor: pointer; }
.read-more:hover { text-decoration: underline; }

/* SALE BOX */
.sale-box { background: linear-gradient(135deg,#fff9e6,#fff3cc); border: 2px solid #ffc107; padding: 28px 24px; margin: 36px 0; text-align: center; }
.sale-tag { display: inline-block; background: #e60000; color: #fff; font-weight: 900; font-size: 30px; padding: 6px 22px; margin-bottom: 14px; }
.sale-box h3 { font-size: 20px; font-weight: 800; color: #333; margin: 0 0 10px; }
.sale-box p { font-size: 15px; color: #555; margin-bottom: 16px; }

/* GUARANTEE */
.guarantee-box { display: flex; align-items: flex-start; gap: 20px; border: 1px solid #e0e0e0; padding: 24px; margin: 40px 0; background: #fafaf8; }
.guarantee-seal { width: 80px; height: 80px; background: #e8f8ee; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; flex-shrink: 0; border: 3px solid #22aa44; }
.guarantee-title { font-weight: 800; font-size: 18px; color: #111; margin-bottom: 8px; }
.guarantee-text { font-size: 15px; line-height: 1.6; color: #333; margin: 0; }

/* CTA */
.cta-btn {
  display: block; text-align: center;
  background: #FFD700; color: #111;
  font-weight: 800; font-size: 18px;
  padding: 18px 20px;
  text-decoration: none; width: 100%;
  border: none; cursor: pointer;
  margin: 28px 0;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 14px rgba(255,215,0,0.4);
  letter-spacing: 0.3px;
  white-space: nowrap;
  font-family: 'Open Sans', system-ui, sans-serif;
}
.cta-btn:hover { background: #f5c900; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,215,0,0.45); }
.cta-btn:active { transform: translateY(0); }

/* STICKY CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 2px solid #FFD700;
  padding: 10px 16px; text-align: center;
  z-index: 999; box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  pointer-events: none;
}
.sticky-cta--visible { transform: translateY(0); pointer-events: auto; }
.sticky-cta .cta-btn { margin: 0; font-size: 16px; padding: 14px 20px; }

/* FOOTER */
.adv-footer { background: #f5f5f5; color: #999; font-size: 11px; text-align: center; padding: 30px 20px 90px; line-height: 1.9; border-top: 1px solid #e5e5e5; }
.adv-footer a { color: #888; text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 640px) {
  .article-headline { font-size: 26px; }
  .article-inner { padding: 20px 16px 0; }
  .hero-split { height: 200px; gap: 5px; }
  .article-body h2 { font-size: 22px; }
  .sale-tag { font-size: 24px; }
  .guarantee-box { flex-direction: column; align-items: center; text-align: center; }
}
