/* ==========================================================================
   SAUDI MAGNESIUM ADVERTORIAL — GOLD SEAL-STYLE DESIGN SYSTEM
   Exact replica of goldsealsupplements.com layout adapted for Arabic RTL
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
  --bg-page: #f4f4f4;
  --bg-white: #ffffff;
  --bg-dark: #1a1a2e;
  --bg-dark-card: #16213e;
  --text-dark: #222222;
  --text-body: #444444;
  --text-muted: #777777;
  --text-light: #ffffff;
  --accent-orange: #e8600a;
  --accent-orange-hover: #d45500;
  --accent-green: #2ecc40;
  --accent-green-dark: #1b8a2a;
  --accent-red: #e02020;
  --accent-blue: #0074d9;
  --accent-gold: #f5a623;
  --accent-gold-dark: #d48b06;
  --border-light: #e0e0e0;
  --border-card: #ddd;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.75;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ============================================
   TOP GREEN ANNOUNCEMENT BAR
   ============================================ */
.top-bar {
  background: linear-gradient(90deg, #1b8a2a 0%, #2ecc40 100%);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ============================================
   NAVIGATION HEADER
   ============================================ */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--border-light);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.news-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-name {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.logo-name small {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-body);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent-orange); }

@media (max-width: 600px) {
  .nav-links { display: none; }
}

/* ============================================
   DARK NAVY HERO BANNER
   ============================================ */
.hero-banner {
  background-color: #0b1a2c; /* Dark Navy Blue */
  color: #ffffff;
  text-align: center;
  padding: 35px 20px 45px;
  position: relative;
}

.hero-label {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-title {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.hero-subtitle strong {
  font-weight: 800;
}

.hero-cta-btn {
  display: inline-block;
  background-color: transparent;
  color: #dfb350; /* Gold color */
  border: 1px solid #dfb350;
  padding: 8px 24px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-cta-btn:hover {
  background-color: #dfb350;
  color: #0b1a2c;
}

/* ============================================
   HERO AUTHOR & IMAGE
   ============================================ */
.author-line-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  margin-bottom: 25px;
}

.author-photo-big {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.author-meta {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: #444;
}

.author-meta strong {
  color: #111;
  font-weight: 800;
}

.author-badge {
  font-weight: 700;
  color: #222;
  margin-top: 3px;
  font-size: 0.85rem;
}

.hero-image-wrapper {
  margin-bottom: 35px;
  text-align: center;
  padding: 0 15px; /* Leave space at edges */
}

.hero-pharmacy-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.verified-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 2px;
  margin-bottom: 2px;
}

/* --- EDITORIAL BODY TEXT --- */
.editorial-body {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-card);
}

.editorial-body h2 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-dark);
  margin: 28px 0 12px 0;
  line-height: 1.4;
}

.editorial-body p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.85;
}

.editorial-body p strong {
  color: var(--text-dark);
}

.hook-text {
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--text-dark) !important;
}

/* --- WARNING BOXES (TRAPS) --- */
.warning-list {
  list-style: none;
  margin: 20px 0 28px 0;
}

.warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
  background: #fff8f0;
  border: 1px solid #ffe0c0;
  border-right: 5px solid var(--accent-orange);
  border-radius: var(--radius);
}

.warning-list .warn-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-list h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #c0392b;
  margin-bottom: 4px;
}

.warning-list p {
  font-size: 0.95rem !important;
  color: var(--text-body);
  margin-bottom: 0 !important;
  line-height: 1.7;
}

/* ============================================
   COMPARISON TABLE HEADER (WINNER #1)
   ============================================ */
.comparison-table {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 30px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* --- Feature checklist table (top of winner) --- */
.features-checklist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.features-checklist-table th,
.features-checklist-table td {
  padding: 10px 18px;
  border-bottom: 1px solid #f0f0f0;
  text-align: right;
}

.features-checklist-table th {
  background: #fafafa;
  font-weight: 800;
  color: var(--text-dark);
  width: 55%;
}

.features-checklist-table td {
  color: var(--accent-green-dark);
  font-weight: 700;
  text-align: center;
}

.features-checklist-table .check { color: var(--accent-green-dark); font-size: 1.1rem; }
.features-checklist-table .cross { color: var(--accent-red); font-size: 1.1rem; }

/* ============================================
   PRODUCT CARD (WINNER #1 — FULL CARD)
   ============================================ */
.product-card {
  background: #fff;
  border: 3px solid var(--accent-orange);
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(232, 96, 10, 0.15);
}

.card-rank-header {
  background: var(--accent-orange);
  color: #fff;
  padding: 14px 24px;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-rank-header .rank-num {
  font-size: 1.6rem;
}

/* --- Product top row: image + grade + rating --- */
.product-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 24px 20px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.product-image-box {
  flex: 0 0 180px;
  text-align: center;
}

.product-image-box img {
  max-height: 200px;
  object-fit: contain;
}

.grade-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 4px solid;
}

.grade-circle.grade-a {
  border-color: var(--accent-green);
  color: var(--accent-green-dark);
  background: #f0fff4;
}

.grade-circle.grade-b {
  border-color: #e6a817;
  color: #b8860b;
  background: #fffde7;
}

.grade-circle.grade-c {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: #fff5f5;
}

.grade-circle .grade-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
  color: var(--text-muted);
}

