/* ==============================================
   ArtiZynt DE — Site 3 Stylesheet
   Mulish · Soft-shadows layout · arz- prefix
   ============================================== */

:root {
  --arz-primary: #B84136;
  --arz-primary-light: #D05A50;
  --arz-accent: #E0BB69;
  --arz-accent-dark: #C8A050;
  --arz-accent-brand: #66832A;
  --arz-bg: #F8F8F6;
  --arz-alt-bg: #F0EFE8;
  --arz-surface: #F0EFE8;
  --arz-surface-warm: #FDF5E0;
  --arz-text: #2A2522;
  --arz-text-muted: #6B6460;
  --arz-border: #E0DCD6;
  --arz-cta-bg: #B84136;
  --arz-cta-text: #FFFFFF;
  --arz-cta-hover: #A03428;
  --arz-header-bg: #F0F0E8;
  --arz-header-text: #2A2522;
  --arz-footer-bg: #2D2926;
  --arz-footer-text: #C8C0B8;
  --arz-round: 8px;
  --arz-shadow: 0 4px 24px rgba(42,37,34,0.10);
  --arz-shadow-hover: 0 8px 32px rgba(42,37,34,0.16);
  --arz-font: 'Mulish', sans-serif;
  --arz-container: 1140px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--arz-font);
  color: var(--arz-text);
  background: var(--arz-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--arz-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--arz-cta-hover); }
ul, ol { list-style: none; }

/* ---- Container ---- */
.arz-frame {
  max-width: var(--arz-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================================================
   HEADER
   ================================================================ */
.arz-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--arz-header-bg);
  box-shadow: 0 2px 12px rgba(42,37,34,0.06);
  transition: box-shadow .3s;
}
.arz-topbar.arz-scrolled {
  box-shadow: 0 4px 20px rgba(42,37,34,0.12);
}
.arz-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

/* Brand logo text */
.arz-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
}
.arz-brand-mark {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--arz-primary);
}
.arz-brand-sub {
  font-size: 0.7rem;
  color: var(--arz-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Desktop nav */
.arz-site-nav-list {
  display: flex;
  gap: 20px;
  align-items: center;
}
.arz-site-nav-list a {
  color: var(--arz-header-text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color .2s;
}
.arz-site-nav-list a:hover {
  color: var(--arz-primary);
}

/* Header CTA */
.arz-topbar-cta {
  font-size: 0.85rem;
  padding: 8px 20px;
  white-space: nowrap;
}

/* Burger */
.arz-burger {
  display: none;
  background: none;
  border: none;
  color: var(--arz-text);
  cursor: pointer;
  padding: 4px;
}

/* Mobile nav dismiss + shade - base hidden */
.arz-nav-dismiss {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 202;
  background: var(--arz-primary);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}
.arz-nav-shade {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42,37,34,0.5);
  z-index: 199;
}

/* ================================================================
   CTA BUTTON (global)
   ================================================================ */
.arz-buy-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--arz-cta-bg), var(--arz-primary-light));
  color: var(--arz-cta-text);
  font-family: var(--arz-font);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--arz-round);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.arz-buy-button:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(184,65,54,0.3);
  color: var(--arz-cta-text);
}
.arz-buy-button--large {
  font-size: 1.1rem;
  padding: 16px 40px;
}
.arz-cta-block {
  margin-top: 28px;
  text-align: center;
}

/* ================================================================
   HERO — centered text, product image below with shadow frame
   ================================================================ */
.arz-landing-hero {
  background: linear-gradient(160deg, #F0EFE8 0%, #FDF5E0 50%, #F0EFE8 100%);
  padding: 56px 0 40px;
  text-align: center;
}
.arz-landing-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--arz-text);
}
.arz-landing-hero-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.arz-chip {
  background: rgba(184,65,54,0.08);
  color: var(--arz-primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(184,65,54,0.15);
}
.arz-landing-hero-lead {
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--arz-text);
}
.arz-landing-hero-text {
  font-size: 0.95rem;
  max-width: 760px;
  margin: 0 auto 12px;
  color: var(--arz-text-muted);
}
.arz-landing-hero .arz-buy-button {
  margin-top: 12px;
}
.arz-landing-hero-visual {
  margin-top: 32px;
}
.arz-landing-hero-img {
  max-width: min(360px, 80%);
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--arz-shadow);
}

