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

  :root{
    /* Markenfarben direkt aus dem Logo gemessen */
    --navy:#04395e; --navy-d:#032a46; --navy-l:#0d4f7d;
    --green:#56921e; --green-d:#487d18; --green-l:#6fae32;
    --ink:#13212c; --muted:#6c7b85; --line:#e1e6e2;
    --bg:#f3f5f1; --sand:#f8faf6; --hero-bg:#f3f2f3;
    --pad-sec: clamp(36px, 3.6vw, 62px);
    --gut: clamp(18px, 3vw, 36px);
  }

  body{
    font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size:17px; line-height:1.6; color:var(--ink); background:#fff;
    -webkit-font-smoothing:antialiased;
  }
  img{ display:block; max-width:100%; }
  a{ text-decoration:none; color:inherit; }

  .wrap{ max-width:1200px; margin:0 auto; padding:0 var(--gut); }
  .sec{ padding:var(--pad-sec) 0; }

  .ic{ display:inline-flex; flex:none; }
  .ic svg{ display:block; width:100%; height:100%; }

  /* ---------- Typo-Bausteine ---------- */
  .kicker{
    display:inline-block; font-size:12.5px; font-weight:800;
    letter-spacing:.2em; text-transform:uppercase; color:var(--green);
    margin-bottom:12px;
  }
  .h2{
    font-size:clamp(24px, 2.6vw, 38px); line-height:1.15; letter-spacing:-.02em;
    font-weight:700; color:var(--navy); max-width:24ch;
  }
  .h2 em{ font-style:normal; color:var(--green); }
  .sub{ font-size:17px; line-height:1.6; color:var(--muted); max-width:60ch; margin-top:12px; }

  /* Pill-Buttons statt eckiger Kacheln */
  .btn{
    display:inline-flex; align-items:center; gap:11px;
    background:var(--green); color:#fff; font-size:15px; font-weight:700;
    padding:15px 30px; border-radius:100px;
    transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .btn .ic{ width:17px; height:17px; }
  .btn:hover{ background:var(--green-d); transform:translateY(-2px); box-shadow:0 10px 22px rgba(86,146,30,.32); }
  .btn.navy{ background:var(--navy); }
  .btn.navy:hover{ background:var(--navy-l); box-shadow:0 10px 22px rgba(4,57,94,.3); }
  .btn.white{ background:#fff; color:var(--navy); }
  .btn.white:hover{ background:var(--navy-d); color:#fff; }

  /* ---------- gruener Info-Streifen ---------- */
  .strip{ background:var(--green); color:#fff; }
  .strip .wrap{
    display:flex; align-items:center; justify-content:center; gap:10px;
    min-height:40px; font-size:13px; letter-spacing:.14em; text-transform:uppercase; font-weight:700;
    text-align:center;
  }
  .strip .ic{ width:15px; height:15px; }

  /* ---------- Kopf: Logo links, Navigation rechts ---------- */
  .head{ background:#fff; border-bottom:1px solid var(--line); }
  .head .wrap{
    display:flex; align-items:center; justify-content:space-between;
    gap:20px 30px; padding-top:16px; padding-bottom:16px; flex-wrap:wrap;
  }
  .head .logo{ width:300px; height:auto; }
  .mainnav{ display:flex; align-items:center; gap:clamp(12px, 1.8vw, 26px); flex-wrap:wrap; }
  .mainnav a{
    display:inline-flex; align-items:center; gap:8px;
    font-size:14px; font-weight:600; color:var(--navy);
    padding:9px 0; border-bottom:2px solid transparent; transition:.18s ease;
  }
  .mainnav a .ic{ width:17px; height:17px; color:var(--green); }
  .mainnav a:hover{ color:var(--green); border-bottom-color:var(--green); }

  /* ---------- Hero: hell, Text links, Foto rechts, 1:1 ---------- */
  .hero{ position:relative; background:var(--hero-bg); overflow:hidden; }
  .hero-media{
    position:absolute; top:0; bottom:0; left:50%; transform:translateX(-50%); width:min(1200px, 100%);
    background-image:url("img/img01.png");
    background-repeat:no-repeat;
    /* volle Hoehe, rechtsbuendig, nichts abgeschnitten und nie vergroessert.
       Links laeuft #f3f2f3 weiter - exakt die Farbe der linken Bildkante. */
    background-size:auto 100%;
    background-position:right center;
  }
  .hero .wrap{
    position:relative; z-index:2;
    /* Hoehe steuert die Bildbreite (auto 100%): so bleiben die Objekte
       immer im rechten Drittel und die Textspalte kann 60% einnehmen. */
    min-height:clamp(230px, 18vw, 300px);
    display:flex; flex-direction:column; justify-content:center;
    padding-top:30px; padding-bottom:30px;
  }
  .hero-copy{ width:min(60%, 780px); }
  .hero h1{
    font-size:clamp(29px, 3.6vw, 52px); line-height:1.08; letter-spacing:-.03em;
    font-weight:700; color:var(--navy);
  }
  .hero h1 em{ font-style:normal; color:var(--green); }
  .hero-sub{
    font-size:clamp(16px, 1.4vw, 19px); line-height:1.55; color:#4c5c66;
    max-width:46ch; margin-top:12px;
  }
  .hero-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
  .hero-tags > span{
    display:inline-flex; align-items:center; gap:8px;
    background:rgba(255,255,255,.86); border:1px solid var(--line);
    border-radius:100px; padding:8px 16px;
    font-size:13px; font-weight:700; color:var(--navy);
  }
  .hero-tags .ic{ width:14px; height:14px; color:var(--green); }
  .hero-cta{ display:flex; flex-wrap:wrap; gap:11px; margin-top:20px; }
  .btn.outline{
    background:transparent; color:var(--navy); box-shadow:inset 0 0 0 2px var(--navy);
  }
  .btn.outline:hover{ background:var(--navy); color:#fff; box-shadow:inset 0 0 0 2px var(--navy); }
  .hero-rule{ position:absolute; left:0; right:0; bottom:0; height:4px; background:var(--green); z-index:3; }

  /* ---------- Vorteile: weisse Karten, Icon im gruenen Kreis ---------- */
  .claims{ background:var(--bg); }
  .claim-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:clamp(12px, 1.4vw, 20px); }
  .claim{
    background:#fff; border:1px solid #d9e0d8; border-radius:18px;
    box-shadow:0 4px 14px rgba(4,57,94,.05);
    padding:clamp(20px, 2vw, 28px) clamp(16px, 1.6vw, 22px); text-align:center;
    transition:box-shadow .2s ease, transform .2s ease;
  }
  .claim:hover{ transform:translateY(-3px); box-shadow:0 12px 26px rgba(4,57,94,.08); }
  .claim .ring{
    width:58px; height:58px; margin:0 auto 15px; border-radius:50%;
    background:var(--green); color:#fff;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 18px rgba(86,146,30,.30);
    transition:background .2s ease, box-shadow .2s ease;
  }
  .claim .ring .ic{ width:27px; height:27px; color:#fff; }
  .claim:hover .ring{ background:var(--navy); box-shadow:0 10px 22px rgba(4,57,94,.28); }
  .claim strong{ display:block; font-size:16.5px; font-weight:700; color:var(--navy); margin-bottom:6px; }
  .claim span{ display:block; font-size:14.5px; color:var(--muted); line-height:1.5; }

  /* ============================================================
     ARTIKELBESCHREIBUNG
     Das HTML kommt 1:1 aus eBay - gestaltet wird ausschliesslich hier.
     Alle Regeln haengen an .desc, damit sie unabhaengig von den
     Klassennamen im eingefuegten Block greifen.
     ============================================================ */
  .article{ background:#fff; }
  .desc-shell{
    position:relative; background:#fff; border:1px solid var(--line); border-radius:24px;
    padding:clamp(24px, 2.8vw, 46px) clamp(20px, 3vw, 52px);
    box-shadow:0 14px 40px rgba(4,57,94,.06);
  }
  .desc-shell::before{
    content:""; position:absolute; left:0; top:34px; bottom:34px; width:5px;
    background:var(--green); border-radius:0 4px 4px 0;
  }

  /* Inline-Styles aus dem eBay-Editor neutralisieren */
  .desc, .desc *{
    font-family:inherit !important;
    color:inherit !important;
    background:transparent !important;
    text-align:left !important;
    text-transform:none !important;
  }
  .desc{ color:#3c4a55 !important; }
  .desc p, .desc div, .desc span, .desc font, .desc b, .desc li{
    font-size:17px !important; line-height:1.65 !important; font-weight:400 !important;
  }
  .desc p{ margin:0 0 9px; }
  .desc p:last-child{ margin-bottom:0; }

  /* Bootstrap-Reste aus dem Editor */
  .desc .row, .desc [class*="col-"], .desc .about-product{
    display:block !important; width:100% !important; max-width:100% !important;
    margin:0 !important; padding:0 !important; float:none !important;
  }
  /* Tabellen aus der Beschreibung - sichtbar und lesbar.
     (Frueher komplett ausgeblendet; das hat auch echte Tabellen
     des Verkaeufers verschluckt und die Tabellen-Funktion des
     Editors unbrauchbar gemacht.) */
  .desc table{ width:100%; border-collapse:collapse; margin:16px 0; }
  .desc th, .desc td{
    padding:10px 13px; border:1px solid var(--line); vertical-align:top;
    text-align:left !important;
  }
  .desc th{ font-weight:700 !important; background:var(--sand) !important; }

  /* Formatierungen aus dem exio-Editor (Fett/Zentriert) duerfen die
     Neutralisierung oben ueberschreiben. */
  .desc span.text-modifier[style*="bolder"]{ font-weight:700 !important; }
  .desc span.text-modifier[style*="center"]{
    display:block !important; width:100% !important; text-align:center !important;
  }

  /* Produktname */
  .desc h1{ margin:0 0 20px !important; padding-bottom:18px; border-bottom:1px solid var(--line); }
  .desc h1, .desc h1 *{
    font-size:clamp(23px, 2.7vw, 37px) !important; line-height:1.15 !important;
    letter-spacing:-.025em !important; font-weight:700 !important; color:var(--navy) !important;
  }
  /* "Artikelbeschreibung" -> Zwischenueberschrift */
  .desc .product-text{ margin:0 0 14px !important; }
  .desc .product-text, .desc .product-text *{
    font-size:12.5px !important; font-weight:800 !important; letter-spacing:.22em !important;
    text-transform:uppercase !important; color:var(--green) !important; line-height:1.5 !important;
  }
  /* der Absatz direkt danach ist immer der Einleitungstext */
  .desc .product-text + p, .desc .product-text + p *{
    font-size:19px !important; line-height:1.6 !important; color:var(--ink) !important;
  }
  .desc .product-text + p{ margin-bottom:22px; }

  /* ---------- Kategorien: 6 hochformatige Kacheln, Text unter dem Bild ---------- */
  .cats{ background:var(--bg); }
  .cats .head-row{
    display:flex; align-items:flex-end; justify-content:space-between; gap:20px;
    flex-wrap:wrap; margin-bottom:clamp(20px, 2.2vw, 30px);
  }
  .cat-grid{ display:grid; grid-template-columns:repeat(6, 1fr); gap:clamp(10px, 1.4vw, 18px); }
  .cat{ display:block; }
  /* Bild nie ueber Originalgroesse (236x398) hinaus */
  .cat .shot{
    position:relative; border-radius:16px; overflow:hidden;
    aspect-ratio:236 / 398; background:#dfe5da; max-width:236px;
  }
  .cat .shot img{ width:100%; height:100%; object-fit:cover; }
  .cat .shot::after{
    content:""; position:absolute; inset:0; border-radius:16px;
    box-shadow:inset 0 -60px 60px -40px rgba(4,57,94,.30);
  }
  .cat h3{
    font-size:14.5px; font-weight:700; color:var(--navy); line-height:1.3;
    margin-top:12px; padding-left:12px; border-left:3px solid var(--green);
  }
  .cats .foot-row{ margin-top:clamp(20px, 2.2vw, 30px); text-align:center; }

  /* ---------- Argumente + Shop-Aufruf in EINER Karte ---------- */
  .pitch{ background:#fff; }
  .pitch-card{
    display:grid; grid-template-columns:1.55fr 1fr;
    background:var(--navy); border-radius:28px; overflow:hidden;
    box-shadow:0 22px 50px rgba(4,57,94,.18);
  }
  .pitch-main{ padding:clamp(26px, 3vw, 48px) clamp(22px, 3vw, 52px); color:#fff; }
  .pitch-main .kicker{ color:var(--green-l); }
  .pitch-main h2{
    font-size:clamp(23px, 2.4vw, 34px); line-height:1.18; letter-spacing:-.02em;
    font-weight:700; color:#fff; max-width:20ch;
  }
  .checks{ list-style:none; margin-top:clamp(18px, 2vw, 26px); }
  .checks li{
    display:flex; align-items:flex-start; gap:13px;
    padding:12px 0; border-top:1px solid rgba(255,255,255,.12);
    font-size:15.5px; line-height:1.55; color:#c2d6e5;
  }
  .checks li .ic{ width:20px; height:20px; color:var(--green-l); margin-top:2px; }
  .checks li b{ color:#fff; font-weight:700; }

  .pitch-side{
    background:var(--green); color:#fff;
    padding:clamp(26px, 3vw, 44px) clamp(22px, 2.4vw, 36px);
    display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
  }
  .stars{ display:flex; gap:3px; color:#fff; margin-bottom:14px; }
  .stars .ic{ width:19px; height:19px; }
  .pitch-side strong{
    display:block; font-size:clamp(19px, 1.9vw, 25px); font-weight:700;
    line-height:1.2; letter-spacing:-.015em;
  }
  .pitch-side p{ font-size:15px; line-height:1.6; color:rgba(255,255,255,.9); margin-top:10px; }
  .pitch-side .btn{ margin-top:20px; }

  /* ---------- Fuss: hell und mittig ---------- */
  .foot{ background:var(--bg); border-top:1px solid var(--line); text-align:center; }
  .foot .wrap{ padding-top:clamp(30px, 3.4vw, 50px); padding-bottom:clamp(18px, 2vw, 26px); }
  .foot-logo{ width:250px; height:auto; margin:0 auto; }
  .foot-tag{
    font-size:15px; line-height:1.6; color:var(--muted);
    max-width:44ch; margin:14px auto 0;
  }
  .foot-nav{
    display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
    gap:6px 0; margin-top:clamp(18px, 2vw, 26px);
  }
  .foot-nav a{
    display:inline-flex; align-items:center; font-size:14.5px; font-weight:600;
    color:var(--navy); padding:4px 0; transition:color .18s ease;
  }
  .foot-nav a:hover{ color:var(--green); }
  .foot-nav a:not(:last-child)::after{
    content:"\2022"; color:var(--green); margin:0 clamp(10px, 1.4vw, 20px); font-weight:700;
  }
  .foot-rule{
    height:1px; background:var(--line);
    margin:clamp(20px, 2.2vw, 30px) 0 clamp(14px, 1.6vw, 20px);
  }
  .copy{ font-size:12.5px; color:#8c9aa2; }

  /* ---------- responsive ---------- */
  @media (max-width:1000px){
    .cat-grid{ grid-template-columns:repeat(3, 1fr); gap:16px; }
    .claim-grid{ grid-template-columns:1fr 1fr; }
    .pitch-card{ grid-template-columns:1fr; }
    .head .logo{ width:250px; }
  }
  @media (max-width:820px){
    /* Foto tritt zurueck, damit die Headline auf hellem Grund sitzt */
    .hero-media{ background-size:cover; background-position:76% center; opacity:.4; }
    .hero .wrap{ min-height:230px; }
    .hero-copy{ width:100%; }
  }
  @media (max-width:600px){
    body{ font-size:16px; }
    .cat-grid{ grid-template-columns:1fr 1fr; }
    .claim-grid{ grid-template-columns:1fr 1fr; gap:12px; }
    .claim{ padding:16px 12px; border-radius:14px; }
    .claim strong{ font-size:15px; }
    .claim span{ font-size:13.5px; line-height:1.4; }
    .head .wrap{ justify-content:center; }
    .mainnav{ justify-content:center; gap:16px; }
    .mainnav a{ font-size:13px; padding:7px 0; }
    .cats .head-row{ display:block; }
  }
  /* ==========================================================
     POPRAWKI EXIO 2026-07-31
     ========================================================== */

  /* ---------- menu gorne: rozwijane na telefonie ---------- */
  .navtoggle{ display:none; }
  .navcheck{ display:none; }

  @media (max-width:820px){
    .head .wrap{ display:block; text-align:center; }
    .head .logo{ display:inline-block; }
    .mainnav{ display:block; margin-top:6px; }
    .navtoggle{
      display:inline-flex; align-items:center; gap:9px; cursor:pointer;
      font-size:14px; font-weight:700; color:var(--navy); user-select:none;
      border:1px solid var(--line); border-radius:10px; padding:9px 16px;
    }
    .navtoggle .ic{ width:17px; height:17px; color:var(--green); }
    .mainnav > a{ display:none; }
    .navcheck:checked ~ a{
      display:flex; justify-content:center; padding:10px 0;
      border-bottom:0; border-top:1px solid var(--line);
    }
  }

  /* ---------- ikony pod hero: karuzela zamiast 2 wierszy kafli ---------- */
  @media (max-width:600px){
    .claims .claim-grid{
      display:block !important; position:relative;
      grid-template-columns:none !important; min-height:96px;
    }
    .claim{
      position:absolute; left:0; right:0; top:50%;
      display:flex !important; align-items:center; gap:14px; text-align:left !important;
      padding:14px 16px !important; margin:0 !important;
      opacity:0; animation:hgClaims 16s linear infinite;
    }
    .claim .ring{
      width:46px !important; height:46px !important; margin:0 !important; flex:none;
    }
    .claim .ring .ic{ width:22px; height:22px; }
    .claim strong{ margin-bottom:2px !important; }
    .claim:nth-child(1){ animation-delay:0s; }
    .claim:nth-child(2){ animation-delay:4s; }
    .claim:nth-child(3){ animation-delay:8s; }
    .claim:nth-child(4){ animation-delay:12s; }
  }
  @keyframes hgClaims{
    0%       { opacity:0; transform:translateY(-38%); }
    3%, 22%  { opacity:1; transform:translateY(-50%); }
    25%, 100%{ opacity:0; transform:translateY(-62%); }
  }
  @media (max-width:600px) and (prefers-reduced-motion:reduce){
    .claims .claim-grid{ min-height:0 !important; }
    .claim{
      position:static !important; animation:none !important;
      opacity:1 !important; transform:none !important; margin-bottom:10px !important;
    }
  }

  /* stopka na bialo - logo img09.png ma wypalone biale tlo (bez alfy),
     wiec na szarym var(--bg) odcinal sie bialy prostokat */
  .foot{ background:#fff; }
