/* ==========================================================================
   NORDISKA HÄLSO-TRIBUNEN - ADVERTORIAL STYLESHEET
   Aesthetic: The New York Times / Svenska Dagbladet Editorial Journalism
   Fully Responsive | Mobile-First | Google Ads & FB Ads Compliant
   ========================================================================== */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #fbfaf8;
  --bg-tertiary: #f4f1eb;
  --bg-accent: #f0ede6;
  --text-main: #111111;
  --text-body: #222222;
  --text-muted: #555555;
  --text-light: #767676;
  --border-dark: #111111;
  --border-light: #e5e2db;
  --border-subtle: #ede9e1;
  --brand-red: #b91c1c;
  --brand-red-hover: #991b1b;
  --brand-navy: #0f172a;
  --accent-green: #15803d;
  --font-serif: "Merriweather", "Georgia", "Times New Roman", serif;
  --font-display: "Playfair Display", "Didot", "Bodoni MT", Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1180px;
  --article-width: 780px;
  --transition: all 0.25s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-secondary);
  color: var(--text-body);
}

body {
  font-family: var(--font-serif);
  line-height: 1.75;
  background-color: var(--bg-primary);
  color: var(--text-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-red);
}

/* ==========================================================================
   TOP ANNOUNCEMENT & SPONSORED BAR (Google Ads Compliance)
   ========================================================================== */
.sponsored-notice-bar {
  background-color: #f5f4f0;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666666;
  padding: 6px 16px;
  text-align: center;
}

.sponsored-notice-bar span {
  color: var(--brand-red);
  margin-right: 6px;
}

/* ==========================================================================
   MASTHEAD (NEWSPAPER HEADER)
   ========================================================================== */
.masthead-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px 0;
}

.masthead-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-live-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.masthead-branding {
  text-align: center;
  padding: 18px 0 14px;
}

.masthead-logo-svg {
  width: 100%;
  max-width: 780px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Double Rules under Header */
.masthead-double-rules {
  border-top: 2px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  height: 5px;
  margin-top: 4px;
}

/* Navigation Categories Bar */
.newspaper-nav {
  border-bottom: 1px solid var(--border-dark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 0;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.newspaper-nav-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
}

.newspaper-nav-list a {
  text-decoration: none;
  color: var(--text-main);
  padding-bottom: 4px;
  position: relative;
}

.newspaper-nav-list a.active {
  color: var(--brand-red);
  border-bottom: 2px solid var(--brand-red);
}

.newspaper-nav-list a:hover {
  color: var(--brand-red);
}

/* ==========================================================================
   MAIN ARTICLE CONTAINER & LAYOUT
   ========================================================================== */
.article-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 60px;
}

.article-header {
  max-width: 920px;
  margin: 0 auto 30px;
  text-align: left;
}

.category-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 12px;
  position: relative;
  padding-left: 14px;
}

.category-badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--brand-red);
}

.article-main-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .article-main-title {
    font-size: 2.85rem;
  }
}

.article-deck {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 400;
}

/* Byline and Author Block */
.byline-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #e2dfd8;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #333;
}

.author-details {
  line-height: 1.4;
}

.author-name {
  font-weight: 700;
  color: var(--text-main);
}

.author-credentials {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.byline-metrics {
  color: var(--text-light);
  display: flex;
  gap: 14px;
  align-items: center;
}

.share-strip {
  display: flex;
  gap: 8px;
}

.share-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.share-btn:hover {
  background: #e4dfd3;
  color: var(--text-main);
}

/* ==========================================================================
   HERO IMAGE & EDITORIAL CAPTIONS
   ========================================================================== */
.hero-figure {
  margin: 24px 0 34px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  padding: 10px;
}

.hero-image-frame {
  overflow: hidden;
  position: relative;
  max-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.figure-caption {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 10px 4px 4px;
  line-height: 1.45;
  border-top: 1px solid var(--border-light);
  margin-top: 8px;
}

.caption-credit {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 6px;
}

/* ==========================================================================
   TWO-COLUMN EDITORIAL CONTENT GRID
   ========================================================================== */
.content-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .content-grid-layout {
    grid-template-columns: 68% 32%;
    gap: 48px;
  }
}

.main-article-content {
  font-size: 1.06rem;
  color: var(--text-body);
}

.main-article-content p {
  margin-bottom: 22px;
  text-align: justify;
  text-justify: inter-word;
}

/* Drop Cap on First Paragraph */
.drop-cap::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 4.4rem;
  line-height: 0.82;
  padding-top: 4px;
  padding-right: 12px;
  padding-bottom: 2px;
  color: var(--text-main);
  font-weight: 900;
}

.article-subheading {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.3;
  margin: 36px 0 16px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.45;
  font-style: italic;
  color: #111111;
  border-left: 4px solid var(--brand-red);
  padding: 14px 22px;
  margin: 28px 0;
  background-color: var(--bg-secondary);
}

.pull-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Editorial Note Box */
.editorial-callout {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--text-main);
  padding: 18px 20px;
  margin: 26px 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
}

