* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f5f5f0;
  color: #2d2d2d;
  line-height: 1.4;
  font-size: 16px;
}

/* Top medical bar */
.medical-top-bar {
  background: #72541d;
  color: #fff;
  text-align: center;
  padding: 8px 15px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.medical-top-bar span {
  color: #f9e79f;
  font-weight: 700;
}

/* Article header */
.article-header {
  background: #fff;
  border-bottom: 3px solid #c0392b;
  padding: 15px 20px;
}

.article-header .source-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.article-header .logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-header .logo-area .logo-icon {
  width: 40px;
  height: 40px;
  background: #c0392b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}

.article-header .logo-area .pub-name {
  font-weight: 700;
  font-size: 16px;
  color: #72541d;
}

.article-header .logo-area .pub-sub {
  font-size: 11px;
  color: #777;
}

.article-header .date-info {
  font-size: 12px;
  color: #888;
}

.article-header .date-info strong {
  color: #c0392b;
}

/* Container */
.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero section */
.hero-section {
  background: linear-gradient(
    0deg,
    rgba(255, 247, 235, 1) 0%,
    rgba(230, 200, 150, 1) 50%,
    rgb(98 65 12) 100%
  );
  padding: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767.9px) {
  .hero-section {
    background: linear-gradient(
      0deg,
      rgba(255, 247, 235, 1) 0%,
      rgb(144 114 63) 50%,
      rgb(98 65 12) 100%
    );
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
}

.hero-badge {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
  text-decoration: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.hero-section h1 {
  color: #fff;
  font-size: 28px;
  line-height: 1.4;
  max-width: 940px;
  margin: 0 auto 15px;
  position: relative;
}

.hero-section h1 span {
  color: #f9e79f;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  max-width: 940px;
  margin: 0 auto 15px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.hero-stat {
  text-align: center;
  color: #fff;
}

.hero-stat .number {
  font-size: 32px;
  font-weight: 900;
  color: #f9e79f;
  display: block;
}

.hero-stat .label {
  font-size: 12px;
  opacity: 0.8;
}

/* Before/After hero */
.hero-ba {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-ba-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-ba-card .ba-img {
  width: 140px;
  height: 180px;
  background: #ddd;
  border-radius: 8px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
  position: relative;
  overflow: hidden;
}

.hero-ba-card .ba-img.before {
  background: linear-gradient(180deg, #e8d5c4 0%, #d4b896 100%);
}

.hero-ba-card .ba-img.after {
  background: linear-gradient(180deg, #d5e8d4 0%, #a8d5a2 100%);
}

.hero-ba-card .ba-label {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.hero-ba-card .ba-weight {
  color: #f9e79f;
  font-size: 13px;
}

/* Article body */
.article-body {
  background: #fff;
  padding: 25px 30px;
  margin: 0 auto;
  max-width: 1000px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.article-body p {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: justify;
}

.article-body h2,
.h2-style {
  color: #72541d;
  font-size: 22px;
  margin: 15px 0 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

.h2-style {
  max-width: 670px;
  margin-inline: auto !important;
}

.article-body h3 {
  color: #b68e46;
  font-size: 18px;
  margin: 15px 0 15px;
}

.article-body strong {
  color: #72541d;
}

.article-body em {
  color: #555;
}

/* Author info block */
.author-block {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fcf9f0;
  border-left: 4px solid #b68e46;
  padding: 15px;
  border-radius: 0 8px 8px 0;
  margin: 0;
}

.author-block .author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b68e46, #72541d);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.author-block .author-info h4 {
  color: #72541d;
  font-size: 16px;
  margin-bottom: 3px;
}

.author-block .author-info .credentials {
  font-size: 16px;

  margin-bottom: 15px;
}

.author-block .author-info p {
  font-size: 16px;
  margin-bottom: 0;
  text-align: left;
}

/* Story block */
.story-block {
  background: #fef9e7;
  border: 1px solid #f9e79f;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
  position: relative;
}

.story-block::before {
  content: '❝';
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 50px;
  color: #f0b429;
  line-height: 1;
}

.story-block .story-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-top: 10px;
}

.story-block .story-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e8d5c4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  overflow: hidden;
}

.story-block .story-avatar img,
.review-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-block .story-name {
  font-weight: 700;
  color: #72541d;
}

.story-block .story-meta {
  font-size: 14px;
  color: #888;
}

.story-block p {
  font-style: italic;
  color: #555;
}

/* Problem highlight */
.problem-box {
  background: #fdedec;
  border-left: 4px solid #c0392b;
  padding: 15px;
  border-radius: 0 8px 8px 0;
  margin: 15px 0;
}

.problem-box h3 {
  color: #c0392b !important;
  margin-top: 0 !important;
}

.problem-box ul {
  list-style: none;
  padding: 0;
}

.problem-box ul li {
  padding: 6px 0 6px 25px;
  position: relative;
  font-size: 18px;
}

.problem-box ul li::before {
  content: '⚠';
  position: absolute;
  left: 0;
}

/* Solution highlight */
.solution-box {
  background: #eafaf1;
  border-left: 4px solid #27ae60;
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 25px 0;
}

.solution-box h3 {
  color: #27ae60 !important;
  margin-top: 0 !important;
}

/* Ingredients */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.ingredient-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ingredient-card .ing-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.ingredient-card h4 {
  color: #72541d;
  font-size: 16px;
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  text-align: center !important;
}

.progress-timeline {
  margin: 15px 0;
}

.timeline-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50px;
  bottom: -20px;
  width: 2px;
  background: #e0e0e0;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b68e46, #72541d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px 20px;
  flex: 1;
  border: 1px solid #e9ecef;
}

.timeline-content h4 {
  color: #72541d;
  margin-bottom: 5px;
  font-size: 16px;
}

.timeline-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

.timeline-content .weight-loss {
  display: inline-block;
  background: #27ae60;
  color: #fff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
}

/* Doctor quote */
.doctor-quote {
  background: linear-gradient(135deg, #fcf9f0 0%, #fdf6e8 100%);
  border: 2px solid #b68e46;
  border-radius: 12px;
  padding: 15px;
  margin: 15px 0;
  position: relative;
}

.doctor-quote .dq-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.doctor-quote .dq-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b68e46, #72541d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.doctor-quote .dq-name {
  font-weight: 700;
  color: #72541d;
  font-size: 16px;
  margin-bottom: 3px;
}

.doctor-quote .dq-title {
  font-size: 16px;
  color: #b68e46;
}

.doctor-quote .dq-verified {
  font-size: 14px;
  color: #27ae60;
  display: flex;
  align-items: center;
  gap: 4px;
}

.doctor-quote blockquote {
  font-style: italic;
  color: #444;
  line-height: 1.4;
  border: none;
  padding: 0;
  margin: 0;
}

/* Social proof / Reviews */
.reviews-section {
  margin: 15px 0;
}

.review-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
}

.review-name {
  font-weight: 700;
  color: #333;
  font-size: 16px;
}

.review-location {
  font-size: 14px;
  color: #888;
}

.review-stars {
  color: #f39c12;
  font-size: 14px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 16px;
  color: #555;
}

.review-text .review-result {
  display: inline-block;
  background: #eafaf1;
  color: #27ae60;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
}

.review-ba {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.review-ba-img {
  width: 80px;
  height: 100px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #666;
}

.review-ba-img.before {
  background: #fde8e8;
}

.review-ba-img.after {
  background: #e8fde8;
}

.verified-purchase {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #27ae60;
  margin-top: 8px;
}

/* WhatsApp screenshots */
.whatsapp-block {
  background: #e5ddd5;
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
}

.wa-message {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
  position: relative;
}

.wa-message:last-child {
  margin-bottom: 0;
}

.wa-message.incoming {
  background: #fff;
  border-top-left-radius: 0;
  margin-right: auto;
}

.wa-message.outgoing {
  background: #dcf8c6;
  border-top-right-radius: 0;
  margin-left: auto;
}

.wa-time {
  font-size: 14px;
  color: #999;
  text-align: right;
  margin-top: 4px;
}

.wa-header {
  font-size: 14px;
  color: #888;
  text-align: center;
  margin-bottom: 10px;
}

/* Quiz block */
.quiz-section {
  background: linear-gradient(135deg, #72541d 0%, #b9924e 100%);
  border-radius: 12px;
  padding: 15px;
  margin: 15px 0;
  color: #fff;
}

.quiz-section h3 {
  color: #fff !important;
  text-align: center;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 5px !important;
}

.quiz-subtitle {
  text-align: center !important;
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 25px;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-question {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 1023.9px) {
  .quiz-options {
    max-width: 660px;
    margin-inline: auto;
  }
}

.quiz-option {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
  text-align: center;
}

.quiz-option:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #f9e79f;
}

.quiz-option.selected {
  background: rgba(249, 231, 79, 0.2);
  border-color: #f9e79f;
}

.quiz-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.quiz-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.quiz-dot.active {
  background: #f9e79f;
}

.quiz-dot.completed {
  background: #00ee65;
}

.quiz-result {
  display: none;
  text-align: center;
}

.quiz-result.active {
  display: block;
}

.quiz-result-number {
  font-size: 48px;
  font-weight: 900;
  color: #f9e79f;
}

@media screen and (max-width: 1023.9px) {
  .quiz-result-number {
    font-size: 34px;
  }
}

.quiz-result-text {
  font-size: 16px;
  margin: 10px 0 20px;
}
.quiz-result-text strong {
  color: #563a07;
}
/* CTA sections */
.cta-section {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h3 {
  color: #fff !important;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px !important;
  position: relative;
}

.cta-subtitle {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 15px;
  position: relative;
}

.cta-new-price small {
  font-size: 16px;
  font-weight: 400;
}

.cta-savings {
  display: inline-block;
  background: #f9e79f;
  color: #c0392b;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 5px;
}

.cta-button {
  display: inline-block;
  background: #f9e79f;
  color: #c0392b;
  padding: 16px 50px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767.9px) {
  .cta-button {
    padding: 16px 20px;
    font-size: 16px;
  }
}

.cta-guarantee-text {
  font-size: 16px;
  opacity: 0.8;
  margin-top: 15px;
  position: relative;
}

/* Order form */
.order-form-section {
  background: #fff;
  border: 3px solid #c0392b;
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 5px 30px rgba(192, 57, 43, 0.15);
}

.order-form-section h3 {
  text-align: center;
  color: #c0392b !important;
  font-size: 20px;
  margin-bottom: 20px !important;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s;
  font-family: 'Open Sans', Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #b68e46;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bottom-btn-link {
  width: 100%;
  padding: 16px;
  background-color: #c0392b;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  margin-inline: auto;
  text-align: center;
  max-width: 320px;
  margin-top: 15px;
  transition: all 0.3s;
}

.form-submit-btn:hover,
.bottom-btn-link:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* Scarcity / FOMO */
.scarcity-bar {
  background: #fef9e7;
  border: 2px solid #f0b429;
  border-radius: 10px;
  padding: 15px 20px;
  margin: 20px 0;
  text-align: center;
}

.scarcity-bar .city-name {
  font-weight: 700;
  color: #c0392b;
  font-size: 20px;
  margin-bottom: 15px;
  display: block;
}

@media screen and (max-width: 479.9px) {
  .scarcity-bar .city-name {
    font-size: 18px;
  }
}

.scarcity-bar .stock-count {
  font-size: 28px;
  font-weight: 900;
  color: #c0392b;
  display: block;
  margin: 5px 0;
}

.scarcity-progress {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 10px;
}

.scarcity-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  border-radius: 4px;
  transition: width 1s;
}

/* Live notifications */
.live-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  transform: translateX(-120%);
  transition: transform 0.5s ease;
  max-width: 320px;
  border-left: 4px solid #27ae60;
}

.live-notification.show {
  transform: translateX(0);
}

.live-notification .notif-icon {
  font-size: 24px;
}

.live-notification .notif-text {
  font-size: 14px;
  color: #333;
}

.live-notification .notif-text strong {
  color: #27ae60;
}

.live-notification .notif-time {
  font-size: 12px;
  color: #aaa;
}

/* Timer */
.timer-section {
  background: #a27e3e;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  color: #fff;
}

.timer-label {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.timer-unit {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 15px;
  min-width: 60px;
}

.timer-unit .timer-number {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}

.timer-unit .timer-text {
  font-size: 12px;
  opacity: 0.6;
  text-transform: uppercase;
}

/* Guarantee section */
.guarantee-section {
  margin: 30px 0;
}

.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.guarantee-card {
  background: #fff;
  border: 2px solid #815811;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.guarantee-card .gc-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.guarantee-card h4 {
  color: #72541d;
  font-size: 16px;
  margin-bottom: 8px;
}

.guarantee-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  text-align: center !important;
}

/* Comments section */
.comments-section {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px 15px;
  margin: 25px auto 0;
  max-width: 1000px;
}

.article-body h3.comments-section-title {
  color: #333 !important;
  font-size: 18px;
  margin-bottom: 15px !important;
}

.comment {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e9ecef;
}

.comment-live {
  width: 100%;
  max-width: 250px;
  margin-block: 15px;
}

.comment-live picture,
.comment-live img {
  display: block;
  max-width: 100%;
  height: auto;
}

.comment:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.comment-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
}

.comment-avatar.rt img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.comment-body .comment-name {
  font-weight: 700;
  font-size: 18px;
  color: #333;
}

.comment-body .comment-date {
  font-size: 18px;
  color: #aaa;
}

.comment-body .comment-text {
  font-size: 18px;
  color: #555;
  margin-top: 5px;
}

.comment-body .comment-likes {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 999;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta .fc-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.floating-cta .fc-text span {
  color: #f9e79f;
  font-weight: 900;
}

.floating-cta .fc-btn {
  background: #f9e79f;
  color: #c0392b;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
}

.floating-cta .fc-btn:hover {
  background: #fff;
}

/* Separator */
.section-sep {
  text-align: center;
  margin: 30px 0;
  color: #ccc;
  font-size: 20px;
}

/* Highlight text */
.highlight {
  background: linear-gradient(180deg, transparent 60%, #f9e79f 60%);
  padding: 0 2px;
}

.red-highlight {
  background: linear-gradient(180deg, transparent 60%, #fdcece 60%);
  padding: 0 2px;
}

/* Responsive */
@media screen and (max-width: 1023.9px) {
  .article-body {
    padding: 15px;
  }
}

@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 22px;
  }

  .hero-stats {
    gap: 15px;
  }

  .hero-stat .number {
    font-size: 24px;
  }

  .article-body h2 {
    font-size: 19px;
  }

  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-block .author-info p {
    text-align: center;
  }

  .hero-ba {
    flex-direction: row;
    gap: 10px;
  }

  .hero-ba-card .ba-img {
    width: 120px;
    height: 150px;
  }

  .cta-new-price {
    font-size: 34px;
  }

  .timer-unit {
    padding: 8px 10px;
    min-width: 50px;
  }

  .timer-unit .timer-number {
    font-size: 22px;
  }

  .floating-cta .fc-text {
    font-size: 12px;
  }

  .floating-cta .fc-btn {
    padding: 8px 18px;
    font-size: 12px;
  }

  .wa-message {
    max-width: 90%;
  }

  .live-notification {
    left: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    bottom: 70px;
  }
}

/* Product image placeholder */
.product-showcase {
  text-align: center;
  margin: 15px 0;
}

.product-img-placeholder {
  width: 250px;
  height: 300px;
  margin: 0 auto;
  background: linear-gradient(135deg, #6f4e37 0%, #8b6914 50%, #d4a574 100%);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(111, 78, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.product-img-placeholder::before {
  content: '☕';
  font-size: 60px;
  margin-bottom: 10px;
}

.product-img-placeholder .prod-name {
  font-size: 18px;
  text-align: center;
  line-height: 1.3;
}

.product-img-placeholder .prod-sub {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 5px;
}

.product-badge {
  background: #fcf9f0;
  border: 1px solid #b68e46;
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 14px;
  color: #72541d;
  font-weight: 600;
}

/* Certification block */
.cert-block {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.cert-item {
  text-align: center;
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 479.9px) {
  .cert-block {
    flex-direction: column;
    justify-content: start;
  }

  .cert-item {
    text-align: left;
  }
}

.cert-item .cert-icon {
  font-size: 30px;
  margin-right: 10px;
}

/* Agitation block */
@media screen and (min-width: 768px) {
  .cert-item {
    flex-direction: column;
  }

  .cert-item .cert-icon {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

.agitation-block {
  background: #fff5f5;
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
  border: 1px solid #fecaca;
}

.agitation-block p {
  color: #7f1d1d;
}

/* Discovery story */

.agitation-block p:last-child,
.discovery-block p:last-child {
  margin-bottom: 0;
}

.discovery-block {
  background: linear-gradient(135deg, #fef9e7 0%, #fff8e1 100%);
  border-radius: 12px;
  padding: 15px;
  margin: 15px 0;
  border: 1px solid #f0d78c;
}

.discovery-block h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #8b6914 !important;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table th {
  background: #72541d;
  color: #fff;
  padding: 12px 15px;
  font-size: 14px;
}

.comparison-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #e9ecef;
  font-size: 14px;
}

.comparison-table tr:nth-child(even) {
  background: #f8f9fa;
}

.comparison-table .check {
  color: #27ae60;
  font-weight: 700;
}

.comparison-table .cross {
  color: #e74c3c;
  font-weight: 700;
}

/* Package options */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.package-card {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.package-card:hover {
  border-color: #b68e46;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package-card.popular {
  border-color: #c0392b;
  box-shadow: 0 5px 20px rgba(192, 57, 43, 0.2);
}

.package-card.popular::before {
  content: 'NAJPOPULARNIJI';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #c0392b;
  color: #fff;
  padding: 3px 15px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.package-card .pkg-name {
  font-weight: 700;
  color: #72541d;
  margin-bottom: 5px;
}

.package-card .pkg-amount {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.package-card .pkg-old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 14px;
}

.package-card .pkg-new-price {
  font-size: 28px;
  font-weight: 900;
  color: #c0392b;
}

.package-card .pkg-per {
  font-size: 12px;
  color: #888;
}

.package-card .pkg-save {
  display: inline-block;
  background: #eafaf1;
  color: #27ae60;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
}

.klix-header-wrap {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* Верхняя красная полоска */
.klix-top-strip {
  background: #e8000d;
  padding: 5px 0;
}

.klix-top-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.klix-top-strip span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
}

.klix-top-strip a {
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  margin-left: 14px;
  opacity: 0.9;
}

/* Основная шапка с логотипом */
.klix-main-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.klix-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  max-width: 70px;
}

.klix-logo img {
  max-width: 100%;
}

.klix-logo-ba {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-left: 3px;
  align-self: flex-end;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.klix-header-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.klix-header-meta .klix-date {
  font-size: 14px;
  color: #888;
}

.klix-header-meta .klix-weather {
  font-size: 12px;
  color: #555;
}

/* Навигационная полоска */
.klix-nav-bar {
  background: #6c4c18;
  border-bottom: 3px solid #ab8b52;
  position: relative;
}

.klix-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  flex-wrap: wrap;
  height: 37px;
}

.klix-nav-inner a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.15s;
  display: block;
}

.header__burger {
  display: none;
}

@media screen and (max-width: 456.9px) {
  .klix-nav-inner {
    padding-right: 60px;
  }

  .header__burger {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
  }

  .header__burger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
}

.klix-nav-inner a:hover {
  background: #ab8b52;
}

.klix-nav-inner a.active {
  background: #ab8b52;
}

/* Хлебные крошки / категория статьи */
.klix-breadcrumb {
  background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 0;
}

.klix-breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.klix-breadcrumb-inner a {
  color: #e8000d;
  text-decoration: none;
  font-weight: 600;
}

.klix-breadcrumb-inner a:hover {
  text-decoration: underline;
}

.klix-breadcrumb-inner .sep {
  color: #ccc;
}

/* Мета статьи (автор, время, читатели) */
.klix-article-meta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
}

.klix-article-meta .klix-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.klix-article-meta .klix-author strong {
  color: #1a1a1a;
}

.klix-article-meta .klix-author .verified {
  color: #e8000d;
  font-size: 12px;
  background: #fff0f0;
  border: 1px solid #e8000d;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 700;
}

.klix-article-meta .klix-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #999;
}

.klix-article-meta .klix-stats span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.klix-article-meta .klix-stats strong {
  color: #555;
  font-weight: 600;
}

.faq-list {
  margin: 0;
  padding: 0;
}

.faq-item {
  border: 1px solid #e0eaf3;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 3px 12px rgba(46, 134, 193, 0.12);
}

.faq-item.open {
  border-color: #b68e46;
  box-shadow: 0 3px 14px rgba(46, 134, 193, 0.18);
}

.faq-question {
  width: 100%;
  background: #f7fbfe;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #72541d;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.faq-item.open .faq-question {
  background: #fdf6e8;
  color: #72541d;
}

.faq-question:hover {
  background: #fdf6e8;
}

.faq-arrow {
  font-size: 12px;
  color: #b68e46;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px 20px;
  background: #fff;
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  animation: faqFadeIn 0.25s ease;
}

.faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
  text-align: left !important;
}

.faq-item.open .faq-answer {
  display: block;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Подсвеченные блоки внутри ответов */
.faq-highlight {
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
}

.faq-highlight.green {
  background: #eafaf1;
  border-left: 4px solid #27ae60;
  color: #1e8449;
}

.faq-highlight.red {
  background: #fdedec;
  border-left: 4px solid #c0392b;
  color: #922b21;
}

/* Список внутри ответа */
.faq-list-inner {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.faq-list-inner li {
  padding: 7px 0 7px 4px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}

.faq-list-inner li:last-child {
  border-bottom: none;
}

.klix-meta-divider {
  max-width: 780px;
  margin: 12px auto 0;
  height: 1px;
  background: #ececec;
}

@media (max-width: 600px) {
  .klix-logo-text {
    font-size: 28px;
  }

  .klix-nav-inner a {
    font-size: 14px;
    padding: 9px 10px;
  }

  .klix-article-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.comment-form-wrapper {
  margin-top: 32px;
  padding: 24px;
  background: #f4f8fb;
  border-radius: 12px;
  border: 1px solid #d6e4f0;
}

.comment-form-wrapper h4 {
  margin: 0 0 16px 0;
  font-size: 16px;
  color: #72541d;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-input,
.comment-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c0d6e8;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s;
  resize: none;
}

.comment-input:focus,
.comment-textarea:focus {
  outline: none;
  border-color: #b68e46;
}

.comment-submit-btn {
  align-self: flex-start;
  padding: 11px 28px;
  background: #b68e46;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
}

.comment-submit-btn:hover {
  background: #e2be7b;
}

.comment-submit-btn:active {
  transform: scale(0.97);
}

.comment-success {
  margin-top: 12px;
  color: #1a7a4a;
  font-size: 14px;
  font-weight: 600;
}

.comment-new {
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Кнопка лайка */
.like-btn {
  background: none;
  border: 1px solid #d6e4f0;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 13px;
  cursor: pointer;
  color: #555;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.like-btn:hover {
  background: #fdf6e8;
  border-color: #b68e46;
  color: #b68e46;
}

.like-btn.liked {
  background: #b68e46;
  border-color: #b68e46;
  color: #fff;
}

.like-btn.liked:hover {
  background: #e2be7b;
}

.like-btn.pop {
  animation: likePop 0.25s ease;
}

@keyframes likePop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

.comment-form-wrapper {
  margin-top: 32px;
  padding: 24px;
  background: #f4f8fb;
  border-radius: 12px;
  border: 1px solid #d6e4f0;
}

.comment-form-wrapper h4 {
  margin: 0 0 16px 0;
  font-size: 16px;
  color: #72541d;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-input,
.comment-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c0d6e8;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: #333;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s;
  resize: none;
}

.comment-input:focus,
.comment-textarea:focus {
  outline: none;
  border-color: #b68e46;
}

.comment-submit-btn {
  align-self: flex-start;
  padding: 11px 28px;
  background: #b68e46;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
}

.comment-submit-btn:hover {
  background: #e2be7b;
}

.comment-submit-btn:active {
  transform: scale(0.97);
}

.comment-success {
  margin-top: 12px;
  color: #1a7a4a;
  font-size: 14px;
  font-weight: 600;
}

.comment-new {
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rd-order-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}

:root {
  --rd-form-primary: rgb(21, 251, 238);
  --rd-form-primary-hover: rgb(34 212 202);
  --rd-form-secondary: rgb(27, 27, 77);
  --rd-form-gray: rgba(255, 255, 255, 0.5);
  --rd-form-shadow: rgba(50, 118, 71, 0.1);
}

.rd-order {
  position: relative;
  color: #72541d;
  border-radius: 20px;
  border: 2px solid #72541d;
  padding: 20px 15px 20px;
  width: 100%;
  max-width: 720px;
}

.rd-order__wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .rd-order {
    padding: 20px 25px;
  }

  .rd-order__wrapper {
    gap: 30px;
  }
}

.rd-order__content {
  flex-basis: 330px;
  flex-grow: 1;
}

.rd-order__product {
  position: relative;
  flex-basis: 220px;
}

.rd-order__pack {
  display: block;
  width: 100%;
  max-width: 100%;
}

.rd-order .rd-price {
  margin-bottom: 22px;
}

/*Price*/
.rd-price {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  width: 100%;
}

.rd-price__item {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.rd-price__line {
  display: block;
  flex-shrink: 0;
  width: 1px;
  background-color: #72541d;
}

.rd-price__title {
  font-size: 18px;
  font-weight: 400;
  color: #1b1b4d;
  text-align: center !important;
}

.article-body h3.rd-price__title,
.article-body p.rd-price__value {
  margin: 0;
}

.article-body p.rd-price__value {
  font-size: 20px;
}

.rd-price__title--old {
  font-weight: 300;
  color: rgba(27, 27, 77, 0.526);
}

.rd-price__value {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0;
  color: red;
  text-align: center !important;
}

.rd-price__value--old {
  font-weight: 300;
  color: rgba(70, 70, 70, 0.526);
  text-decoration-line: line-through;
}

:root {
  --rd-modal-overlay: rgba(0, 0, 0, 0.8);
  --rd-modal-primary: rgb(27, 27, 77);
  --rd-modal-secondary: rgb(51, 103, 164);
  --rd-modal-accent: rgb(237, 31, 1);
  --rd-modal-accent-hover: rgb(182, 24, 1);
  --rd-modal-gray: rgba(145, 145, 145, 0.5);
  --rd-modal-gradient: linear-gradient(
    180deg,
    var(--rd-modal-secondary),
    var(--rd-modal-primary) 100%
  );
}

/*Form*/
.rd-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.rd-form__label,
.rd-form__input {
  width: 100%;
}

.rd-form__input {
  font-size: 18px;
  text-align: center;
  color: var(--rd-form-secondary);
  border-radius: 100px;
  box-shadow: 0 5px 20px 0 var(--rd-form-shadow);
  background: white;
  border: 1px solid #8b6914;
  outline: none;
  padding: 15px 24px;
}

.rd-form__input::placeholder {
  color: #8b6914;
}

.rd-form__button {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #c0392b;
  border: none;
  border-radius: 100px;
  outline: none;
  cursor: pointer;
  padding: 15px 24px;
  transition: transform 0.4s;
  text-transform: uppercase;
}

.rd-form__button:hover {
  transform: scale(1.05);
}

.prod-bottle {
  width: 220px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .rd-order {
    width: 100%;
    max-width: 400px;
  }

  .rd-order__wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .rd-order__sale {
    font-size: 38px;
    right: -40px;
  }

  .rd-order__product {
    flex-basis: auto;
    width: 180px;
  }

  .prod-bottle {
    width: 180px;
  }

  .rd-order__content {
    flex-basis: auto;
    width: 100%;
  }

  .rd-price {
    justify-content: space-evenly;
  }

  .rd-price__item {
    text-align: center;
  }
}

@media (max-width: 479.9px) {
  .rd-order__product,
  .prod-bottle {
    width: 160px;
  }

  .rd-order__sale {
    font-size: 30px;
  }

  .rd-price__title {
    font-size: 14px;
  }

  .rd-price__value {
    font-size: 28px;
  }

  .rd-form__input,
  .rd-form__button {
    font-size: 16px;
  }

  .ord_button {
    font-size: 20px !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.scroll {
  display: block;
  max-width: 40px !important;
  transform: translateX(0);
  animation: moving 2s infinite;
  margin: 0 auto !important;
}

@keyframes moving {
  0% {
    transform: translateX(10px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(10px);
  }
}

.scroll-container {
  width: 100%;
}

.scroll-table-wrapper {
  width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
}

.comparison-table {
  min-width: 470px;
  border-collapse: collapse;
  margin: 0 auto;
}

.comparison-table th,
.comparison-table td {
  min-width: 180px;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

@media screen and (min-width: 500px) {
  .scroll {
    display: none !important;
  }

  .scroll-table-wrapper {
    max-width: 100%;
  }

  .comparison-table {
    width: 100%;
  }
}

@media screen and (max-width: 767.9px) {
  .article-body p,
  .problem-box ul li,
  .faq-question,
  .comment-body .comment-text,
  .comment-body .comment-name,
  .comment-body .comment-date {
    text-align: left;
    font-size: 16px;
  }
}

.klix-breadcrumb-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.klix-breadcrumb-inner a,
.klix-breadcrumb-inner .sep {
  flex-shrink: 0;
}

.klix-breadcrumb-inner span:last-child {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.text-link {
  color: #ca9616;
  font-weight: bold;
}

.text-link:hover {
  text-decoration: none;
}

.scroll-container {
  width: 100%;
  margin-bottom: 15px;
}

.scrolled-img {
  display: block;
  min-width: 600px;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
}

.scroll-img-wrapper {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
  box-sizing: border-box;
  margin-bottom: 15px;
  border-radius: 12px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.scroll.img-scroll {
  display: block !important;
}

@media screen and (min-width: 630px) {
  .scroll.img-scroll {
    display: none !important;
  }

  .scroll-img-wrapper {
    width: 100%;
    max-width: 750px;
  }

  .scrolled-img {
    max-width: 100%;
    width: 100%;
    display: block;
  }
}

@media screen and (max-width: 599.9px) {
  .timeline-item::before {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
    align-items: center;
    border: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px 15px;
  }

  .article-body .timeline-content p {
    text-align: center !important;
  }

  .timeline-content {
    padding: 0;
    border: none;
    background: none;
    text-align: center;
  }
}

.comment-bottom-link {
  color: inherit;
  text-decoration: none;
}

.comment-bottom-link:hover {
  text-decoration: underline;
}

.dok-img-container {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.dok-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.content-img-wrapper {
  max-width: 750px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .article-body p.rd-price__value {
    font-size: 30px;
  }

  .author-block .author-info p,
  .doctor-quote blockquote,
  h4,
  .end-text,
  .doctor-quote .dq-name,
  .quiz-question,
  .quiz-result-text,
  .review-text,
  .review-name {
    font-size: 18px !important;
  }
}

@media screen and (min-width: 1024px) {
  .klix-header-meta .klix-date,
  .klix-nav-inner a,
  .klix-breadcrumb-inner,
  .klix-article-meta .klix-author,
  .klix-article-meta .klix-stats,
  .hero-badge,
  .product-badge,
  .doctor-quote .dq-verified,
  .ingredient-card p,
  .cert-item,
  .comparison-table td,
  .comparison-table th,
  .timeline-content p,
  .timeline-content .weight-loss,
  .timeline-marker,
  .story-block .story-meta,
  .wa-header,
  .wa-message,
  .wa-time,
  .review-location,
  .verified-purchase,
  .scarcity-bar div,
  .guarantee-card p,
  .comment-bottom-link {
    font-size: 16px !important;
  }

  .review-stars {
    font-size: 22px;
  }

  .klix-article-meta .klix-author .verified,
  .review-text .review-result,
  .like-btn {
    font-size: 14px;
  }

  .comments-section {
    padding: 25px;
  }

  .article-body h3.comments-section-title {
    font-size: 20px;
  }

  .klix-nav-inner {
    height: 42px;
  }

  .author-block .author-info p,
  .doctor-quote blockquote,
  h4,
  .end-text {
    font-size: 18px !important;
  }

  .comment-avatar {
    width: 50px;
    height: 50px;
  }

  .article-body p.rd-price__value {
    font-size: 35px;
  }

  .ev-feedback__title {
    font-size: 20px;
  }
}

@media screen and (max-width: 599.9px) {
  .dok-img {
    width: 150px !important;
    height: 150px !important;
    border-radius: 50% !important;
  }

  .dok-img-container {
    width: fit-content;
    margin-inline: auto;
    box-shadow: none;
  }
}

@media screen and (max-width: 574.9px) {
  .product-badge {
    width: 100%;
    max-width: 350px;
    padding: 10px 15px;
  }
}

@media screen and (min-width: 445px) and (max-width: 767.9px) {
  .guarantee-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (min-width: 485px) and (max-width: 767.9px) {
  .ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ingredient-card,
  .guarantee-card {
    width: 48%;
  }
}

@media screen and (max-width: 1023.9px) {
  .content-img-wrapper {
    max-width: 550px;
    margin-inline: auto;
  }

  .content-img {
    width: 100%;

    object-fit: cover;
    object-position: top center !important;
    border-radius: 12px;
    display: block;
  }

  .dok-img {
    height: unset !important;
  }

  .hero-img-wrapper {
    max-width: 550px !important;
  }
}

@media screen and (max-width: 599.9px) {
  .review-card .content-img-wrapper {
    height: unset;
  }
}

.inL_789438 {
  width: 100%;
  max-width: 750px;
  margin-inline: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.inL_536610 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.inL_610551 {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.inL_994241 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.inL_984774 {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.inL_141875 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.inL_704040 {
  width: 100%;
  margin-bottom: 15px;
}

.inL_105377 {
  display: block;
}

.inL_144610 {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.inL_79985 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.inL_44810 {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.inL_164018 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.inL_13670 {
  font-size: 40px;
  margin-bottom: 10px;
}

.inL_6943 {
  font-size: 14px;
  opacity: 0.8;
}

.inL_593842 {
  color: #ffca00;
}

.inL_65184 {
  color: #ffca00;
}

.inL_325145 {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

.inL_542124 {
  font-size: 16px;
  opacity: 0.8;
}

.inL_891612 {
  font-size: 16px;
  margin-top: 8px;
}

.inL_734508 {
  margin-top: 15px;
  display: inline-block;
  text-decoration: none;
}

.inL_469665 {
  margin-top: 15px;
}

.inL_570267 {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.inL_243002 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.inL_636845 {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.inL_204979 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.inL_781084 {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.inL_945643 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.inL_743214 {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.inL_581463 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.inL_514372 {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.inL_400688 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.inL_705247 {
  margin-bottom: 0;
}

.inL_663879 {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.inL_421718 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 12px;
  display: block;
}

.inL_543493 {
  font-size: 14px;
}

.inL_980534 {
  font-size: 16px;
  color: #666;
}

.inL_185023 {
  width: 18%;
}

.inL_542132 {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.inL_814474 {
  margin-top: 15px;
}

.inL_98042 {
  color: red;
}

.inL_736529 {
  color: red;
  font-weight: bold;
}

.inL_936144 {
  color: red;
  font-weight: bold;
}

.inL_598276 {
  margin-top: 15px;
}

.inL_674928 {
  color: #666;
  margin-bottom: 15px;
}

.inL_451128 {
  text-align: center;
}

.inL_226114 {
  font-size: 16px;
  color: #555;
  margin: 0 auto 15px;
  text-align: center;
}

.inL_868922 {
  margin-block: 15px;
  display: block;
}

.inL_396704 {
  background: rgb(192, 57, 43);
  color: rgb(255, 255, 255);
  display: inline-block;
  text-decoration: none;
}

.inL_293097 {
  margin-left: 25px;
}

.inL_261682 {
  background: #e2be7b;
  color: #fff;
  padding: 4px 6px;
  border-radius: 3px;
  font-size: 14px;
}

.inL_53142 {
  margin-left: 25px;
}

.inL_916302 {
  background: #e2be7b;
  color: #fff;
  padding: 4px 6px;
  border-radius: 3px;
  font-size: 14px;
}

.inL_23807 {
  margin-left: 25px;
}

.inL_151736 {
  background: #e2be7b;
  color: #fff;
  padding: 4px 6px;
  border-radius: 3px;
  font-size: 14px;
}
.bel-footer-block {
  padding: 20px 0 !important;
}

.note {
  font-style: italic;
  text-align: center !important;
}
