@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================
   STILSCHUH - PREMIUM SHOE AFFILIATE THEME
   Theme: Charcoal / Gold / Leather Luxury
   ========================================== */

:root {
  --clr-bg: #0e0e0e;
  --clr-surface: #181818;
  --clr-surface-2: #222222;
  --clr-border: #2e2e2e;
  --clr-gold: #c9a96e;
  --clr-gold-light: #dfc08a;
  --clr-gold-dark: #a8874a;
  --clr-text: #e8e4de;
  --clr-text-muted: #888;
  --clr-text-dark: #444;
  --clr-white: #fafaf8;
  --clr-success: #5a9e6f;
}

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

.site-body {
  font-family: 'Inter', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === PRELOADER === */
.preloader-overlay {
  position: fixed; inset: 0;
  background: var(--clr-bg);
  display: flex; justify-content: center; align-items: center;
  z-index: 99999;
  transition: opacity .8s ease, visibility .8s ease;
}
.preloader-overlay.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.preloader-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.preloader-spinner {
  width: 52px; height: 52px;
  border: 3px solid rgba(201,169,110,.15);
  border-top-color: var(--clr-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.preloader-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--clr-gold);
  letter-spacing: .18em;
  font-style: italic;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:1} }

/* === COOKIE === */
.cookie-consent-popup {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--clr-surface);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  border-top: 1px solid var(--clr-border);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-consent-popup.cookie-popup-show {
  display: block;
  transform: translateY(0);
  animation: slideUp .4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content-wrapper {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.2rem;
}
.cookie-text-message { flex: 1; min-width: 280px; font-size: .85rem; line-height: 1.5; color: var(--clr-text-muted); }
.cookie-text-message strong { color: var(--clr-gold); }
.cookie-buttons-group { display: flex; gap: .8rem; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-reject {
  padding: .65rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  border-radius: 4px; cursor: pointer;
  transition: all .25s ease; border: none;
}
.cookie-btn-accept { background: var(--clr-gold); color: var(--clr-bg); }
.cookie-btn-accept:hover { background: var(--clr-gold-light); transform: translateY(-2px); }
.cookie-btn-reject { background: transparent; color: var(--clr-text-muted); border: 1.5px solid var(--clr-border); }
.cookie-btn-reject:hover { background: var(--clr-surface-2); color: var(--clr-text); }

/* === DISCLOSURE BAR === */
.disclosure-bar {
  background: rgba(201,169,110,.07);
  border-bottom: 1px solid rgba(201,169,110,.2);
  padding: .55rem 1rem;
  font-size: .78rem;
  line-height: 1.4;
}
.disclosure-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.disclosure-strong { color: var(--clr-gold); }

/* === HEADER === */
.brand-header {
  background: rgba(14,14,14,.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--clr-border);
}
.header-inner-box {
  max-width: 1200px; margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.brand-link-logo { text-decoration: none; display: flex; align-items: center; gap: .5rem; }
.brand-name-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  color: var(--clr-white);
  letter-spacing: .02em;
}
.nav-links-menu {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-item-list { display: inline-block; }
.nav-anchor-link {
  text-decoration: none;
  font-size: .88rem; font-weight: 500;
  color: rgba(232,228,222,.75);
  transition: color .25s ease;
  position: relative;
}
.nav-anchor-link:hover { color: var(--clr-gold); }
.nav-anchor-link-active { color: var(--clr-gold); }
.nav-anchor-link-active::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--clr-gold); border-radius: 2px;
}

/* === BUTTONS === */
.btn-base {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.6rem;
  font-family: 'Inter', sans-serif;
  font-size: .82rem; font-weight: 700;
  border-radius: 4px; text-decoration: none; cursor: pointer;
  transition: all .3s ease; border: none;
  text-transform: uppercase; letter-spacing: .07em;
}
.btn-gold {
  background: var(--clr-gold); color: var(--clr-bg);
  box-shadow: 0 4px 15px rgba(201,169,110,.25);
}
.btn-gold:hover { background: var(--clr-gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,.35); }
.btn-outline {
  background: transparent; color: var(--clr-gold);
  border: 1.5px solid var(--clr-gold);
}
.btn-outline:hover { background: rgba(201,169,110,.1); color: var(--clr-gold-light); transform: translateY(-2px); }
.btn-large { padding: 1rem 2.2rem; font-size: .9rem; }
.btn-full { width: 100%; }

/* === MOBILE TOGGLE === */
.mobile-nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: .4rem;
}
.toggle-icon-bar {
  display: block; width: 24px; height: 2px;
  background: var(--clr-gold); margin: 5px 0;
  transition: all .3s ease; border-radius: 2px;
}