.editorial-callout-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  color: var(--brand-red);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   MICRO-ENGAGEMENT 1: IPSS KLINISKT SJÄLVTEST (QUIZ)
   ========================================================================== */
.widget-box {
  background: #ffffff;
  border: 2px solid var(--border-dark);
  padding: 24px;
  margin: 32px 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.widget-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.widget-kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  margin-bottom: 4px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-main);
  font-weight: 800;
}

.quiz-progress-bar {
  height: 4px;
  background: var(--bg-tertiary);
  margin-bottom: 20px;
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 33%;
  background: var(--brand-red);
  transition: width 0.3s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.quiz-option-btn {
  background: #fdfdfd;
  border: 1px solid #d1ccc2;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-body);
  text-align: left;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quiz-option-btn:hover {
  background: #f3efe6;
  border-color: var(--border-dark);
}

.quiz-option-btn.selected {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  font-weight: 600;
}

.quiz-result-card {
  display: none;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 20px;
  border-radius: 4px;
  border-left: 4px solid var(--brand-red);
}

.quiz-result-score {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-red);
  margin-bottom: 8px;
}

.quiz-result-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 16px;
}

.quiz-cta-link {
  display: inline-block;
  background: var(--brand-red);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
}

.quiz-cta-link:hover {
  background: var(--brand-red-hover);
  color: #ffffff;
}

/* ==========================================================================
   MICRO-ENGAGEMENT 2: INTERACTIVE ANATOMICAL COMPARISON (BEFORE / AFTER)
   ========================================================================== */
.anatomy-comparison-container {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 20px;
  margin: 32px 0;
}

.comparison-toggle-bar {
  display: flex;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.comp-toggle-btn {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  background: #f7f5f0;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.comp-toggle-btn.active {
  background: var(--text-main);
  color: #ffffff;
}

.comp-view-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.comp-view-panel.active {
  display: block;
}

.anatomy-diagram-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 18px;
  border-radius: 4px;
}

@media (min-width: 600px) {
  .anatomy-diagram-card {
    grid-template-columns: 160px 1fr;
  }
}

.diagram-icon-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.diagram-badge {
  display: inline-block;
  padding: 4px 8px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 4px;
  text-transform: uppercase;
  margin-top: 8px;
}

.badge-risk {
  background: #fee2e2;
  color: #991b1b;
}

.badge-healthy {
  background: #dcfce7;
  color: #166534;
}

.diagram-info-list {
  list-style: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.55;
}

.diagram-info-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.diagram-info-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--brand-red);
  font-size: 1.1rem;
}

/* ==========================================================================
   MICRO-ENGAGEMENT 3: INGREDIENT BREAKDOWN ACCORDION
   ========================================================================== */
.ingredient-accordion {
  margin: 32px 0;
  border-top: 1px solid var(--border-dark);
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6px;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
}

.accordion-trigger:hover {
  color: var(--brand-red);
}

.accordion-icon {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 0 6px 16px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body);
}

.accordion-item.open .accordion-content {
  display: block;
}

/* ==========================================================================
   SIDEBAR & FACT-CHECK BOX
   ========================================================================== */
.sidebar-sticky-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 20px;
}

.sidebar-box-factcheck {
  border: 2px solid var(--border-dark);
  background: #fdfdfb;
}

.factcheck-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.factcheck-seal {
  width: 32px;
  height: 32px;
  background: var(--brand-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.factcheck-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

.badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.badge-item-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  padding: 10px 8px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.badge-item-btn:hover {
  background: #e5dfd2;
  border-color: #999;
}

.badge-code {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-main);
  display: block;
}

.badge-lbl {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
}

.factcheck-link {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-red);
  text-decoration: underline;
  margin-top: 10px;
}

/* Sidebar Product Showcase */
.sidebar-product-teaser {
  text-align: center;
}

.sidebar-product-teaser img {
  margin: 0 auto 12px;
  border: 1px solid var(--border-light);
  max-width: 220px;
}

.teaser-badge {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

/* ==========================================================================
   ORDER SECTION / CONVERSION BRIDGE (OFFER INTEGRATION)
   ========================================================================== */
.order-anchor-section {
  max-width: 900px;
  margin: 50px auto 30px;
  background: #ffffff;
  border: 3px solid var(--border-dark);
  padding: 28px 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

@media (min-width: 768px) {
  .order-anchor-section {
    padding: 36px 36px;
  }
}

.order-box-header {
  text-align: center;
  border-bottom: 2px solid var(--border-dark);
  padding-bottom: 18px;
  margin-bottom: 26px;
}

.order-box-kicker {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  margin-bottom: 6px;
}

.order-box-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 10px;
}

.order-box-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.order-grid-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

@media (min-width: 768px) {
  .order-grid-content {
    grid-template-columns: 45% 55%;
  }
}

.order-product-col {
  text-align: center;
}

.order-product-photo-wrapper {
  position: relative;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  padding: 10px;
  border-radius: 4px;
}

.order-product-photo-wrapper img {
  border-radius: 2px;
  margin: 0 auto;
}

.discount-circle-stamp {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 72px;
  height: 72px;
  background: var(--brand-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(185, 28, 28, 0.4);
  transform: rotate(8deg);
}

.discount-val {
  font-size: 1.3rem;
  line-height: 1;
}

.discount-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Price Box */
.price-showcase-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 16px;
  margin: 18px 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 12px;
  border-radius: 4px;
}

.old-price-line {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.current-campaign-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand-red);
}