/* ================================================================
   SECTIONS — floating card style with shadow
   ================================================================ */
.arz-article-part {
  padding: 48px 0;
}
.arz-article-part--alt {
  background: var(--arz-alt-bg);
}
.arz-article-part--disclaimer {
  padding: 24px 0 32px;
}
.arz-article-part h2 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--arz-text);
  line-height: 1.35;
}
.arz-article-part h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--arz-text);
}
.arz-article-part p {
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.arz-article-part p:last-child {
  margin-bottom: 0;
}

/* ================================================================
   TABLE — shadow container, rounded
   ================================================================ */
.arz-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}
.arz-info-matrix {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--arz-round);
  box-shadow: var(--arz-shadow);
  overflow: hidden;
}
.arz-info-matrix td,
.arz-info-matrix th {
  padding: 12px 18px;
  font-size: 0.92rem;
  text-align: left;
  border-bottom: 1px solid var(--arz-border);
}
.arz-info-matrix tr:last-child td {
  border-bottom: none;
}
.arz-info-matrix tr:hover {
  background: rgba(240,239,232,0.5);
}
.arz-info-matrix-label {
  font-weight: 600;
  color: var(--arz-text);
  width: 35%;
  white-space: nowrap;
}
.arz-info-matrix--comparison th {
  background: var(--arz-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}
.arz-info-matrix--comparison td:first-child {
  font-weight: 600;
}

/* Price elements */
.arz-price-tag {
  color: var(--arz-primary);
  font-weight: 700;
  font-size: 1rem;
}
.arz-price-tag--large {
  font-size: 1.6rem;
}
.arz-price-old {
  color: var(--arz-text-muted);
  text-decoration: line-through;
  font-size: 0.88rem;
  margin-right: 6px;
}
.arz-price-old--large {
  font-size: 1.1rem;
}
.arz-price-badge {
  background: var(--arz-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  vertical-align: middle;
}
.arz-review-score-inline {
  color: var(--arz-accent-dark);
  font-weight: 700;
}

/* ================================================================
   TOC — page index
   ================================================================ */
.arz-page-index {
  padding: 12px 0 24px;
}
.arz-page-index-box {
  background: #fff;
  border-radius: var(--arz-round);
  box-shadow: var(--arz-shadow);
  padding: 24px 28px;
  border-left: 4px solid var(--arz-primary);
}
.arz-page-index-heading {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--arz-text);
}
.arz-page-index-list {
  counter-reset: toc-idx;
  display: grid;
  gap: 6px;
}
.arz-page-index-list li {
  counter-increment: toc-idx;
}
.arz-page-index-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--arz-text);
  padding: 6px 8px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.arz-page-index-list li a::before {
  content: counter(toc-idx, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--arz-primary);
  min-width: 24px;
}
.arz-page-index-list li a:hover {
  background: rgba(184,65,54,0.06);
  color: var(--arz-primary);
}

/* ================================================================
   CHECKLIST
   ================================================================ */
.arz-checklist {
  margin: 14px 0 18px;
  display: grid;
  gap: 8px;
}
.arz-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 0.93rem;
}
.arz-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--arz-accent-brand);
  opacity: 0.2;
}
.arz-checklist li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--arz-accent-brand);
  border-bottom: 2px solid var(--arz-accent-brand);
  transform: rotate(-45deg);
}

/* ================================================================
   STEP SEQUENCE (numbered)
   ================================================================ */
.arz-step-sequence {
  counter-reset: step-num;
  display: grid;
  gap: 14px;
  margin: 20px 0;
}
.arz-step-sequence li {
  counter-increment: step-num;
  background: #fff;
  padding: 16px 20px 16px 56px;
  border-radius: var(--arz-round);
  box-shadow: var(--arz-shadow);
  position: relative;
  font-size: 0.93rem;
}
.arz-step-sequence li::before {
  content: counter(step-num);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--arz-primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}
