/* ---------- RESET & GLOBALE STYLES ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      overflow-x: clip;
    }

    body {
      font-family: 'Open Sans', Arial, sans-serif;
      color: #222222;
      background: #f5f5f5;
      line-height: 1.7;
      font-size: 16px;
      padding-bottom: 70px;
    }

    /* Farbschema */
    :root {
      --ll-color-primary: #e8a500;
      --ll-color-secondary: #d4950a;
      --ll-color-text-primary: #222222;
      --ll-color-text-secondary: #555555;
      --ll-color-border: #e0e0e0;
      --ll-color-light-bg: #f5f5f5;
      --ll-color-cta: #e8a500;
      --ll-color-cta-hover: #c98f00;
      --ll-color-danger: #d32f2f;
      --ll-color-success: #388e3c;
    }

    .top-bar {
      background: #fafafa;
      border-bottom: 1px solid #e0e0e0;
      padding: 8px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: #888;
    }
    .top-bar-left {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .top-bar-logo-text {
      font-weight: 800;
      font-size: 18px;
      color: #222;
    }
    .top-bar-logo-text-highlight {
      color: #e8a500;
    }
    .top-bar-label {
      background: #eee;
      padding: 2px 8px;
      border-radius: 3px;
      font-size: 11px;
      color: #999;
    }
    .breadcrumb {
      font-size: 13px;
      color: #888;
      padding: 12px 0;
      max-width: 750px;
      margin: 0 auto;
    }
    .breadcrumb-link {
      color: #888;
      text-decoration: none;
    }
    .article-flag {
      height: 14px;
      width: 20px;
      border-radius: 2px;
    }
    .article-trending-text {
      font-size: 13px;
      color: #888;
      font-weight: 600;
    }
    .article-label-tag {
      font-size: 11px;
      background: #ffe082;
      color: #795548;
      padding: 2px 8px;
      border-radius: 3px;
      font-weight: 700;
    }
    .main-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 30px;
      padding: 0 20px 40px;
      align-items: start;
    }
    .article-content {
      background: #fff;
      padding: 30px 35px;
      border: 1px solid #e0e0e0;
      border-radius: 4px;
      overflow-x: clip;
      min-width: 0;
    }
    .sidebar {
      position: sticky;
      top: 20px;
      align-self: start;
      width: 100%;
      z-index: 5;
    }
    .sidebar-product-card {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      overflow: hidden;
    }
    .sidebar-product-header {
      background: #e8a500;
      color: #fff;
      text-align: center;
      padding: 6px 8px;
      font-weight: 700;
      font-size: 12px;
    }
    .sidebar-product-img {
      width: 100%;
      max-height: 200px;
      object-fit: contain;
      display: block;
    }
    .sidebar-product-body {
      padding: 8px 10px 10px;
    }
    .sidebar-cta-btn {
      display: block;
      background: #e8a500;
      color: #fff;
      text-align: center;
      padding: 8px 10px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 700;
      font-size: 13px;
    }
    .article-title {
      font-size: 28px;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .article-subtitle {
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
    }
    .article-hero-img {
      width: 100%;
      border-radius: 6px;
      margin-bottom: 20px;
    }
    .img-caption {
      font-size: 13px;
      color: #999;
      font-style: italic;
      text-align: center;
      margin-top: -10px;
      margin-bottom: 18px;
    }
    .author-box {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 18px;
      border-bottom: 1px solid #e0e0e0;
    }
    .author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }
    .author-name {
      font-weight: 700;
      font-size: 14px;
    }
    .author-role {
      font-size: 12px;
      color: #888;
    }
    .author-verified {
      font-size: 12px;
      color: #388e3c;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .article-body p {
      margin-bottom: 18px;
      font-size: 16px;
      line-height: 1.75;
    }
    .article-body h2 {
      font-size: 22px;
      font-weight: 800;
      margin: 30px 0 14px;
    }
    .danger-box {
      background: #fef2f2;
      border-left: 4px solid #d32f2f;
      padding: 16px 20px;
      margin: 20px 0;
      border-radius: 0 6px 6px 0;
    }
    .danger-box-title {
      font-weight: 700;
      color: #d32f2f;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 6px;
      font-size: 16px;
    }
    .steps-container {
      margin: 24px 0;
    }
    .step-item {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
      align-items: flex-start;
    }
    .step-number {
      min-width: 40px;
      height: 40px;
      background: #e8a500;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
    }
    .step-title {
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 4px;
    }
    .step-desc {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
    }
    .benefits-list {
      list-style: none;
      margin: 16px 0;
      padding: 0;
    }
    .benefit-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 14px;
      font-size: 15px;
    }
    .benefit-icon {
      min-width: 22px;
      width: 22px;
      margin-top: 2px;
    }
    .cta-box {
      background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
      border: 2px solid #e8a500;
      border-radius: 10px;
      padding: 28px;
      text-align: center;
      margin: 30px 0;
    }
    .cta-btn-main {
      display: inline-block;
      background: #e8a500;
      color: #fff;
      text-decoration: none;
      padding: 16px 36px;
      border-radius: 8px;
      font-size: 18px;
      font-weight: 800;
      transition: background 0.3s;
      box-shadow: 0 4px 14px rgba(232,165,0,0.35);
      max-width: 100%;
      box-sizing: border-box;
    }
    .guarantees-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin: 20px 0;
    }
    .guarantee-item {
      text-align: center;
      font-size: 11px;
    }
    .stock-alert {
      background: #fff3cd;
      border: 1px solid #ffc107;
      border-radius: 6px;
      padding: 16px 20px;
      margin: 20px 0;
    }
    .stock-alert-title {
      font-weight: 700;
      font-size: 14px;
      color: #856404;
      margin-bottom: 6px;
    }
    .footer {
      background: #fff;
      border-top: 1px solid #e0e0e0;
      padding: 30px 20px 20px;
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      word-break: break-all;
      overflow-wrap: anywhere;
      min-width: 0;
    }
    .footer-logo-img {
      height: 28px;
    }
    .footer-link {
      font-size: 14px;
      color: #4267B2;
      text-decoration: underline;
      word-break: break-all;
      overflow-wrap: anywhere;
    }
    .footer-copyright {
      font-size: 12px;
      color: #aaa;
      width: 100%;
      border-top: 1px solid #e0e0e0;
      margin-top: 16px;
      padding-top: 12px;
      word-break: break-all;
      overflow-wrap: anywhere;
    }
    .sticky-bottom-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 2px solid #e8a500;
      padding: 10px 20px;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      gap: 20px;
      z-index: 1000;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    }
    .sticky-bar-btn {
      background: #e8a500;
      color: #fff;
      padding: 10px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 700;
      white-space: nowrap;
    }
    .update-box {
      background: #fff3cd;
      border: 2px solid #e8a500;
      border-radius: 8px;
      padding: 20px;
      margin: 24px 0;
      text-align: center;
    }
    .update-box-badge {
      background: #e8a500;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 3px;
      margin-bottom: 8px;
      display: inline-block;
    }