.currency-label {
  font-size: 1.15rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.stock-counter-ticker {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: #c2410c;
  background: #ffedd5;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 8px;
}

/* Order Form */
.order-form-card {
  background: #ffffff;
  padding: 6px;
}

.form-field-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-input-text {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  border: 2px solid #ccc;
  border-radius: 4px;
  color: var(--text-main);
  background: #ffffff;
  transition: var(--transition);
}

.form-input-text:focus {
  outline: none;
  border-color: var(--border-dark);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.phone-input-wrapper {
  position: relative;
}

.phone-input-group {
  display: flex;
  align-items: stretch;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #ffffff;
  transition: var(--transition);
  overflow: hidden;
}

.phone-input-group:focus-within {
  border-color: var(--border-dark);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.phone-prefix-fixed {
  background: #f0ede6;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 14px 16px;
  border-right: 2px solid #e0dcd3;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-input-group .phone-input-field {
  border: none;
  border-radius: 0;
  padding: 14px 16px;
  flex: 1;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-main);
  background: transparent;
}

.phone-input-group .phone-input-field:focus {
  outline: none;
  box-shadow: none;
}

.field-hint-text {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.order-submit-button {
  width: 100%;
  background: var(--brand-red);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.order-submit-button:hover {
  background: var(--brand-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(185, 28, 28, 0.4);
}

.order-submit-button:active {
  transform: translateY(1px);
}

.form-security-disclaimer {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.trust-badges-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--text-muted);
}

.trust-badge-col {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   COMMENTS SECTION (SOCIAL PROOF)
   ========================================================================== */
.comments-section-container {
  max-width: var(--article-width);
  margin: 40px auto;
  border-top: 2px solid var(--border-dark);
  padding-top: 24px;
}

.comments-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.comments-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

.comments-filter {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.comment-card {
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

.comment-author-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.comment-author-name {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

.verified-buyer-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  text-transform: uppercase;
}

.comment-time {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-light);
}

.comment-text {
  font-family: var(--font-serif);
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 10px;
}

.comment-actions {
  display: flex;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--text-muted);
}

.like-button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.like-button:hover {
  color: var(--brand-red);
}

.editor-reply-card {
  background: var(--bg-tertiary);
  border-left: 3px solid var(--text-main);
  padding: 12px 14px;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.5;
}

.editor-tag {
  font-weight: 800;
  color: var(--brand-red);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ==========================================================================
   NEWSPAPER FOOTER & LEGAL DISCLAIMERS
   ========================================================================== */
.site-footer {
  background-color: #111111;
  color: #d1d5db;
  padding: 48px 20px 30px;
  font-family: var(--font-sans);
  border-top: 4px solid var(--brand-red);
}

.footer-inner-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  border-bottom: 1px solid #333333;
  padding-bottom: 32px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand-col h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.footer-brand-col p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #9ca3af;
}

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-nav-links {
  list-style: none;
  font-size: 0.82rem;
}

.footer-nav-links li {
  margin-bottom: 8px;
}

.footer-nav-links a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-nav-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-disclaimer-box {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 0.76rem;
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: 24px;
}

.footer-disclaimer-box strong {
  color: #e5e7eb;
}

.footer-bottom-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  font-size: 0.74rem;
  color: #6b7280;
}

@media (min-width: 768px) {
  .footer-bottom-copy {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ==========================================================================
   MODAL WINDOW (CERTIFICATE / FACT CHECK)
   ========================================================================== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-dialog-box {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border: 3px solid var(--border-dark);
  padding: 24px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  color: var(--text-main);
}

.modal-header-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.modal-headline {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text-main);
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.modal-body-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-body);
}

.modal-cert-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.82rem;
}

.modal-cert-table th, 
.modal-cert-table td {
  border: 1px solid var(--border-light);
  padding: 8px 10px;
  text-align: left;
}

.modal-cert-table th {
  background: var(--bg-tertiary);
  font-weight: 700;
}

.status-badge-pass {
  color: #166534;
  font-weight: 700;
  background: #dcfce7;
  padding: 2px 6px;
  border-radius: 3px;
}

.modal-action-row {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-link-btn {
  display: inline-block;
  background: var(--text-main);
  color: #ffffff;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
}

.modal-link-btn:hover {
  background: #333333;
  color: #ffffff;
}

/* ==========================================================================
   COOKIE BANNER (GDPR COMPLIANCE)
   ========================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111111;
  color: #ffffff;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  z-index: 9998;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-consent-banner a {
  color: #e5e7eb;
}

.cookie-accept-btn {
  background: var(--brand-red);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-accept-btn:hover {
  background: var(--brand-red-hover);
}