.arz-step-sequence li strong {
  color: var(--arz-text);
}

/* ================================================================
   GUIDE SPLIT (steps + image)
   ================================================================ */
.arz-guide-split {
  display: flex;
  align-items: center;
  gap: 40px;
}
.arz-guide-split .arz-step-sequence {
  flex: 1 1 55%;
}
.arz-guide-split-visual {
  flex: 1 1 40%;
}
.arz-guide-split-img {
  width: 100%;
  max-width: min(520px, 100%);
  border-radius: 12px;
  box-shadow: var(--arz-shadow);
}

/* ================================================================
   INGREDIENT CARDS — hexagon icon, 3x2 grid
   ================================================================ */
.arz-component-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.arz-component-tile {
  background: #fff;
  border-radius: var(--arz-round);
  box-shadow: var(--arz-shadow);
  padding: 24px 20px;
  transition: transform .2s, box-shadow .2s;
}
.arz-component-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--arz-shadow-hover);
}
.arz-component-tile-icon {
  margin-bottom: 12px;
}
.arz-component-tile h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--arz-text);
}
.arz-component-tile-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--arz-primary);
  margin-bottom: 10px;
}
.arz-component-tile p {
  font-size: 0.87rem;
  color: var(--arz-text-muted);
  margin-bottom: 12px;
}
.arz-component-tile-verdict {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--arz-accent-brand);
  padding-top: 10px;
  border-top: 1px solid var(--arz-border);
}

/* ================================================================
   PROS / CONS — stacked, accent bars left
   ================================================================ */
.arz-verdict-split {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}
.arz-verdict-split-panel {
  background: #fff;
  border-radius: var(--arz-round);
  box-shadow: var(--arz-shadow);
  padding: 24px 24px 24px 28px;
  position: relative;
}
.arz-verdict-split-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
}
.arz-verdict-split-panel--pro::before {
  background: var(--arz-accent-brand);
}
.arz-verdict-split-panel--con::before {
  background: var(--arz-accent);
}
.arz-verdict-split-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.arz-verdict-split-panel ul {
  display: grid;
  gap: 8px;
}
.arz-verdict-split-panel li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
}
.arz-verdict-split-panel--pro li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--arz-accent-brand);
}
.arz-verdict-split-panel--con li::before {
  content: '-';
  position: absolute;
  left: 2px;
  font-weight: 700;
  color: var(--arz-accent-dark);
}

/* ================================================================
   CAUTION BOXES (safety, myths)
   ================================================================ */
.arz-caution-box {
  background: #fff;
  border-radius: var(--arz-round);
  box-shadow: var(--arz-shadow);
  padding: 20px 24px;
  margin-bottom: 14px;
  border-left: 3px solid var(--arz-accent);
}
.arz-caution-box h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--arz-text);
}
.arz-caution-box p {
  font-size: 0.9rem;
  color: var(--arz-text-muted);
  margin-bottom: 0;
}
.arz-caution-box--legal {
  border-left-color: var(--arz-primary);
  background: var(--arz-surface-warm);
}
.arz-caution-box--legal p {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--arz-text-muted);
}

/* ================================================================
   REVIEWS / PATIENT QUOTES
   ================================================================ */
