/* ============================================================
   ML-Resale — öffentliches Website-Design
   Portiert 1:1 aus der bestehenden statischen Seite.
   Startseiten-Design + Produktdetailseiten-Design.
   ============================================================ */

/* ===================== STARTSEITE / GLOBAL ===================== */

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

    :root {
      --red:      #E6141E;
      --red-dark: #C00D16;
      --red-pale: #FEF2F2;
      --dark:     #1E1E1E;
      --gray:     #3D3D3D;
      --mid:      #717171;
      --border:   #E0E0E0;
      --bg:       #F7F7F7;
      --white:    #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--gray);
      background: var(--white);
      line-height: 1.65;
      font-size: 16px;
      cursor: none;
      overflow-x: hidden;
    }

    /* ── CUSTOM CURSOR ── */
    #cursor {
      width: 12px; height: 12px;
      background: var(--red);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%,-50%);
      transition: transform 0.1s, width 0.25s, height 0.25s, background 0.2s;
      mix-blend-mode: multiply;
    }
    #cursor-ring {
      width: 36px; height: 36px;
      border: 1.5px solid rgba(230,20,30,0.4);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%,-50%);
      transition: transform 0.18s cubic-bezier(.25,.46,.45,.94), width 0.3s, height 0.3s;
    }
    body:has(a:hover) #cursor,
    body:has(button:hover) #cursor { width: 20px; height: 20px; }
    body:has(a:hover) #cursor-ring,
    body:has(button:hover) #cursor-ring { width: 56px; height: 56px; border-color: rgba(230,20,30,0.25); }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      height: 64px;
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .logo-mark { width: 44px; height: 44px; }
    .logo-text { font-size: 1rem; font-weight: 400; color: var(--gray); letter-spacing: -0.01em; margin-left: 2px; }
    .logo-img { height: 40px; width: auto; display: block; }

    nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
    nav ul a { color: var(--mid); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; position: relative; }
    nav ul a:not(.nav-cta)::after {
      content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
      height: 1.5px; background: var(--red);
      transform: scaleX(0); transform-origin: right;
      transition: transform 0.3s cubic-bezier(.25,.46,.45,.94);
    }
    nav ul a:not(.nav-cta):hover { color: var(--red); }
    nav ul a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }

    .nav-cta {
      background: var(--red) !important; color: var(--white) !important;
      padding: 0.45rem 1.1rem; border-radius: 3px;
      font-weight: 600 !important;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
    }
    .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px) !important; box-shadow: 0 4px 16px rgba(230,20,30,0.35) !important; }

    .nav-mobile-toggle { display: none; background: none; border: none; cursor: none; padding: 4px; }

    /* ── HERO ── */
    #hero {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
      padding: 128px 7vw 96px;
      position: relative;
      overflow: hidden;
    }

    #hero-canvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 0;
      /* Partikel über die volle Breite, aber nur im oberen Bereich – nach unten ausblendend */
      -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 72%);
      mask-image: linear-gradient(to bottom, #000 40%, transparent 72%);
    }

    /* Spotlight that follows cursor inside hero */
    #hero-spotlight {
      position: absolute; inset: 0;
      pointer-events: none;
      z-index: 1;
      background: radial-gradient(circle 400px at 30% 50%, rgba(230,20,30,0.05) 0%, transparent 70%);
      transition: background 0.1s;
    }

    /* Text links */
    .hero-left { position: relative; z-index: 2; text-align: left; }

    /* Bild rechts – natürliche Größe, abgerundet mit Schatten */
    .hero-media { position: relative; z-index: 2; }
    .hero-media .hero-photo {
      width: 100%; height: auto; display: block;
      border-radius: 12px;
      box-shadow: 0 30px 60px -22px rgba(0,0,0,0.35), 0 12px 26px rgba(0,0,0,0.08);
    }
    /* kleiner Badge auf dem Bild */
    .hero-badge {
      position: absolute; left: 16px; bottom: 16px;
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.96); backdrop-filter: blur(6px);
      color: var(--dark); font-size: 0.78rem; font-weight: 600;
      padding: 0.5rem 0.85rem; border-radius: 999px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.14);
    }
    .hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(230,20,30,0.15); }

    .glovebox-drawing { width: 82%; max-width: 450px; }

    /* SVG path draw-on animation */
    .draw-path {
      stroke-dasharray: 1500;
      stroke-dashoffset: 1500;
      animation: drawLine 2.5s cubic-bezier(.4,0,.2,1) forwards;
    }
    .draw-path-2 { animation-delay: 0.3s; }
    .draw-path-3 { animation-delay: 0.6s; }
    .draw-path-4 { animation-delay: 0.9s; }
    .draw-path-5 { animation-delay: 1.1s; }
    .draw-path-6 { animation-delay: 1.4s; }
    @keyframes drawLine {
      to { stroke-dashoffset: 0; }
    }

    /* Floating badge on hero right */
    .hero-float-badge {
      position: absolute; top: 30%; right: 8%;
      background: white;
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 0.8rem 1rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
      font-size: 0.78rem;
      animation: floatBadge 4s ease-in-out infinite;
      z-index: 3;
    }
    .hero-float-badge strong { display: block; font-size: 1.1rem; color: var(--red); font-weight: 700; }
    @keyframes floatBadge {
      0%,100% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
    }

    .hero-float-badge2 {
      position: absolute; bottom: 28%; left: 5%;
      background: var(--red);
      border-radius: 6px;
      padding: 0.7rem 1rem;
      box-shadow: 0 8px 24px rgba(230,20,30,0.3);
      font-size: 0.75rem;
      color: white;
      animation: floatBadge 4s ease-in-out infinite 1.5s;
      z-index: 3;
    }
    .hero-float-badge2 strong { display: block; font-size: 1rem; color: white; font-weight: 700; }

    .hero-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--red);
      border: 1.5px solid var(--red); padding: 0.25rem 0.7rem;
      border-radius: 2px; margin-bottom: 1.5rem;
      opacity: 0; animation: fadeUp 0.6s forwards 0.3s;
    }
    .hero-tag::before {
      content: ''; width: 6px; height: 6px; background: var(--red);
      border-radius: 50%; animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.6); }
    }

    h1 {
      font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
      color: var(--dark); line-height: 1.15;
      letter-spacing: -0.02em; margin-bottom: 1.2rem;
    }
    .h1-line {
      display: block; overflow: hidden;
    }
    .h1-line-inner {
      display: block;
      transform: translateY(100%);
      animation: slideUp 0.7s cubic-bezier(.25,.46,.45,.94) forwards;
    }
    .h1-line:nth-child(2) .h1-line-inner { animation-delay: 0.15s; }
    .h1-line:nth-child(3) .h1-line-inner { animation-delay: 0.3s; }
    @keyframes slideUp { to { transform: translateY(0); } }

    h1 .line-accent { color: var(--red); font-weight: 300; font-style: italic; }

    .hero-body {
      font-size: 1rem; color: var(--mid); max-width: 520px;
      margin: 0 0 2.2rem; line-height: 1.8;
      opacity: 0; animation: fadeUp 0.6s forwards 0.7s;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-actions {
      display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem;
      opacity: 0; animation: fadeUp 0.6s forwards 0.9s;
    }

    /* MAGNETIC BUTTON */
    .btn-red {
      background: var(--red); color: var(--white);
      padding: 0.8rem 1.8rem; border-radius: 3px;
      font-weight: 600; font-size: 0.9rem; text-decoration: none;
      display: inline-block; position: relative; overflow: hidden;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    }
    .btn-red::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-101%); skewX(-15deg);
      transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
    }
    .btn-red:hover::before { transform: translateX(101%); }
    .btn-red:hover { background: var(--red-dark); box-shadow: 0 8px 28px rgba(230,20,30,0.4); transform: translateY(-2px); }

    .btn-ghost {
      color: var(--dark); padding: 0.8rem 1.8rem; border-radius: 3px;
      font-weight: 500; font-size: 0.9rem; text-decoration: none;
      border: 1.5px solid var(--border);
      transition: border-color 0.2s, color 0.2s, background 0.2s;
      display: inline-block;
    }
    .btn-ghost:hover { border-color: var(--dark); background: var(--dark); color: white; }

    .hero-meta {
      display: flex; gap: 2.5rem; flex-wrap: wrap;
      padding-top: 2rem; border-top: 1px solid var(--border);
      opacity: 0; animation: fadeUp 0.6s forwards 1.1s;
    }
    .meta-item strong {
      display: block; font-size: 1.5rem; font-weight: 700;
      color: var(--dark); letter-spacing: -0.02em;
    }
    .meta-item span { font-size: 0.78rem; color: var(--mid); }

    /* ── INTRO STRIP ── */
    #intro-strip {
      background: var(--red); padding: 1.2rem 7vw;
      display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
      position: relative; overflow: hidden;
    }
    #intro-strip::after {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.04) 80px, rgba(255,255,255,0.04) 81px);
      pointer-events: none;
    }
    #intro-strip p { color: rgba(255,255,255,0.9); font-size: 0.9rem; flex: 1; }
    #intro-strip strong { color: white; }
    #intro-strip a { color: white; font-weight: 600; font-size: 0.85rem; text-decoration: underline; white-space: nowrap; }

    /* ── SECTIONS ── */
    section.std { padding: 90px 7vw; }
    section.std.bg-gray { background: var(--bg); }

    .s-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--red); margin-bottom: 0.6rem;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .s-label::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--red); }

    h2 {
      font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700;
      color: var(--dark); line-height: 1.2;
      letter-spacing: -0.015em; margin-bottom: 0.8rem; max-width: 600px;
    }

    .s-intro {
      font-size: 0.97rem; color: var(--mid); max-width: 580px;
      line-height: 1.75; margin-bottom: 2.8rem;
    }

    /* ── USP GRID ── */
    .usp-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0; border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
    }

    .usp-item {
      padding: 2rem 1.8rem;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--white);
      position: relative; overflow: hidden;
      transition: background 0.3s;
    }
    .usp-item::before {
      content: ''; position: absolute;
      bottom: 0; left: 0; right: 0; height: 2px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
    }
    .usp-item:hover::before { transform: scaleX(1); }
    .usp-item:hover { background: var(--red-pale); }
    .usp-item:nth-child(3n) { border-right: none; }
    .usp-item:nth-last-child(-n+3) { border-bottom: none; }

    .usp-num {
      font-size: 0.65rem; font-weight: 700; color: var(--red);
      letter-spacing: 0.1em; margin-bottom: 0.8rem;
    }
    .usp-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
    .usp-item p { font-size: 0.83rem; color: var(--mid); line-height: 1.7; }

    /* ── PRODUCTS ── */
    .product-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 1.5rem;
    }

    .product-card {
      border: 1px solid var(--border); border-radius: 6px;
      background: var(--white); overflow: hidden;
      display: flex; flex-direction: column;
      transition: border-color 0.3s;
      transform-style: preserve-3d;
      perspective: 800px;
    }
    .product-card:hover { border-color: rgba(230,20,30,0.3); }

    .product-img {
      background: var(--bg); height: 260px;
      position: relative; overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    .product-img::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(230,20,30,0) 0%, rgba(230,20,30,0.06) 100%);
      opacity: 0; transition: opacity 0.3s;
    }
    .product-card:hover .product-img::after { opacity: 1; }

    .product-badge {
      position: absolute; top: 10px; left: 10px;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 2px;
    }
    .badge-avail { background: var(--red); color: white; }
    .badge-refurb { background: var(--dark); color: white; }
    .badge-request { background: var(--border); color: var(--mid); }

    .product-body { padding: 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
    .product-body h3 { font-size: 0.97rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
    .product-body p { font-size: 0.82rem; color: var(--mid); line-height: 1.65; margin-bottom: 1rem; flex: 1; }

    .product-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.1rem; }
    .tag {
      font-size: 0.7rem; font-weight: 600;
      background: var(--bg); color: var(--mid);
      padding: 0.18rem 0.5rem; border-radius: 2px;
      border: 1px solid var(--border);
    }

    .btn-outline-red {
      display: inline-block; font-size: 0.82rem; font-weight: 600;
      color: var(--red); border: 1.5px solid var(--red);
      padding: 0.45rem 1rem; border-radius: 3px; text-decoration: none;
      transition: background 0.2s, color 0.2s, transform 0.15s;
      align-self: flex-start;
    }
    .btn-outline-red:hover { background: var(--red); color: white; transform: translateY(-1px); }

    .product-note {
      margin-top: 2rem; background: var(--white);
      border: 1px solid var(--border); border-left: 3px solid var(--red);
      border-radius: 3px; padding: 1.2rem 1.5rem;
      display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
    }
    .product-note p { font-size: 0.88rem; color: var(--mid); flex: 1; margin: 0.2rem 0 0; }
    .product-note strong { color: var(--dark); }

    /* ── PROCESS ── */
    .process-track {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative;
    }
    .process-track::before {
      content: ''; position: absolute;
      top: 21px; left: 10%; right: 10%; height: 1px;
      background: linear-gradient(90deg, var(--red), rgba(230,20,30,0.2));
    }

    .process-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
    .step-dot {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--white); border: 2px solid var(--red);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.2rem;
      font-size: 0.8rem; font-weight: 700; color: var(--red);
      transition: background 0.3s, color 0.3s, transform 0.3s;
    }
    .process-step:hover .step-dot {
      background: var(--red); color: white; transform: scale(1.1);
    }
    .process-step h3 { font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
    .process-step p { font-size: 0.78rem; color: var(--mid); line-height: 1.6; }

    /* ── COUNTER SECTION ── */
    #counters {
      background: var(--dark); padding: 70px 7vw;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2rem; text-align: center;
      position: relative; overflow: hidden;
    }
    #counters::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(
        45deg, transparent, transparent 40px,
        rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
      );
    }
    .counter-item { position: relative; z-index: 1; }
    .counter-val {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
      color: var(--red); letter-spacing: -0.03em;
      line-height: 1;
    }
    .counter-val .suffix { font-size: 0.6em; font-weight: 400; }
    .counter-label {
      font-size: 0.78rem; color: rgba(255,255,255,0.5);
      margin-top: 0.5rem; letter-spacing: 0.05em;
    }

    /* ── PARTNER ── */
    .partner-wrap {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 4rem;
      align-items: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 3rem;
    }
    .partner-logo-box {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 2.5rem 2rem;
    }
    .partner-logo {
      width: 100%;
      max-width: 320px;
      height: auto;
      display: block;
    }
    .partner-text p {
      font-size: 0.92rem;
      color: var(--mid);
      line-height: 1.85;
      margin-bottom: 1.2rem;
    }
    .partner-text p:last-child { margin-bottom: 0; }

    @media (max-width: 780px) {
      .partner-wrap { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
      .partner-logo-box { padding: 2rem 1.5rem; }
    }

    /* ── BRANCHES ── */
    .branch-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 0.75rem;
    }
    .branch-item {
      padding: 1rem 1.2rem; background: var(--white);
      border: 1px solid var(--border); border-radius: 3px;
      font-size: 0.875rem; font-weight: 500; color: var(--dark);
      display: flex; align-items: center; gap: 0.7rem;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .branch-item:hover { border-color: var(--red); transform: translateX(4px); box-shadow: -3px 0 0 var(--red); }
    .branch-item::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

    /* ── KONTAKT ── */
    .kontakt-wrap {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 5vw; align-items: start;
    }
    .kontakt-left h2 { max-width: none; }
    .kontakt-left p { font-size: 0.93rem; color: var(--mid); line-height: 1.75; margin-bottom: 2rem; }

    .contact-row { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.9rem; font-size: 0.88rem; }
    .contact-row .c-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid); margin-bottom: 0.15rem; display: block; }
    .contact-row a { color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.2s; }
    .contact-row a:hover { color: var(--red); }

    .form-field { margin-bottom: 1rem; }
    .form-field label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.35rem; }
    .form-field input, .form-field select, .form-field textarea {
      width: 100%; border: 1.5px solid var(--border); border-radius: 3px;
      padding: 0.6rem 0.8rem; font-size: 0.9rem;
      font-family: 'Inter', sans-serif; color: var(--dark);
      background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
      outline: none; border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(230,20,30,0.08);
    }
    .form-field textarea { resize: vertical; min-height: 90px; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

    .form-submit {
      width: 100%; background: var(--red); color: white; border: none;
      padding: 0.85rem; border-radius: 3px;
      font-size: 0.95rem; font-weight: 700; font-family: 'Inter', sans-serif;
      cursor: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      margin-top: 0.5rem; position: relative; overflow: hidden;
    }
    .form-submit::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,255,255,0.12);
      transform: translateX(-101%); skewX(-15deg);
      transition: transform 0.4s;
    }
    .form-submit:hover::before { transform: translateX(101%); }
    .form-submit:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(230,20,30,0.35); }

    .form-field label .req { color: var(--red); margin-left: 0.15rem; }
    .form-fine { font-size: 0.72rem; color: var(--mid); margin-top: 0.6rem; line-height: 1.5; }

    .consent-row {
      display: flex; align-items: flex-start; gap: 0.6rem;
      font-size: 0.78rem; color: var(--mid); line-height: 1.5;
      margin: 0.9rem 0 1rem; cursor: pointer;
    }
    .consent-row input[type="checkbox"] {
      width: auto; margin-top: 2px; flex-shrink: 0; accent-color: var(--red); cursor: pointer;
    }
    .consent-row a { color: var(--red); text-decoration: underline; }

    .form-status {
      font-size: 0.85rem; margin-top: 0.8rem; padding: 0.7rem 0.9rem;
      border-radius: 4px; display: none;
    }
    .form-status.show-success { display: block; background: #EEF8EE; color: #1a7a1a; }
    .form-status.show-error { display: block; background: #FEF2F2; color: var(--red); }

    /* ── COOKIE BANNER ── */
    #cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
      background: var(--dark); color: rgba(255,255,255,0.85);
      padding: 1.3rem 7vw; box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
      display: none;
    }
    #cookie-banner.show { display: block; animation: cookieIn 0.4s ease; }
    @keyframes cookieIn { from { transform: translateY(100%); } to { transform: translateY(0); } }

    .cookie-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      gap: 2rem; flex-wrap: wrap;
    }
    .cookie-text { flex: 1; min-width: 260px; }
    .cookie-text h3 { font-size: 0.95rem; color: white; margin-bottom: 0.3rem; }
    .cookie-text p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
    .cookie-text a { color: var(--red); text-decoration: underline; }

    .cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
    .cookie-btn {
      padding: 0.6rem 1.2rem; border-radius: 4px; font-size: 0.83rem; font-weight: 600;
      cursor: pointer; border: none; font-family: 'Inter', sans-serif; white-space: nowrap;
      transition: background 0.2s, transform 0.1s;
    }
    .cookie-btn-accept { background: var(--red); color: white; }
    .cookie-btn-accept:hover { background: var(--red-dark); }
    .cookie-btn-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25); }
    .cookie-btn-reject:hover { border-color: rgba(255,255,255,0.5); color: white; }
    .cookie-btn-settings { background: transparent; color: rgba(255,255,255,0.5); text-decoration: underline; padding: 0.6rem 0.4rem; font-weight: 500; }
    .cookie-btn-settings:hover { color: white; }

    /* Settings panel */
    #cookie-settings {
      display: none; max-width: 1100px; margin: 1.2rem auto 0;
      border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.2rem;
    }
    #cookie-settings.show { display: block; }
    .cookie-option {
      display: flex; align-items: flex-start; justify-content: space-between;
      gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .cookie-option:last-child { border-bottom: none; }
    .cookie-option-text strong { font-size: 0.85rem; color: white; display: block; margin-bottom: 0.2rem; }
    .cookie-option-text span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
    .cookie-toggle {
      position: relative; width: 42px; height: 24px; flex-shrink: 0;
    }
    .cookie-toggle input { opacity: 0; width: 0; height: 0; }
    .cookie-toggle-slider {
      position: absolute; inset: 0; background: rgba(255,255,255,0.2);
      border-radius: 24px; cursor: pointer; transition: background 0.2s;
    }
    .cookie-toggle-slider::before {
      content: ''; position: absolute; width: 18px; height: 18px;
      left: 3px; top: 3px; background: white; border-radius: 50%;
      transition: transform 0.2s;
    }
    .cookie-toggle input:checked + .cookie-toggle-slider { background: var(--red); }
    .cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
    .cookie-toggle input:disabled + .cookie-toggle-slider { background: rgba(255,255,255,0.15); cursor: not-allowed; }

    .cookie-settings-actions { margin-top: 1.2rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }

    /* Floating re-open button, shown after a choice has been made */
    #cookie-reopen {
      position: fixed; bottom: 16px; left: 16px; z-index: 9998;
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--dark); color: white; border: none; cursor: pointer;
      font-size: 1rem; display: none; align-items: center; justify-content: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    }
    #cookie-reopen.show { display: flex; }

    @media (max-width: 700px) {
      .cookie-inner { flex-direction: column; align-items: stretch; }
      .cookie-actions { justify-content: flex-end; }
    }

    /* ── FOOTER ── */
    footer { background: var(--dark); color: rgba(255,255,255,0.45); padding: 3rem 7vw 2rem; font-size: 0.82rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
    .footer-brand p { margin-top: 0.8rem; max-width: 280px; line-height: 1.7; }
    .footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-bottom: 0.9rem; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.5rem; }
    .footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .footer-col a:hover { color: var(--red); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(.25,.46,.45,.94), transform 0.6s cubic-bezier(.25,.46,.45,.94); }
    .reveal.in { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s cubic-bezier(.25,.46,.45,.94), transform 0.6s cubic-bezier(.25,.46,.45,.94); }
    .reveal-left.in { opacity: 1; transform: none; }
    .reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.5s ease, transform 0.5s ease; }
    .reveal-scale.in { opacity: 1; transform: scale(1); }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      body { cursor: auto; }
      #cursor, #cursor-ring { display: none; }
      #hero { grid-template-columns: 1fr; gap: 34px; padding: 104px 6vw 60px; }
      .usp-grid { grid-template-columns: 1fr 1fr; }
      .usp-item:nth-child(2n) { border-right: none; }
      #counters { grid-template-columns: 1fr 1fr; }
      .process-track { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .process-track::before { display: none; }
      .kontakt-wrap { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      nav ul { display: none; }
      .nav-mobile-toggle { display: block; cursor: pointer; }
    }
    @media (max-width: 580px) {
      .usp-grid { grid-template-columns: 1fr; }
      .usp-item { border-right: none !important; }
      #counters { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
      .form-row-2 { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      h1 { font-size: 1.8rem; }
    }

    .product-img {
      background: white;
      height: 240px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    .product-img img {
      width: 100%; height: 100%;
      object-fit: contain;
      object-position: center;
      padding: 1rem;
      box-sizing: border-box;
      transition: transform 0.5s cubic-bezier(.25,.46,.45,.94), filter 0.4s;
      filter: saturate(0.88) contrast(1.05);
      transform-origin: center center;
      display: block;
    }
    .product-card:hover .product-img img {
      transform: scale(1.04);
      filter: saturate(1) contrast(1.08);
    }

    /* ── GALERIE ── */
    #galerie { background: var(--dark); }
    #galerie .s-label { color: rgba(255,255,255,0.45); }
    #galerie h2 { color: white; }
    #galerie .s-intro { color: rgba(255,255,255,0.6); }

    .galerie-grid {
      columns: 3; column-gap: 0.9rem; margin-top: 2rem;
    }
    .galerie-item {
      break-inside: avoid; margin-bottom: 0.9rem;
      position: relative; border-radius: 5px;
      overflow: hidden; cursor: pointer;
    }
    .galerie-item img {
      width: 100%; display: block;
      transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), filter 0.3s;
      filter: brightness(0.92);
    }
    .galerie-item:hover img { transform: scale(1.04); filter: brightness(1); }
    .galerie-item-overlay {
      position: absolute; inset: 0;
      background: rgba(230,20,30,0);
      transition: background 0.3s;
      display: flex; align-items: center; justify-content: center;
    }
    .galerie-item:hover .galerie-item-overlay { background: rgba(230,20,30,0.12); }
    .galerie-zoom-icon {
      width: 42px; height: 42px;
      background: rgba(255,255,255,0.92); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; opacity: 0; transform: scale(0.7);
      transition: opacity 0.25s, transform 0.25s;
    }
    .galerie-item:hover .galerie-zoom-icon { opacity: 1; transform: scale(1); }
    .galerie-item-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
      color: white; font-size: 0.75rem; padding: 1.2rem 0.8rem 0.6rem;
      opacity: 0; transition: opacity 0.25s;
    }
    .galerie-item:hover .galerie-item-caption { opacity: 1; }
    @media (max-width: 780px) { .galerie-grid { columns: 2; } }
    @media (max-width: 480px) { .galerie-grid { columns: 1; } }

    /* ── LIGHTBOX ── */
    #lightbox {
      display: none; position: fixed; inset: 0; z-index: 8000;
      background: rgba(0,0,0,0.93); backdrop-filter: blur(6px);
      align-items: center; justify-content: center; flex-direction: column;
    }
    #lightbox.show { display: flex; animation: lbIn 0.2s ease; }
    @keyframes lbIn { from { opacity:0; } to { opacity:1; } }
    #lightbox-img {
      max-width: 90vw; max-height: 80vh; object-fit: contain;
      border-radius: 4px; box-shadow: 0 20px 80px rgba(0,0,0,0.7);
      transition: opacity 0.15s;
    }
    #lightbox-img.fading { opacity: 0; }
    #lightbox-caption {
      color: rgba(255,255,255,0.65); font-size: 0.83rem;
      margin-top: 1rem; text-align: center; max-width: 600px;
    }
    #lightbox-counter { color: rgba(255,255,255,0.3); font-size: 0.72rem; margin-top: 0.3rem; }
    .lb-btn {
      position: fixed; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      color: white; width: 48px; height: 48px; border-radius: 50%;
      font-size: 1.3rem; cursor: pointer; transition: background 0.2s;
      display: flex; align-items: center; justify-content: center;
    }
    .lb-btn:hover { background: rgba(255,255,255,0.22); }
    #lb-prev { left: 1.5rem; }
    #lb-next { right: 1.5rem; }
    #lb-close {
      position: fixed; top: 1.2rem; right: 1.4rem;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      color: white; width: 40px; height: 40px; border-radius: 50%;
      font-size: 1.1rem; cursor: pointer; transition: background 0.2s;
      display: flex; align-items: center; justify-content: center;
    }
    #lb-close:hover { background: rgba(230,20,30,0.7); }

  