.update-icons-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 6px;
  align-items: center;
}
.update-icons-row img {
  width: 100%;
  max-width: 130px;
  margin: 0 auto;
  display: block;
}
    img {
      max-width: 100%;
      height: auto;
    }
    @media (max-width: 1024px) {
      .main-wrapper { grid-template-columns: 1fr; }
      .sidebar { position: static; display: none; }
    }
    @media (max-width: 576px) {
      .article-content { padding: 18px 16px; }
      .article-title { font-size: 22px; }
      .guarantees-row { grid-template-columns: repeat(2,1fr); }
      .cta-btn-main { display: block; width: 100%; padding: 12px 10px; font-size: 15px; }
      .sticky-bottom-bar { flex-direction: column; gap: 8px; padding: 8px 12px; }
      .sticky-bar-btn { display: block; width: 100%; text-align: center; }
    }

    .bundle-product-img {
      display: block;
      max-width: 140px;
      width: 100%;
      margin: 10px auto;
    }


.legal-modal-open { overflow: hidden; }
.footer-legal-btn { background: none; border: none; padding: 0; cursor: pointer; font: inherit; }
.bundle-product-img-small { max-width: 100px; }

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.legal-modal.is-open { opacity: 1; visibility: visible; }
.legal-modal-dialog {
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
}
.legal-modal-header h2 { margin: 0; font-size: 18px; word-break: break-all; }
.legal-modal-close {
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  background: #f0f0f0;
  font-size: 22px;
}
.legal-modal-body {
  padding: 16px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.6;
  word-break: break-all;
}
.legal-modal-body h3 { margin: 14px 0 8px; font-size: 15px; }
.legal-modal-body p { margin: 0 0 10px; }
@media (max-width: 576px) {
  body {
    padding-bottom: 130px;
  }
  .update-icons-row {
    gap: 8px;
  }
  .update-icons-row img {
    max-width: 40px;
  }
  .bundle-product-img-small { max-width: 56px; }
  .legal-modal { padding: 8px; }
}

@media (max-width: 576px) {
  .step-item {
    gap: 10px;
    min-width: 0;
  }
  .step-content {
    min-width: 0;
  }
  .step-title,
  .step-desc,
  .benefit-item span {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .benefit-item {
    min-width: 0;
  }
  .cta-box h2,
  .update-box,
  .update-box * {
    word-break: break-all;
    overflow-wrap: anywhere;
  }
}