.arz-patient-grid {
  display: grid;
  gap: 16px;
  margin: 20px 0;
}
.arz-patient-quote {
  background: #fff;
  border-radius: var(--arz-round);
  box-shadow: var(--arz-shadow);
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}
.arz-patient-quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--arz-shadow-hover);
}
.arz-patient-quote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.arz-patient-quote-header strong {
  font-size: 0.95rem;
}
.arz-patient-quote-stars {
  display: inline-flex;
  gap: 2px;
  flex-shrink: 0;
}
.arz-patient-quote-context {
  font-size: 0.82rem;
  color: var(--arz-text-muted);
  margin-bottom: 10px;
  font-style: italic;
}
.arz-patient-quote p:last-child {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ================================================================
   RATING SCORE BLOCK
   ================================================================ */
.arz-review-score-block {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: var(--arz-round);
  box-shadow: var(--arz-shadow);
  padding: 24px;
  margin: 24px 0;
}
.arz-review-score-circle {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--arz-primary), var(--arz-primary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.arz-review-score-circle span {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.8;
}
.arz-review-score-block p {
  font-size: 0.92rem;
  margin-bottom: 0;
}
.arz-review-score-block--final {
  border: 2px solid var(--arz-primary);
}

/* ================================================================
   DEAL / PRICE BLOCK
   ================================================================ */
.arz-deal-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--arz-round);
  box-shadow: var(--arz-shadow);
  overflow: hidden;
  margin: 24px 0;
  border: 2px solid var(--arz-primary);
}
.arz-deal-block-badge {
  background: var(--arz-primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  writing-mode: vertical-lr;
  text-orientation: mixed;
}
.arz-deal-block-body {
  padding: 24px;
}
.arz-deal-block-body h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.arz-deal-block-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.arz-deal-block-body .arz-buy-button {
  margin-top: 12px;
}

/* ================================================================
   FAQ — shadow cards per question
   ================================================================ */
.arz-help-items {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.arz-help-items-entry {
  background: #fff;
  border-radius: var(--arz-round);
  box-shadow: var(--arz-shadow);
  overflow: hidden;
}
.arz-help-items-entry summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  gap: 12px;
}
.arz-help-items-entry summary::-webkit-details-marker { display: none; }
.arz-help-items-entry summary::marker { display: none; content: ''; }
.arz-help-items-entry summary h3 {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 600;
  flex: 1;
}
.arz-help-items-chevron {
  flex-shrink: 0;
  transition: transform .25s;
  color: var(--arz-primary);
}
.arz-help-items-entry[open] .arz-help-items-chevron {
  transform: rotate(180deg);
}
.arz-help-items-answer {
  padding: 0 20px 18px;
}
.arz-help-items-answer p {
  font-size: 0.9rem;
  color: var(--arz-text-muted);
  margin-bottom: 0;
}

/* ================================================================
   AUTHOR BLOCK
   ================================================================ */
.arz-medic-bio {
  padding: 40px 0;
}
.arz-medic-bio-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--arz-round);
  box-shadow: var(--arz-shadow);
  padding: 28px;
  border-top: 3px solid var(--arz-primary);
}
.arz-medic-bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.arz-medic-bio-info strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.arz-medic-bio-role {
  display: block;
  font-size: 0.82rem;
  color: var(--arz-primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.arz-medic-bio-info p {
  font-size: 0.88rem;
  color: var(--arz-text-muted);
  margin-bottom: 8px;
}
.arz-medic-bio-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--arz-text-muted);
}

/* ================================================================
   FOOTER
   ================================================================ */