/* === SECTIONS === */
.section-wrapper { padding: 5rem 1.5rem; }
.section-dark { background: var(--clr-bg); }
.section-surface { background: var(--clr-surface); }
.layout-container { max-width: 1200px; margin: 0 auto; }
.layout-container-sm { max-width: 800px; margin: 0 auto; }
.heading-block-center { text-align: center; max-width: 680px; margin: 0 auto 3.5rem auto; }

/* === TYPOGRAPHY === */
.eyebrow {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .2em; color: var(--clr-gold); margin-bottom: .8rem; display: block;
}
.heading-1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem; line-height: 1.1;
  color: var(--clr-white); margin: 0 0 1.2rem 0;
}
.heading-2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; line-height: 1.2;
  color: var(--clr-white); margin: 0 0 1rem 0;
}
.heading-3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; line-height: 1.3;
  color: var(--clr-white); margin: 0 0 .8rem 0;
}
.heading-4 {
  font-size: 1.05rem; font-weight: 700; line-height: 1.4;
  color: var(--clr-white); margin: 0 0 .5rem 0;
}
.para { font-size: .95rem; line-height: 1.7; color: rgba(232,228,222,.7); margin: 0 0 1rem 0; }
.para-lg { font-size: 1.1rem; line-height: 1.65; color: rgba(232,228,222,.8); margin: 0 0 1.5rem 0; }
.para-sm { font-size: .85rem; line-height: 1.5; color: var(--clr-text-muted); margin: 0 0 1rem 0; }