/* ---- next style block ---- */

.mobile-menu.open { display: flex !important; }
/* ===================== PRODUKTDETAILSEITEN ===================== */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --red: #E6141E; --red-dark: #C00D16; --red-pale: #FEF2F2;
      --dark: #1E1E1E; --gray: #3D3D3D; --mid: #717171;
      --border: #E0E0E0; --bg: #F7F7F7; --white: #FFFFFF;
    }
    html { scroll-behavior: smooth; }
    body { font-family: "Inter", sans-serif; color: var(--gray); background: var(--white); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
    /* Abstand zur fixierten Navigation, wenn zu #kontakt gesprungen/positioniert wird */
    #kontakt { scroll-margin-top: 84px; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      background: rgba(255,255,255,0.94); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw; height: 64px;
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .logo-text { font-size: 1rem; font-weight: 400; color: var(--gray); margin-left: 3px; }
    .logo-img { height: 40px; width: auto; display: block; }
    nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
    nav ul a { color: var(--mid); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
    nav ul a:hover { color: var(--red); }
    .nav-cta { background: var(--red) !important; color: white !important; padding: 0.45rem 1.1rem; border-radius: 3px; font-weight: 600 !important; transition: background 0.2s !important; }
    .nav-cta:hover { background: var(--red-dark) !important; }

    /* BREADCRUMB */
    .breadcrumb {
      padding: 88px 7vw 0;
      font-size: 0.78rem; color: var(--mid);
      display: flex; align-items: center; gap: 0.5rem;
    }
    .breadcrumb a { color: var(--mid); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--red); }
    .breadcrumb span { color: var(--border); }

    /* HERO */
    .detail-hero {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; padding-top: 64px;
    }
    .detail-img-col {
      position: relative; background: var(--bg);
      display: flex; flex-direction: column;
      min-height: 520px; max-height: 720px;
    }
    .detail-img-main {
      flex: 1; overflow: hidden; position: relative;
      cursor: zoom-in;
    }
    .detail-img-main img {
      width: 100%; height: 100%;
      object-fit: contain;
      object-position: center;
      padding: 1.5rem;
      transition: transform 0.4s ease;
      display: block; box-sizing: border-box;
    }
    .detail-img-main:hover img { transform: scale(1.03); }
    .detail-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(230,20,30,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    /* Thumbnail-Streifen */
    .detail-thumbs {
      display: flex; gap: 0.5rem;
      padding: 0.6rem; background: white;
      border-top: 1px solid var(--border);
      overflow-x: auto; flex-shrink: 0;
    }
    .detail-thumb {
      width: 72px; height: 60px; flex-shrink: 0;
      border-radius: 4px; overflow: hidden;
      border: 2px solid transparent;
      cursor: pointer; transition: border-color 0.2s;
    }
    .detail-thumb.active { border-color: var(--red); }
    .detail-thumb:hover { border-color: var(--red); }
    .detail-thumb img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .detail-badge-wrap {
      position: absolute; top: 1rem; left: 1rem;
      display: flex; gap: 0.5rem; flex-wrap: wrap; z-index: 2;
    }
    .d-badge {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 2px;
    }
    .d-badge-red { background: var(--red); color: white; }
    .d-badge-dark { background: var(--dark); color: white; }
    .d-badge-gray { background: rgba(255,255,255,0.9); color: var(--mid); border: 1px solid var(--border); }

    .detail-info {
      padding: 60px 6vw 60px 5vw;
      display: flex; flex-direction: column; justify-content: center;
      background: var(--white);
    }
    .detail-maker {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--red);
      display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem;
    }
    .detail-maker::before { content: ''; width: 20px; height: 1.5px; background: var(--red); display: block; }
    .detail-info h1 {
      font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700;
      color: var(--dark); line-height: 1.15; letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }
    .detail-desc {
      font-size: 0.97rem; color: var(--mid); line-height: 1.8; margin-bottom: 2rem;
      max-width: 500px;
    }

    /* SPEC TABLE */
    .spec-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
    .spec-table tr { border-bottom: 1px solid var(--border); }
    .spec-table tr:last-child { border-bottom: none; }
    .spec-table td {
      padding: 0.6rem 0; font-size: 0.85rem; vertical-align: top;
      line-height: 1.5;
    }
    .spec-table td:first-child {
      color: var(--mid); font-weight: 500; width: 48%;
      padding-right: 1rem; white-space: nowrap;
    }
    .spec-table td:last-child { color: var(--dark); font-weight: 600; }

    /* CTA */
    .detail-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
    .btn-red {
      background: var(--red); color: white; padding: 0.8rem 1.8rem;
      border-radius: 3px; font-weight: 600; font-size: 0.9rem;
      text-decoration: none; display: inline-block; position: relative; overflow: hidden;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-red::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-101%) skewX(-15deg);
      transition: transform 0.4s;
    }
    .btn-red:hover::before { transform: translateX(101%) skewX(-15deg); }
    .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,20,30,0.35); }
    .btn-ghost {
      color: var(--dark); padding: 0.8rem 1.6rem; border-radius: 3px;
      font-weight: 500; font-size: 0.9rem; text-decoration: none;
      border: 1.5px solid var(--border);
      transition: border-color 0.2s, background 0.2s, color 0.2s;
      display: inline-block;
    }
    .btn-ghost:hover { border-color: var(--dark); background: var(--dark); color: white; }

    /* CONTENT SECTIONS */
    .detail-body { padding: 70px 7vw; }
    .detail-body.bg-gray { background: var(--bg); }

    .s-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--red); margin-bottom: 0.6rem;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .s-label::before { content: ''; width: 20px; height: 1.5px; background: var(--red); display: block; }
    h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--dark);
      line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 0.8rem; max-width: 640px;
    }

    /* CHECKLIST */
    .check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 2rem; margin-top: 1.5rem; }
    .check-item {
      display: flex; align-items: flex-start; gap: 0.6rem;
      font-size: 0.88rem; color: var(--gray); line-height: 1.5;
      padding: 0.5rem 0; border-bottom: 1px solid var(--border);
    }
    .check-item::before {
      content: '✓'; color: var(--red); font-weight: 700; font-size: 0.85rem;
      flex-shrink: 0; margin-top: 1px;
    }

    /* HIGHLIGHT BOX */
    .highlight-box {
      background: var(--dark); color: rgba(255,255,255,0.85);
      border-radius: 6px; padding: 2.5rem 2.5rem;
      margin: 2.5rem 0; position: relative; overflow: hidden;
    }
    .highlight-box::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 4px; height: 100%; background: var(--red);
    }
    .highlight-box h3 { color: white; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.8rem; }
    .highlight-box p { font-size: 0.9rem; line-height: 1.75; }

    /* CONTACT STRIP */
    .contact-strip {
      background: var(--red); padding: 60px 7vw;
      display: grid; grid-template-columns: 1fr auto;
      gap: 2rem; align-items: center;
    }
    .contact-strip h2 { color: white; max-width: none; margin-bottom: 0.5rem; }
    .contact-strip p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
    .btn-white {
      background: white; color: var(--red); padding: 0.85rem 2rem;
      border-radius: 3px; font-weight: 700; font-size: 0.95rem;
      text-decoration: none; white-space: nowrap; display: inline-block;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

    /* BACK LINK */
    .back-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--mid); font-size: 0.82rem; text-decoration: none;
      margin-bottom: 1.5rem; transition: color 0.2s;
    }
    .back-link:hover { color: var(--red); }
    .back-link::before { content: '←'; }

    /* FOOTER */
    footer { background: var(--dark); color: rgba(255,255,255,0.45); padding: 3rem 7vw 2rem; font-size: 0.82rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
    .footer-brand p { margin-top: 0.8rem; max-width: 280px; line-height: 1.7; }
    .footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-bottom: 0.9rem; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.5rem; }
    .footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .footer-col a:hover { color: var(--red); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .reveal.in { opacity: 1; transform: none; }

    /* MOBILE */
    @media (max-width: 860px) {
      .detail-hero { grid-template-columns: 1fr; padding-top: 64px; }
      .detail-img-col { min-height: 300px; max-height: 420px; }
      .detail-info { padding: 2rem 5vw; }
      .contact-strip { grid-template-columns: 1fr; }
      .detail-info { padding: 40px 5vw; }
      .check-grid { grid-template-columns: 1fr; }
      .contact-strip { grid-template-columns: 1fr; }
      nav ul { display: none; }
    }
    
.d-galerie-grid{columns:3;column-gap:0.8rem;margin-top:1.5rem;}
    .d-galerie-item{break-inside:avoid;margin-bottom:0.8rem;position:relative;border-radius:5px;overflow:hidden;cursor:pointer;}
    .d-galerie-item img{width:100%;display:block;transition:transform 0.4s ease,filter 0.3s;filter:brightness(0.92);}
    .d-galerie-item:hover img{transform:scale(1.04);filter:brightness(1);}
    .d-galerie-overlay{position:absolute;inset:0;background:rgba(230,20,30,0);transition:background 0.3s;display:flex;align-items:center;justify-content:center;}
    .d-galerie-item:hover .d-galerie-overlay{background:rgba(230,20,30,0.12);}
    .d-galerie-zoom{width:38px;height:38px;background:rgba(255,255,255,0.92);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1rem;opacity:0;transform:scale(0.7);transition:opacity 0.25s,transform 0.25s;}
    .d-galerie-item:hover .d-galerie-zoom{opacity:1;transform:scale(1);}
    .d-galerie-caption{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(0,0,0,0.65),transparent);color:white;font-size:0.72rem;padding:1rem 0.7rem 0.5rem;opacity:0;transition:opacity 0.25s;}
    .d-galerie-item:hover .d-galerie-caption{opacity:1;}
    .detail-galerie-section{padding:70px 7vw;}
    @media(max-width:600px){.d-galerie-grid{columns:2;}}
    @media(max-width:400px){.d-galerie-grid{columns:1;}}

/* ===================== RECHTSTEXTE / PROSA (Impressum, Datenschutz) ===================== */
.prose-page{padding:104px 7vw 90px;}
.prose{max-width:760px;margin:0 auto;}
.prose h1{font-size:clamp(1.8rem,3vw,2.4rem);font-weight:700;color:var(--dark);line-height:1.15;letter-spacing:-0.01em;margin-bottom:2rem;}
.prose h2{font-size:1.1rem;font-weight:700;color:var(--dark);line-height:1.3;max-width:none;margin-top:2.2rem;margin-bottom:0.7rem;}
.prose h3{font-size:0.95rem;font-weight:700;color:var(--dark);margin-top:1.4rem;margin-bottom:0.5rem;}
.prose p{font-size:0.95rem;color:var(--gray);line-height:1.7;margin-bottom:1rem;}
.prose a{color:var(--red);}
.prose ul{margin:0.5rem 0 1rem 1.3rem;}
.prose li{font-size:0.95rem;color:var(--gray);line-height:1.7;margin-bottom:0.4rem;}
.prose strong{color:var(--dark);}
@media(max-width:700px){.prose-page{padding:96px 5vw 70px;}}
    