.grade-circle .grade-letter {
  font-size: 2.2rem;
  line-height: 1;
}

.rating-box {
  text-align: center;
}

.rating-box .rating-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.rating-box .rating-score {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}

.stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-box .votes {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Rating Progress Bars --- */
.rating-bars {
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.rating-bar-row:last-child { margin-bottom: 0; }

.bar-label {
  flex: 0 0 200px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.bar-track {
  flex: 1;
  height: 14px;
  background: #eee;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  border-radius: 7px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bar-fill.green { background: linear-gradient(90deg, #27ae60, #2ecc40); }
.bar-fill.orange { background: linear-gradient(90deg, #e67e22, #f5a623); }
.bar-fill.red { background: linear-gradient(90deg, #c0392b, #e74c3c); }
.bar-fill.blue { background: linear-gradient(90deg, #2980b9, #3498db); }

.bar-score {
  flex: 0 0 40px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dark);
}

@media (max-width: 600px) {
  .bar-label { flex: 0 0 130px; font-size: 0.8rem; }
}

/* --- PROS / CONS Section --- */
.pros-cons-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid #eee;
}

@media (max-width: 600px) {
  .pros-cons-section { grid-template-columns: 1fr; }
}

.pros-col, .cons-col {
  padding: 18px 24px;
}

.pros-col {
  border-left: 1px solid #eee;
}

.pros-col h4, .cons-col h4 {
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pros-col h4 { color: var(--accent-green-dark); }
.cons-col h4 { color: var(--accent-red); }

.pros-col ul, .cons-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros-col li, .cons-col li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.pros-col li::before {
  content: '✔';
  color: var(--accent-green-dark);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.cons-col li::before {
  content: '✖';
  color: var(--accent-red);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- BOTTOM LINE verdict --- */
.bottom-line-section {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.bottom-line-section h4 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.bottom-line-section p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* --- CTA Button (Visit Site / Order) --- */
.cta-section {
  padding: 18px 24px;
  text-align: center;
}

.btn-cta {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: var(--accent-orange);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}

.btn-cta:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: #888;
}

.btn-cta-secondary:hover {
  background: #666;
}

/* ============================================
   COMPETITOR CARDS (#2, #3, #4)
   ============================================ */
.competitor-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.competitor-rank-header {
  background: #333;
  color: #fff;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
}

/* ============================================
   DARK BOTTOM BANNER (#1 PRODUCT SPOTLIGHT)
   ============================================ */
.dark-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 50px 20px;
  text-align: center;
  margin: 40px 0 0 0;
}

.dark-banner h2 {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.dark-banner .subtitle {
  color: var(--accent-gold);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.dark-banner-product {
  max-width: 500px;
  margin: 0 auto 24px;
}

.dark-banner-product img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: var(--radius);
}

.dark-banner .stars-row {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.dark-banner .review-count {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.dark-banner .btn-cta {
  max-width: 440px;
  margin: 0 auto;
}

/* ============================================
   FLASH SALE PROMO LINK
   ============================================ */
.flash-sale-row {
  background: #fff3e0;
  border: 2px dashed var(--accent-orange);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin: 16px 24px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-orange);
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: var(--accent-orange); }
  50% { border-color: #f5a623; }
}

/* ============================================
   SOCIAL PROOF POPUP
   ============================================ */
.social-proof-popup {
  position: fixed;
  bottom: 80px;
  left: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  border: 1px solid #e0e0e0;
  border-right: 4px solid var(--accent-green);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 310px;
  z-index: 999;
  transform: translateX(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-proof-popup.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.popup-icon {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.popup-text h5 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1px;
}

.popup-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.popup-text .popup-link {
  font-size: 0.72rem;
  color: var(--accent-orange);
  font-weight: 700;
  display: block;
  margin-top: 3px;
}

/* ============================================
   FLOATING STICKY BOTTOM BAR
   ============================================ */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
  z-index: 1000;
  border-top: 2px solid var(--accent-orange);
  gap: 12px;
}

.float-info {
  flex: 1;
  min-width: 0;
}

.float-info h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.float-info p {
  color: #aaa;
  font-size: 0.75rem;
  margin: 0;
}

.float-btn {
  background: var(--accent-orange);
  color: #fff;
  font-weight: 900;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.float-btn:hover {
  background: var(--accent-orange-hover);
}

/* ============================================
   FAQ SECTION (EXACT STYLE)
   ============================================ */
.faq-wrapper {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 16px;
}

.faq-wrapper h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
  transition: background 0.2s;
}

.faq-question:hover { background: #f0f0f0; }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-muted);
}

.faq-answer {
  display: none;
  padding: 16px 20px;
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.8;
  border-top: 1px solid #eee;
}

/* ============================================
   EDITORIAL FOOTER
   ============================================ */
.site-footer {
  background: #111;
  color: #999;
  padding: 40px 20px 110px;
  font-size: 0.82rem;
  line-height: 1.8;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-disclosure {
  background: #1a1a1a;
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: #bbb;
  border: 1px solid #333;
  text-align: right;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  color: #ccc;
  font-weight: 600;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-orange); }

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 700px) {
  .article-headline h1 { font-size: 1.35rem; }
  .product-top-row { gap: 16px; padding: 16px; }
  .product-image-box { flex: 0 0 140px; }
  .grade-circle { width: 80px; height: 80px; }
  .grade-circle .grade-letter { font-size: 1.6rem; }
  .rating-box .rating-score { font-size: 1.4rem; }
  .rating-bars { padding: 12px 16px; }
  .pros-col, .cons-col { padding: 14px 16px; }
  .bottom-line-section { padding: 16px; }
  .cta-section { padding: 14px 16px; }
  .card-rank-header, .competitor-rank-header { padding: 10px 16px; font-size: 1rem; }
  .editorial-body { padding: 20px 18px; }
  .dark-banner h2 { font-size: 1.3rem; }
}

/* =========================================================================
   NEW ADVERTORIAL SECTIONS (BBB, TABLE, FLASH SALE, COLLAGE, WHY IT EXISTS)
   ========================================================================= */

/* --- BBB EDUCATIONAL SECTION --- */
.bbb-educational-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px 20px;
  margin-bottom: 30px;
  border: 1px solid var(--border-card);
}
.bbb-educational-section h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #333;
}
.highlight-text {
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000;
}
.bbb-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}
.mt-15 {
  margin-top: 25px;
}
.bbb-caption {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}
.blue-heading {
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- DIFFERENT TYPES SECTION --- */
.types-section {
  background-color: #fff;
  border: 1px solid var(--border-card);
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
}
.types-header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 1.1rem;
}
.types-content {
  padding: 20px;
}
.italic-text {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.type-item h5 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brain-badge {
  background-color: #e6f4ea;
  color: var(--success-color);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
}
.type-item p {
  color: #444;
  font-size: 0.95rem;
}

/* --- FLASH SALE BOX --- */
.flash-sale-box {
  background: linear-gradient(135deg, #102a1c, #1a422b);
  color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.flash-sale-header {
  color: #fbbc04;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.flash-title {
  color: #4ade80;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 20px;
}
.flash-text {
  font-size: 1.05rem;
  color: #e5e7eb;
  margin-bottom: 25px;
}
.flash-btn {
  display: inline-block;
  background-color: #34d399;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s, background-color 0.2s;
}
.flash-btn:hover {
  background-color: #10b981;
  transform: translateY(-2px);
}
.flash-footer {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 15px;
}
.flash-checks {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 0.85rem;
  color: #6ee7b7;
  flex-wrap: wrap;
}

/* --- ULTIMATE COMPARISON TABLE --- */
.ultimate-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.ultimate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  text-align: center;
}
.ultimate-table th {
  padding: 15px 10px;
  background-color: #f9f9f9;
  border-bottom: 2px solid #eaeaea;
  vertical-align: bottom;
  width: 15%;
}
.ultimate-table th:first-child {
  width: 25%;
  text-align: right;
  padding-right: 15px;
}
.ultimate-table th.hero-col {
  background-color: #f0fdf4;
  border-bottom: 2px solid #22c55e;
}
.ultimate-table img {
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}
.ultimate-table .prod-name {
  font-weight: bold;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.3;
}
.ultimate-table .no-bbb {
  color: #ef4444;
  background: #fee2e2;
  font-size: 0.7rem;
  padding: 3px 5px;
  border-radius: 4px;
  margin-top: 8px;
  display: inline-block;
  font-weight: bold;
}
.ultimate-table td {
  padding: 15px 10px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.ultimate-table td.feature-name {
  text-align: right;
  padding-right: 15px;
  font-weight: bold;
  color: #444;
  font-size: 0.95rem;
}
.ultimate-table td.hero-col {
  background-color: #f0fdf4;
}
.ultimate-table .check {
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.1rem;
}
.ultimate-table .x-mark {
  color: #ef4444;
  font-weight: bold;
  font-size: 1.1rem;
}
.ultimate-table td small {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-top: 4px;
}

/* --- YELLOW COLLAGE SECTION --- */
.yellow-collage-section {
  background-color: #fff9e6;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 12px;
}
.yellow-title {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.4;
  margin-bottom: 25px;
  font-weight: 900;
}
.collage-wrapper {
  margin-bottom: 25px;
}
.collage-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.yellow-subtitle {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 15px;
}
.yellow-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}
.yellow-btn {
  display: inline-block;
  background-color: #22c55e;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.yellow-btn:hover {
  transform: translateY(-2px);
}

/* --- WHY IT EXISTS SECTION --- */
.why-exists-section {
  background-color: #fff;
  padding: 0;
  margin-bottom: 40px;
}
.why-title {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.why-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 25px;
}
.features-list-detailed {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.features-list-detailed li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}
.features-list-detailed .check-icon {
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-footer {
  font-size: 1.05rem;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
}