.arz-bottom-bar {
  background: var(--arz-footer-bg);
  color: var(--arz-footer-text);
  padding: 48px 0 24px;
}
.arz-bottom-bar-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.arz-bottom-bar-col strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.arz-bottom-bar-col p {
  font-size: 0.85rem;
  line-height: 1.6;
}
.arz-bottom-bar-col ul {
  display: grid;
  gap: 6px;
}
.arz-bottom-bar-col a {
  color: var(--arz-footer-text);
  font-size: 0.85rem;
  transition: color .2s;
}
.arz-bottom-bar-col a:hover {
  color: #fff;
}
.arz-bottom-bar-legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.arz-bottom-bar-legal p {
  font-size: 0.78rem;
  color: rgba(200,192,184,0.7);
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ================================================================
   RESPONSIVE — Mobile first breakpoints
   ================================================================ */

/* Small phones */
@media (max-width: 767px) {
  .arz-site-nav { display: none; }
  .arz-topbar-cta { display: none; }
  .arz-burger { display: block; }

  .arz-site-nav.arz-nav-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: var(--arz-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  .arz-site-nav.arz-nav-open .arz-site-nav-list {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  .arz-site-nav.arz-nav-open .arz-site-nav-list a {
    font-size: 1.1rem;
  }
  .arz-nav-dismiss.arz-visible { display: flex; align-items: center; justify-content: center; }
  .arz-nav-shade.arz-visible { display: block; }

  .arz-landing-hero { padding: 36px 0 28px; }
  .arz-landing-hero h1 { font-size: 1.4rem; }
  .arz-landing-hero-img { max-width: min(280px, 90%); }

  .arz-component-grid { grid-template-columns: 1fr; }

  .arz-guide-split { flex-direction: column; gap: 24px; }

  .arz-deal-block { grid-template-columns: 1fr; }
  .arz-deal-block-badge {
    writing-mode: horizontal-tb;
    padding: 12px;
    font-size: 1.2rem;
  }

  .arz-review-score-block { flex-direction: column; text-align: center; gap: 16px; }

  .arz-medic-bio-card { flex-direction: column; align-items: center; text-align: center; }

  .arz-bottom-bar-inner { grid-template-columns: 1fr; gap: 24px; }

  .arz-article-part { padding: 32px 0; }
  .arz-article-part h2 { font-size: 1.2rem; }

  .arz-info-matrix-label { white-space: normal; }

  .arz-page-index-box { padding: 18px 16px; }
}

/* Tablet */
@media (min-width: 768px) {
  .arz-component-grid { grid-template-columns: repeat(2, 1fr); }
  .arz-patient-grid { grid-template-columns: repeat(2, 1fr); }
  .arz-page-index-list { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop */
@media (min-width: 1024px) {
  .arz-component-grid { grid-template-columns: repeat(3, 1fr); }
  .arz-article-part { padding: 56px 0; }
  .arz-landing-hero { padding: 72px 0 48px; }
}

/* Wide */
@media (min-width: 1440px) {
  .arz-frame { max-width: 1200px; }
}

/* ================================================================
   BREADCRUMBS (inner pages)
   ================================================================ */
.arz-trail {
  background: var(--arz-bg);
  padding: 10px 0;
  border-bottom: 1px solid var(--arz-border);
}
.arz-trail-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}
.arz-trail-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.arz-trail-list li + li::before {
  content: '>';
  color: var(--arz-text-muted);
  font-size: 0.75rem;
}
.arz-trail-list a {
  color: var(--arz-text-muted);
}
.arz-trail-list a:hover {
  color: var(--arz-primary);
}
.arz-trail-list [aria-current="page"] {
  color: var(--arz-text);
  font-weight: 600;
}

/* ================================================================
   LEGAL PAGE STYLES
   ================================================================ */
.arz-legal-meta {
  font-size: 0.82rem;
  color: var(--arz-text-muted);
  margin-bottom: 24px;
  font-style: italic;
}
.arz-article-part h1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--arz-text);
}

/* ===== IMG-CAP HOTFIX v1 (prevent full-bleed image blowups on grid collapse) ===== */
main [class*="image"] img,main [class*="visual"] img,main [class*="media"] img,main [class*="feature"] img,main [class*="showcase"] img,main [class*="substance"] img,main [class*="foto"] img,main [class*="obr"] img{max-width:min(460px,100%);height:auto;margin-left:auto;margin-right:auto;display:block}
main figure img{max-width:min(560px,100%);height:auto;margin:0 auto;display:block}
main [class*="split-image"],main [class*="split-media"],main [class*="hero-image"],main [class*="hero-visual"]{display:flex;align-items:center;justify-content:center}

/* ingredient gallery */
.arz-ing-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:24px 0}
.arz-ing-gallery figure{margin:0;text-align:center}
.arz-ing-gallery img{width:100%;height:auto;border-radius:10px;box-shadow:0 4px 16px rgba(0,0,0,.08)}
.arz-ing-gallery figcaption{font-size:13px;color:#6b6b6b;margin-top:8px;line-height:1.35}
@media(max-width:640px){.arz-ing-gallery{grid-template-columns:1fr 1fr}}
