/* Mirror.co.uk inspired tabloid style */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700;900&family=Roboto:wght@400;500;700;900&family=Merriweather:wght@400;700;900&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #111;
  background: #f4f4f4;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.main-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 0 24px rgba(0,0,0,0.06);
}

/* ---------- ADVERTORIAL BAR ---------- */
.advertorial-bar {
  background: #000;
  color: #fff;
  text-align: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
}

/* ---------- HEADER ---------- */
.page-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #e90000;
  color: #fff;
  padding: 14px 20px;
  border-bottom: 4px solid #b30000;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #fff;
}
.header-logo img { filter: brightness(0) invert(1); }
.header-tagline {
  margin: 2px 0 0 34px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.95;
}

/* ---------- HERO ---------- */
.hero-section {
  padding: 22px 20px 18px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.hero-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e90000;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 10px;
  margin-bottom: 14px;
}
.hero-category img { filter: brightness(0) invert(1); }

.hero-title {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.1;
  color: #111;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.hero-subtitle {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #333;
  margin: 0 0 18px;
  border-left: 4px solid #e90000;
  padding-left: 14px;
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 12px;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 24px 20px;
  background: #fff;
}
.section-white { background: #fff; }
.section-light { background: #f7f7f7; }
.section-cream { background: #fffaf0; border-top: 3px solid #e90000; }
.section-blue { background: #f0f6ff; border-left: 4px solid #003c8f; }

.section-divider {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 0;
}
.section-title {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.15;
  color: #111;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}
.section-title::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: #e90000;
  margin-bottom: 10px;
}
.section-text {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #222;
  margin: 0 0 14px;
}
.section-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 14px 0;
}

/* ---------- CALLOUT ---------- */
.info-callout {
  background: #fff4f4;
  border-left: 5px solid #e90000;
  padding: 14px 16px;
  margin: 16px 0;
}
.info-callout-text {
  margin: 0;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  color: #111;
}

/* ---------- SOFT CTA ---------- */
.soft-cta-block {
  padding: 22px 20px;
  text-align: center;
  background: #111;
  color: #fff;
}
.soft-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e90000;
  color: #fff;
  padding: 14px 22px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s;
}
.soft-cta-btn:hover { background: #b30000; }
.soft-cta-btn img { filter: brightness(0) invert(1); }
.soft-cta-subtext {
  margin: 10px 0 0;
  font-size: 12px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 4px solid #e90000;
  margin: 16px 0;
  overflow: hidden;
}
.product-card-img {
  width: 100%;
  height: auto;
  display: block;
}
.product-card-body { padding: 16px; }
.product-card-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 6px;
  color: #111;
}
.product-card-subtitle {
  font-size: 15px;
  color: #444;
  margin: 0 0 10px;
  line-height: 1.5;
}
.product-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  font-weight: 700;
}
.rating-stars { color: #e90000; font-size: 15px; letter-spacing: 1px; }

/* ---------- TESTIMONIAL / QUOTE ---------- */
.testimonial-quote {
  position: relative;
  background: #f7f7f7;
  border-left: 5px solid #e90000;
  padding: 18px 18px 16px 22px;
  margin: 16px 0;
}
.testimonial-quote-icon {
  position: absolute;
  top: -8px;
  left: 14px;
  font-family: Georgia, serif;
  font-size: 60px;
  color: #e90000;
  line-height: 1;
  font-weight: 900;
}
.testimonial-quote-text {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: #222;
  margin: 8px 0 12px;
}
.testimonial-quote-author {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  color: #111;
  margin: 0;
  letter-spacing: 0.5px;
}
.testimonial-quote-location {
  font-size: 12px;
  color: #888;
  margin: 2px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- BENEFITS ---------- */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.benefit-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}
.benefit-item:last-child { border-bottom: 0; }
.benefit-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: #e90000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.benefit-icon img { filter: brightness(0) invert(1); }
.benefit-text-title {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}
.benefit-text-desc {
  display: block;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* ---------- REVIEWS ---------- */
.review-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 14px;
  margin-bottom: 12px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e90000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif;
}
.review-name {
  display: block;
  font-weight: 900;
  font-size: 14px;
  color: #111;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
}
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #009e60;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.review-stars {
  color: #e90000;
  font-size: 15px;
  letter-spacing: 2px;
  margin: 4px 0;
}
.review-text {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: #222;
  margin: 0;
}

/* ---------- OFFER ---------- */
.offer-box {
  background: #fff;
  border: 2px solid #111;
  margin: 16px 0;
}
.offer-box-header {
  background: #e90000;
  color: #fff;
  padding: 10px 16px;
}
.offer-box-header-title {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.offer-box-body { padding: 18px 16px; }
.offer-box-product-name {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #111;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.offer-box-note {
  font-size: 13px;
  color: #666;
  margin: 0 0 14px;
}
.offer-box-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #e90000;
  color: #fff;
  padding: 15px;
  border: 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.15s;
}
.offer-box-btn:hover { background: #b30000; }
.offer-box-btn img { filter: brightness(0) invert(1); }
.offer-box-assurances {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.offer-assurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid #e5e5e5;
}
.faq-question {
  display: block;
  padding: 14px 0;
  color: #111;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  color: #e90000;
  font-weight: 900;
  font-size: 20px;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding: 0 0 14px; color: #444; font-size: 15px; line-height: 1.5; }
.faq-item.open .faq-answer { display: block; }

/* ---------- FOOTER ---------- */
.page-footer {
  background: #111;
  color: #fff;
  padding: 24px 20px;
  text-align: center;
}
.footer-brand {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #e90000;
  letter-spacing: 1px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 16px;
}
.footer-links a {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 8px 16px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
}
.footer-links a:hover {
  background: #e90000;
  color: #fff;
}
.footer-copy {
  font-size: 12px;
  color: #999;
  margin: 0;
}

/* Larger screens */
@media (min-width: 768px) {
  .hero-title { font-size: 44px; }
  .section-title { font-size: 32px; }
  .hero-subtitle { font-size: 20px; }
}

/* ---------- DISCLAIMER ---------- */
.affiliate-disclaimer {
  background: #f7f7f7;
  border-top: 3px solid #e90000;
  padding: 18px 20px;
  font-size: 13px;
  line-height: 1.5;
  color: #444;
}
.affiliate-disclaimer p { margin: 0; }
.affiliate-disclaimer strong {
  color: #111;
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
