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

:root {
  --red: #d10a10;
  --dark: #0b1220;
  --ink: #1c1c1c;
  --muted: #6b7280;
  --border: #e5e7eb;
}

body {
  font-family: 'Noto Sans Devanagari', 'Segoe UI', Arial, sans-serif;
  line-height: 1.9;
  background: #f2f3f5;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ================= NEWS CHANNEL HEADER ================= */
.topbar {
  background: var(--dark);
  color: #fff;
  padding: 10px 0;
}

.topbar-inner,
.brandbar-inner,
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 18px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: .3px;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  padding: 3px 11px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 1px;
}

.live .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1.1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .15;
  }
}

.brandbar {
  background: #fff;
  border-bottom: 4px solid var(--red);
}

.brandbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  background-color: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  padding: 4px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.logo-text b {
  display: block;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.2px;
  color: #111;
  line-height: 1.25;
}

.logo-text span {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.header-product-logo {
  margin-top: 10px;
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* ---- ticker ---- */
.ticker {
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-label {
  background: #000;
  padding: 9px 16px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  z-index: 2;
}

.ticker-track {
  display: inline-flex;
  padding: 9px 0;
  font-size: 14.5px;
  font-weight: 600;
  animation: scroll 26s linear infinite;
}

.ticker-track span {
  padding: 0 26px;
}

.ticker-track span::before {
  content: "●";
  font-size: 8px;
  vertical-align: middle;
  margin-right: 12px;
  opacity: .75;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================= ARTICLE ================= */
.container {
  background: #fff;
  max-width: 860px;
  margin: 22px auto 40px;
  padding: 34px 40px 40px;
  box-shadow: 0 1px 14px rgba(0, 0, 0, .07);
  border-radius: 4px;
}

.kicker {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h1 {
  font-size: 33px;
  line-height: 1.42;
  font-weight: 800;
  color: #111;
  letter-spacing: -.3px;
  margin-bottom: 18px;
}

h1 em {
  font-style: normal;
  color: var(--red);
}

.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}

.byline b {
  color: #111;
  font-weight: 700;
}

.article p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #262626;
}

.article p.lead {
  font-size: 19.5px;
  font-weight: 600;
  color: #111;
}

.article h3 {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  line-height: 1.45;
  margin: 40px 0 18px;
  padding-left: 15px;
  border-left: 5px solid var(--red);
}

/* ---- highlights ---- */
.hl {
  background: linear-gradient(transparent 58%, #ffe680 58%);
  font-weight: 600;
  padding: 0 2px;
}

strong {
  font-weight: 700;
  color: #111;
}

.brand {
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}

.days {
  font-weight: 800;
  color: #111;
  background: #ffe680;
  padding: 1px 7px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ---- image slots ---- */
.img-box {
  background: transparent;
  border-radius: 12px;
  margin: 32px 0;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.img-box img {
  width: 100%;
  height: auto;
  display: block;
}

.img-box.narrow {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  min-height: 0;
}

.quote {
  border-left: 5px solid #ffd11a;
  background: #fffbeb;
  padding: 18px 22px;
  margin: 26px 0;
  font-size: 19px;
  font-weight: 600;
  color: #3f3000;
  border-radius: 0 6px 6px 0;
}

.benefits {
  background: #fff8f8;
  border: 1px solid #f7d4d4;
  border-radius: 8px;
  padding: 24px 26px;
  margin: 26px 0;
}

.benefits ul {
  list-style: none;
  margin: 0;
}

.benefits li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
  font-size: 17.5px;
  line-height: 1.75;
}

.benefits li:last-child {
  margin-bottom: 0;
}

.benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0f9d58;
  font-weight: 800;
  font-size: 16px;
}

.signature {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

/* =========================
   ORDER SECTION
========================= */
.order-section {
  width: 100%;
  margin: 45px 0 0;
  padding-top: 30px;
  border-top: 1px solid #e6e6e6;
}

.order-box {
  width: 100%;
  margin: 0;
  padding: 25px 22px;
  background: #fafafa;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  box-sizing: border-box;
}

.order-box h2 {
  margin: 0 0 7px;
  text-align: center;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 700;
  color: #222;
}

.order-subtitle {
  margin: 0 0 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #777;
}

/* PRICE */
.order-price {
  width: 100%;
  margin: 0 0 22px;
  padding: 14px;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-sizing: border-box;
}

.mrp-price {
  font-size: 14px;
  color: #888;
  line-height: 1.4;
}

.mrp-price span {
  text-decoration: line-through;
}

.offer-price {
  margin-top: 2px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
  color: #222;
}

.price-saving {
  margin-top: 3px;
  font-size: 12px;
  color: #39845a;
  font-weight: 600;
}

/* FORM */
.simple-form {
  width: 100%;
}

.form-group {
  width: 100%;
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 13px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  background: #fff;
  color: #333;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.form-group input {
  height: 45px;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #999;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group .error-msg {
  color: #d10a10;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-group input.input-error {
  border-color: #d10a10;
}

.order-button {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 5px;
  background: #222;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s ease;
}

.order-button:hover {
  background: #111;
}

.order-button:disabled {
  background: #666;
  cursor: not-allowed;
}

.form-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 11px;
  color: #888;
}

/* Success message */
.success-msg {
  display: none;
  text-align: center;
  padding: 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  margin-top: 16px;
}

.success-msg h3 {
  color: #16a34a;
  font-size: 20px;
  margin: 0 0 8px;
  border: none;
  padding: 0;
}

.success-msg p {
  color: #333;
  font-size: 14px;
  margin: 0;
}

/* =========================
   SIMPLE REVIEWS
========================= */
.reviews-section {
  width: 100%;
  max-width: 100%;
  margin: 45px auto 0;
  padding-top: 30px;
  border-top: 1px solid #e6e6e6;
  box-sizing: border-box;
}

.reviews-title {
  margin: 0 0 25px;
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  color: #141414;
  font-weight: 700;
}

.reviews-title span {
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

.reviews-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card {
  width: 100%;
  padding: 18px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-sizing: border-box;
}

.review-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}

.review-user {
  display: flex;
  align-items: center;
  min-width: 0;
}

.review-user h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #222;
  font-weight: 700;
  border: none;
  padding: 0;
}

.review-user h3 span {
  font-weight: 400;
  color: #777;
}

.review-user small {
  display: block;
  margin-top: 2px;
  color: #39845a;
  font-size: 11px;
  font-weight: 600;
}

.stars {
  color: #e9a51a;
  font-size: 15px;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.review-card p {
  width: 100%;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #444;
}

/* =========================
   SIMPLE FOOTER
========================= */
.simple-footer {
  width: 100%;
  margin-top: 55px;
  padding: 30px 20px 35px;
  border-top: 3px solid var(--red);
  background: #fafafa;
  text-align: center;
  color: #888;
  font-size: 12px;
  box-sizing: border-box;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 80px;
  height: auto;
  border-radius: 6px;
}

.footer-logo img {
  width: 80px;
  height: auto;
  border-radius: 6px;
}

.copyright {
  margin: 0 0 12px;
  color: #666;
}

.footer-disclaimer {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 15px;
  line-height: 1.7;
  color: #999;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #777;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.floating-order-btn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #198754, #28a745);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Noto Sans Devanagari', 'Segoe UI', Arial, sans-serif;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.inline-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #198754, #28a745);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 35px;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.35);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulseBtn 2s infinite;
}

.inline-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(40, 167, 69, 0.45);
}

@keyframes pulseBtn {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Product image in order section */
.product-img {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 720px) {
  .container {
    margin: 12px 10px 26px;
    padding: 22px 20px 28px;
  }

  h1 {
    font-size: 25px;
    line-height: 1.45;
  }

  .article p {
    font-size: 17px;
  }

  .article p.lead {
    font-size: 18px;
  }

  .article h3 {
    font-size: 20.5px;
    margin: 32px 0 15px;
  }


  .logo-text b {
    font-size: 18px;
  }

  .quote {
    font-size: 17.5px;
    padding: 15px 18px;
  }

  .benefits {
    padding: 18px 18px;
  }

  .benefits li {
    font-size: 16.5px;
    padding-left: 28px;
  }

  .img-box {
    margin: 22px 0;
  }
}

@media (max-width: 640px) {
  .order-section {
    margin-top: 35px;
    padding-top: 25px;
  }

  .order-box {
    padding: 20px 16px;
    border-radius: 7px;
  }

  .order-box h2 {
    font-size: 20px;
  }

  .order-subtitle {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  .order-button {
    height: 46px;
    font-size: 15px;
  }

  /* REVIEWS */
  .reviews-section {
    margin-top: 35px;
    padding-top: 25px;
  }

  .reviews-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .reviews-title span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
  }

  .review-card {
    padding: 14px;
    border-radius: 7px;
  }

  .review-header {
    align-items: flex-start;
  }

  .review-user h3 {
    font-size: 14px;
  }

  .stars {
    font-size: 13px;
    letter-spacing: 0;
  }

  .review-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* FOOTER */
  .simple-footer {
    margin-top: 40px;
    padding: 25px 15px 30px;
  }

  .footer-disclaimer {
    font-size: 11px;
  }

  .floating-order-btn {
    font-size: 20px;
    padding: 10px 14px;
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 22.5px;
  }

  .topbar-inner {
    font-size: 11px;
  }

  .ticker-label {
    padding: 8px 11px;
    font-size: 11.5px;
  }

  .ticker-track {
    font-size: 13.5px;
  }
}