/* === HERO === */
.hero { padding: 6rem 1.5rem 5rem; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,169,110,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.hero-text { max-width: 560px; }
.hero-bullets { list-style: none; margin: 1.8rem 0; }
.hero-bullet-item {
  display: flex; align-items: center; gap: .9rem;
  font-size: 1rem; font-weight: 500; margin-bottom: .9rem;
  color: rgba(232,228,222,.85);
}
.hero-bullet-icon { color: var(--clr-gold); font-size: 1.1rem; font-weight: 600; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; }
.hero-img-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,.4);
  overflow: hidden;
  max-width: 480px; width: 100%;
}
.hero-img { width: 100%; height: auto; border-radius: 8px; display: block; }
.hero-img-tag { margin-top: .8rem; text-align: center; font-size: .72rem; color: var(--clr-text-muted); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* === COMPARISON === */
.comparison-grid {
  display: grid; grid-template-columns: .7fr 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem; align-items: start;
}
.comp-labels { display: flex; flex-direction: column; justify-content: center; gap: 0; }
.comp-label {
  height: 4rem; display: flex; align-items: center;
  font-size: .82rem; font-weight: 600; letter-spacing: .03em;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
}
.comp-card {
  background: var(--clr-surface); border-radius: 10px;
  border: 1px solid var(--clr-border);
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.comp-card-featured {
  background: linear-gradient(145deg, var(--clr-surface) 0%, #1e1e1e 100%);
  border: 2px solid var(--clr-gold);
  position: relative; box-shadow: 0 15px 40px rgba(201,169,110,.12);
}
.comp-card-featured::before {
  content: 'EMPFOHLEN'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--clr-gold); color: var(--clr-bg);
  font-size: .68rem; font-weight: 800; padding: .28rem .9rem;
  border-radius: 20px; letter-spacing: .1em;
}
.comp-title {
  font-family: 'DM Serif Display', serif; font-size: 1.4rem; font-weight: 700;
  text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.2rem;
  border-bottom: 1.5px solid var(--clr-border);
  color: var(--clr-white);
}
.comp-row {
  height: 4rem; display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: .9rem; line-height: 1.4;
  color: rgba(232,228,222,.75);
  border-bottom: 1px solid var(--clr-border);
}
.comp-row-good { color: var(--clr-success); font-weight: 600; }
.comp-row-bad { color: #c06060; }
.gold-text { color: var(--clr-gold); font-weight: 600; }

/* === SPOTLIGHT === */
.spotlight-grid {
  display: grid; grid-template-columns: 1fr .9fr;
  gap: 4rem; align-items: center;
}
.spotlight-card {
  background: linear-gradient(135deg, #1a1510 0%, var(--clr-surface) 100%);
  border-radius: 12px; padding: 3rem;
  border-left: 4px solid var(--clr-gold);
}
.spotlight-metrics { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.8rem; }
.spotlight-metric { border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: 1.2rem; }
.spotlight-metric:last-child { border-bottom: none; padding-bottom: 0; }
.spotlight-metric-value { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--clr-gold); display: block; }
.spotlight-metric-desc { font-size: .85rem; color: var(--clr-text-muted); margin-top: .25rem; display: block; }
.spotlight-img { border-radius: 10px; overflow: hidden; border: 1px solid var(--clr-border); }
.spotlight-img img { width: 100%; height: auto; display: block; }

/* === PRODUCT DETAIL SECTION === */
.detail-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: start; }
.detail-scroll { display: flex; flex-direction: column; gap: 4.5rem; }

.detail-card {
  background: var(--clr-surface); border-radius: 10px;
  border: 1px solid var(--clr-border);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.detail-card-img { width: 100%; border-radius: 8px; overflow: hidden; margin-bottom: 1.5rem; }
.detail-card-img img { width: 100%; height: auto; display: block; transition: transform .4s ease; }
.detail-card:hover .detail-card-img img { transform: scale(1.04); }
.detail-highlights { list-style: none; margin: 1.2rem 0 0 0; }
.detail-highlights-item {
  position: relative; padding-left: 1.4rem;
  font-size: .9rem; line-height: 1.6; margin-bottom: .7rem; color: rgba(232,228,222,.75);
}
.detail-highlights-item::before { content: '–'; position: absolute; left: 0; color: var(--clr-gold); }

/* === STICKY OFFER === */
.sticky-offer { position: sticky; top: 5.5rem; }
.offer-card {
  background: linear-gradient(160deg, var(--clr-surface) 0%, #131313 100%);
  border-radius: 14px; border: 2pxsolid var(--clr-gold);
  padding: 2.5rem 2rem; text-align: center;
  box-shadow: 0 20px 50px rgba(201,169,110,.1);
}
.offer-badge {
  display: inline-block; background: var(--clr-gold); color: var(--clr-bg);
  font-size: .72rem; font-weight: 800; padding: 1.5rem 1rem; border-radius: 20px;
  letter-spacing: .05em; margin-bottom: 1.2rem;
}
.offer-img { width: 100%; max-width: 200px; margin: 0 auto 1.2rem; border-radius: 8px; overflow: hidden; }
.offer-img img { width: 100%; height: auto; display: block; }
.offer-title {
  font-family: 'DM Serif Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--clr-white); text-decoration: none; display: block;
  margin-bottom: .8rem; line-height: 1.3;
}
.offer-title:hover { color: var(--clr-gold-light); }
.stars { font-size: 1.1rem; color: var(--clr-gold); margin-bottom: 1rem; letter-spacing: .1em; }
.stars-sub { font-size: .8rem; color: var(--clr-text-muted); font-weight: 600; }
.offer-price-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: .6rem;
  align-items: center; padding: .8rem 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  margin: .8rem 0;
}
.offer-price { font-family: 'DM Serif Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--clr-gold); }
.price-tag { font-size: .75rem; color: var(--clr-success); font-weight: 700; }
.trust-list { list-style: none; margin: 1.5rem 0 0 0; border-top: 1px solid var(--clr-border); padding-top: 1rem; text-align: left; }
.trust-item {
  font-size: .8rem; color: var(--clr-text-muted); margin-bottom: .5rem;
  display: flex; align-items: center; gap: .5rem;
}
.trust-item::before { content: '✓'; color: var(--clr-success); font-weight: 700; }

/* === BREAKDOWN === */
.breakdown-list { display: flex; flex-direction: column; gap: 4rem; margin-top: 3.5rem; }
.breakdown-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
  background: var(--clr-surface); border-radius: 12px; padding: 3rem;
  border: 1px solid var(--clr-border);
}
.breakdown-card.reverse { }
.breakdown-card.reverse .breakdown-media { order: 2; }
.breakdown-media { border-radius: 8px; overflow: hidden; border: 1px solid var(--clr-border); }
.breakdown-media img { width: 100%; height: auto; display: block; }
.breakdown-badge {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  color: var(--clr-text-muted); background: var(--clr-surface-2);
  padding: .3rem .8rem; border-radius: 4px; display: inline-block; margin-bottom: 1rem;
}
.breakdown-bullets { list-style: none; margin: 1.5rem 0; }
.breakdown-bullets-item {
  position: relative; padding-left: 1.5rem; font-size: .9rem; line-height: 1.5;
  margin-bottom: .8rem; color: rgba(232,228,222,.75);
}
.breakdown-bullets-item::before { content: '✓'; position: absolute; left: 0; color: var(--clr-gold); font-weight: 700; }

/* === BENEFITS GRID === */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.benefit-card {
  background: var(--clr-surface); border-radius: 10px;
  border: 1px solid var(--clr-border);
  padding: 2.2rem 1.8rem; text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transition: transform .3s ease, border-color .3s ease;
}
.benefit-card:hover { transform: translateY(-4px); border-color: var(--clr-gold); }
.benefit-icon {
  width: 3.2rem; height: 3.2rem;
  background: rgba(201,169,110,.12);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--clr-gold); margin-bottom: 1.2rem; font-weight: 700;
}

/* === REVIEWS CAROUSEL === */
.reviews-slider { position: relative; overflow: hidden; padding: 2rem 0; }
.carousel-viewport { overflow: hidden; width: 100%; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.review-slide { flex: 0 0 100%; min-width: 100%; padding: 0 1.5rem; box-sizing: border-box; }
.review-card {
  background: var(--clr-surface); border-radius: 12px;
  border: 1px solid var(--clr-border); padding: 3rem;
  max-width: 820px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 2.5rem; align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.review-quote {
  font-family: 'DM Serif Display', serif; font-size: 1.3rem; line-height: 1.55;
  color: var(--clr-white); font-style: italic; margin: 0 0 1.5rem 0;
}
.review-avatar-row { display: flex; align-items: center; gap: .8rem; }
.review-avatar {
  width: 2.8rem; height: 2.8rem; background: var(--clr-gold);
  color: var(--clr-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.review-name { font-size: .9rem; font-weight: 700; color: var(--clr-white); }
.review-verified { font-size: .75rem; color: var(--clr-success); font-weight: 600; }
.review-photo { border-radius: 8px; overflow: hidden; border: 1px solid var(--clr-border); }
.review-photo img { width: 100%; height: 230px; object-fit: cover; display: block; }
.carousel-nav { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.carousel-btn {
  background: var(--clr-surface); border: 1.5px solid var(--clr-gold);
  color: var(--clr-gold); width: 3rem; height: 3rem;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: all .25s ease;
}
.carousel-btn:hover { background: var(--clr-gold); color: var(--clr-bg); }

/* === ARTICLES / TEASERS === */
.teasers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.teaser-card {
  background: var(--clr-surface); border-radius: 8px;
  border: 1px solid var(--clr-border); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 15px rgba(0,0,0,.08);
  transition: border-color .3s ease;
}
.teaser-card:hover { border-color: rgba(201,169,110,.4); }
.teaser-img { width: 100%; height: 175px; overflow: hidden; }
.teaser-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.teaser-card:hover .teaser-img img { transform: scale(1.05); }
.teaser-content { padding: 1.8rem; flex-grow: 1; display: flex; flex-direction: column; }
.teaser-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--clr-gold); margin-bottom: .5rem; display: block; }
.teaser-title { font-family: 'DM Serif Display', serif; font-size: 1.2rem; line-height: 1.3; color: var(--clr-white); margin: 0 0 .7rem 0; }
.teaser-link { margin-top: auto; font-size: .78rem; padding: .65rem 1.1rem; }

/* === FAQ === */
.faq-group { max-width: 800px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-radius: 6px; overflow: hidden;
}
.faq-trigger { width: 100%; background: none; border: none; padding: 1.4rem 1.8rem; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-q { font-size: 1rem; font-weight: 600; color: var(--clr-white); }
.faq-chevron { font-size: 1.1rem; color: var(--clr-gold); transition: transform .3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-panel { max-height: 300px; }
.faq-inner { padding: 0 1.8rem 1.4rem; border-top: 1px solid var(--clr-border); }
.faq-answer { font-size: .9rem; line-height: 1.65; color: rgba(232,228,222,.72); margin: 1rem 0 0; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 3rem; }
.contact-form { background: var(--clr-surface); border-radius: 10px; border: 1px solid var(--clr-border); padding: 2.5rem; }
.contact-fields { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--clr-text-muted); display: block; margin-bottom: .4rem; }
.form-input {
  font-family: 'Inter', sans-serif; font-size: .92rem; padding: .8rem 1rem;
  border: 1.5px solid var(--clr-border); border-radius: 4px;
  background: var(--clr-bg); color: var(--clr-text);
  transition: border-color .25s ease;
  width: 100%;
  display: block;
}
.form-input:focus { outline: none; border-color: var(--clr-gold); }
textarea.form-input { min-height: 130px; resize: vertical; }
.contact-info-card { background: linear-gradient(135deg, #1a1510 0%, var(--clr-surface) 100%); border-radius: 10px; padding: 3rem; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.info-list { list-style: none; margin: 1.5rem 0; }
.info-item { margin-bottom: 1.3rem; }
.info-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; color: var(--clr-gold); letter-spacing: .05em; display: block; }
.info-val { font-size: 1rem; margin-top: .25rem; display: block; color: var(--clr-text); }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #1a1510 0%, var(--clr-surface) 100%);
  padding: 6rem 1.5rem; text-align: center;
  border-top: 2px solid rgba(201,169,110,.3);
  border-bottom: 2px solid rgba(201,169,110,.3);
}
.cta-headline { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: var(--clr-white); margin: 0 0 1rem 0; }
.cta-tag { color: var(--clr-gold); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* === FOOTER === */
.brand-footer {
  background: var(--clr-bg);
  color: var(--clr-text-muted);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid var(--clr-border);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--clr-white); font-weight: 700; margin-bottom: 1rem; }
.footer-col { display: flex; flex-direction: column; gap: 1rem; }
.footer-col-title { font-size: .75rem; text-transform: uppercase; font-weight: 700; color: var(--clr-gold); letter-spacing: .08em; margin-bottom: .4rem; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-link { color: var(--clr-text-muted); text-decoration: none; font-size: .88rem; transition: color .25s; }
.footer-link:hover { color: var(--clr-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 1.8rem; text-align: center; }
.footer-disclaimer { font-size: .73rem; line-height: 1.55; color: var(--clr-text-muted); max-width: 860px; margin: 0 auto 1.2rem; }
.footer-copy { font-size: .75rem; color: var(--clr-text-muted); }

/* === IMPRESSUM === */
.impressum-block { background: var(--clr-surface); border-radius: 10px; padding: 3rem; margin-top: 2rem; border: 1px solid var(--clr-border); }
.impressum-block h2 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--clr-gold); margin: 1.8rem 0 .8rem 0; }
.impressum-block h2:first-child { margin-top: 0; }
.impressum-block p { font-size: .92rem; line-height: 1.6; color: rgba(232,228,222,.75); margin: 0 0 .8rem 0; }
.impressum-block a { color: var(--clr-gold); text-decoration: underline; }

/* === ARTICLE RICH TEXT === */
.article-body { margin-top: 2rem; }
.article-body h2 { margin-top: 2.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid, .spotlight-grid, .detail-grid, .breakdown-card { grid-template-columns: 1fr !important; }
  .spotlight-card { order: 2; }
  .breakdown-card.reverse .breakdown-media { order: 0; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comp-labels { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .teasers-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .review-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-nav-toggle { display: block; }
  .nav-links-menu {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--clr-bg); flex-direction: column;
    padding: 2rem; gap: 1.5rem;
    border-bottom: 2px solid var(--clr-border);
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all .3s ease;
  }
  .nav-links-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .heading-1 { font-size: 2.1rem; }
  .heading-2 { font-size: 1.75rem; }
  .hero { padding: 4rem 1rem 3rem; }
  .hero-actions { flex-direction: column; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comp-row { height: auto; padding: .8rem .5rem; display: block; text-align: left; border-bottom: 1px solid var(--clr-border); }
  .benefits-grid { grid-template-columns: 1fr; }
  .teasers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .review-card { padding: 1.5rem; }
  .carousel-nav { gap: 1rem; }
  .cookie-content-wrapper { flex-direction: column; text-align: center; }
  .cookie-buttons-group { flex-direction: column; width: 100%; }
  .cookie-btn-accept, .cookie-btn-reject { width: 100%; margin-bottom: .4rem; }
}

@media (max-width: 480px) {
  .heading-1 { font-size: 1.8rem; }
  .heading-2 { font-size: 1.5rem; }
  .section-wrapper { padding: 3rem 1rem; }
  .cta-headline { font-size: 1.8rem; }
  .offer-price { font-size: 2rem; }
  .comp-title { font-size: 1.2rem; }
}
