:root {
    --white: #ffffff;
    --off-white: #f6f6f4;
    --light-gray: #ecebea;
    --mid-gray: #d8d6d2;
    --text-dark: #111111;
    --text-mid: #3d3d38;
    --text-light: #5c5c56;
    --accent: #25D366;
    --accent-dark: #1da851;
    --accent-premium: #b8952e;
    --accent-premium-soft: rgba(184,149,46,0.14);
    --danger: #c62828;
    --warning: #f57c00;
    --shadow: rgba(0,0,0,0.07);
    --shadow-hover: rgba(0,0,0,0.14);
    --radius-card: 16px;
  }

  html {
    scroll-behavior: smooth;
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    .product-card {
      transition: none;
    }
    .cart-item--pulse {
      animation: none;
    }
    .cart-panel--bump {
      animation: none;
    }
    .product-card--purchase-pulse {
      animation: none !important;
    }
    .scroll-progress-fill {
      transition: none;
    }
  }

  @font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/dm-sans-300.ttf') format('truetype');
  }
  @font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/dm-sans-400.ttf') format('truetype');
  }
  @font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/dm-sans-500.ttf') format('truetype');
  }
  @font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/dm-sans-600.ttf') format('truetype');
  }
  @font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/playfair-400.ttf') format('truetype');
  }
  @font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/playfair-700.ttf') format('truetype');
  }

  *:focus-visible {
    outline: 3px solid var(--text-dark);
    outline-offset: 2px;
    border-radius: 4px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    min-height: 100vh;
  }

  /* Jugendschutz: Vollbild-Altersfreigabe */
  .age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(circle at 50% 0%, #353530 0%, #161614 62%);
    color: #fafaf8;
  }
  .age-gate.hidden { display: none !important; }
  .age-gate-card {
    max-width: 420px;
    width: 100%;
    padding: 28px 26px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    text-align: center;
  }
  .age-gate-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    margin: 14px 0 12px;
    line-height: 1.2;
  }
  .age-gate-card p {
    font-size: 14px;
    line-height: 1.55;
    color: #d9d9d5;
    margin-bottom: 22px;
  }
  .age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 48px;
    padding: 0 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--danger), #e53935);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 15px;
  }
  .age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .age-gate-btn {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.08s, opacity 0.15s;
  }
  .age-gate-btn:active { transform: scale(0.98); }
  .age-gate-btn-yes {
    background: var(--text-dark);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }
  .age-gate-btn-yes:hover {
    background: #2e2e2e;
    transform: translateY(-1px);
  }
  .age-gate-btn-no {
    background: transparent;
    color: #c9c9c5;
    border: 1px solid rgba(255,255,255,0.25);
  }
  .age-gate-btn-no:hover { background: rgba(255,255,255,0.06); }
  body:has(.age-gate:not(.hidden)) .fab-stack {
    display: none !important;
  }

  /* Trust strip unter Header — clean, ohne Öffnungszeiten-Linkleiste */
  .trust-strip {
    background: var(--light-gray);
    border-bottom: 1px solid var(--mid-gray);
    padding: 8px clamp(14px, 3vw, 24px);
  }
  .trust-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .trust-strip-item {
    flex: 0 0 auto;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 2px;
    border-radius: 6px;
    transition: color 0.22s ease, opacity 0.22s ease, background 0.22s ease;
    cursor: default;
    min-height: 22px;
  }
  .trust-strip-item:hover {
    color: var(--text-dark);
    opacity: 1;
    background: rgba(17,17,17,0.04);
  }
  .trust-strip-ico {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: currentColor;
    opacity: 0.85;
    display: block;
  }
  .trust-strip-strong {
    color: var(--text-dark);
  }
  .trust-strip-dot {
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-light);
    opacity: 0.28;
    align-self: center;
    margin: 0 clamp(10px, 2vw, 18px);
  }

  /* HEADER + scroll progress under sticky bar */
  header.site-header,
  .site-header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.05);
    border-bottom: none;
  }

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 10px clamp(14px, 3vw, 24px);
  }

  .scroll-progress {
    height: 3px;
    width: 100%;
    background: var(--light-gray);
    border-top: 1px solid rgba(17, 17, 17, 0.06);
    position: relative;
    overflow: hidden;
  }

  .scroll-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 0 2px 2px 0;
    background: linear-gradient(
      90deg,
      rgba(198, 40, 40, 0.75) 0%,
      rgba(184, 149, 46, 0.95) 100%
    );
    transition: width 0.06s linear;
    will-change: width;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-m {
    width: 52px;
    height: 42px;
    background: var(--text-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -1px;
  }

  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(17px, 4vw, 21px);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
  }

  .logo-text span {
    color: var(--text-light);
    font-weight: 500;
    font-size: clamp(10.5px, 2.8vw, 13px);
    display: block;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0;
  }

  .cart-btn {
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    flex-shrink: 0;
  }

  .cart-btn:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.16);
  }

  .cart-count {
    background: #e53935;
    color: white;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    animation: pop 0.25s ease;
  }
  .cart-count.visible { display: flex; }
  @keyframes pop {
    0%   { transform: scale(0.5); }
    70%  { transform: scale(1.25); }
    100% { transform: scale(1); }
  }

  /* HERO */
  .hero--premium {
    position: relative;
    background:
      radial-gradient(ellipse 100% 80% at 50% -15%, rgba(184, 149, 46, 0.16) 0%, transparent 52%),
      radial-gradient(circle at 90% 20%, rgba(17,17,17,0.04) 0%, transparent 40%),
      linear-gradient(180deg, #fffcf8 0%, var(--white) 52%, #f5f5f3 100%);
    border-bottom: 1px solid var(--mid-gray);
    padding: clamp(52px, 9vw, 88px) 24px clamp(52px, 10vw, 96px);
    text-align: center;
    overflow: hidden;
  }
  .hero--premium::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%23111' fill-opacity='0.026'%3E%3Cpath d='M0 0h1v72H0zM36 0h1v72h-1zM0 36h72v1H0zM18 18h1v36h-1zM54 18h1v36h-1z'/%3E%3C/g%3E%3C/svg%3E");
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
  }
  .hero-brand-badge {
    margin: 0 0 16px;
  }
  .hero-brand-badge span {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-premium);
    background: rgba(184,149,46,0.12);
    border: 1px solid rgba(184,149,46,0.28);
    box-shadow: 0 4px 20px rgba(184,149,46,0.08);
  }
  .hero-kicker {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--accent-premium);
    margin-bottom: 14px;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.05rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.045em;
    line-height: 1.06;
    margin: 0 0 16px;
    text-shadow:
      0 1px 0 rgba(255,255,255,0.8),
      0 22px 50px rgba(17,17,17,0.08),
      0 8px 24px rgba(17,17,17,0.06);
    filter: drop-shadow(0 2px 0 rgba(255,255,255,0.5));
  }
  .hero-sub {
    font-size: clamp(0.88rem, 2vw, 1.02rem);
    color: var(--text-light);
    font-weight: 400;
    max-width: 36em;
    margin: 0 auto 26px;
    line-height: 1.52;
    letter-spacing: 0.01em;
  }

  .hero-trust {
    list-style: none;
    padding: 0;
    margin: 0 auto 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 24px;
    max-width: 520px;
    text-align: left;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
  }
  .hero-trust li {
    position: relative;
    padding-left: 22px;
    line-height: 1.35;
  }
  .hero-trust li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--text-dark);
  }

  .hero-pack-banner {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(17,17,17,0.06);
    border: 1px solid rgba(17,17,17,0.08);
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-mid);
    max-width: 100%;
  }
  .hero-pack-strong {
    color: var(--text-dark);
    font-weight: 700;
    white-space: nowrap;
  }

  .hero-micro-trust {
    list-style: none;
    margin: 22px auto 0;
    padding: 12px 16px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
    border-top: 1px solid rgba(17,17,17,0.08);
    background: rgba(255,255,255,0.55);
    border-radius: 12px;
  }
  .hero-micro-trust li {
    position: relative;
    padding-left: 18px;
  }
  .hero-micro-trust li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 11px;
    color: var(--accent-premium);
    font-weight: 800;
  }

  .hero--premium.hero--page-end {
    border-bottom: none;
    border-top: 1px solid var(--mid-gray);
    margin-top: 0;
    background:
      radial-gradient(ellipse 100% 85% at 50% 105%, rgba(184, 149, 46, 0.14) 0%, transparent 55%),
      radial-gradient(circle at 12% 72%, rgba(17, 17, 17, 0.035) 0%, transparent 42%),
      linear-gradient(180deg, var(--off-white) 0%, var(--white) 45%, #fffcf8 100%);
    padding: clamp(44px, 7.5vw, 76px) 24px clamp(48px, 8vw, 88px);
  }

  .hero--premium.hero--page-end .hero-title {
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.75),
      0 12px 36px rgba(17, 17, 17, 0.06);
  }

  .hero--premium.hero--page-end + footer {
    margin-top: 0;
  }
  .tabs-wrapper {
    background: linear-gradient(180deg, #fdfcfa 0%, var(--white) 55%, var(--off-white) 100%);
    border-bottom: 1px solid rgba(17,17,17,0.065);
    box-shadow: 0 1px 0 rgba(255,255,255,0.9);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(17,17,17,0.15) transparent;
    padding: 15px 0 15px;
    scroll-margin-top: 78px;
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      black 18px,
      black calc(100% - 18px),
      transparent 100%
    );
  }

  .tabs-wrapper::-webkit-scrollbar {
    height: 6px;
  }
  .tabs-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }
  .tabs-wrapper::-webkit-scrollbar-thumb {
    background: rgba(17,17,17,0.16);
    border-radius: 99px;
  }

  .tabs {
    display: flex;
    max-width: 1096px;
    margin: 0 auto;
    padding: 0 clamp(14px, 3vw, 22px);
    gap: 8px;
    min-width: max-content;
  }

  .tab {
    flex-shrink: 0;
    padding: 11px 18px;
    min-height: 44px;
    border: none;
    background: rgba(17,17,17,0.03);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 999px;
    border: 1px solid transparent;
    transition:
      color 0.2s ease,
      background 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      opacity 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .tab-icon-svg {
    display: block;
    flex-shrink: 0;
    width: 21px;
    height: 21px;
    color: var(--text-mid);
    opacity: 0.9;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  }

  @media (max-width: 480px) {
    .tabs-wrapper {
      padding: 12px 0 13px;
    }
    .tab {
      padding: 10px 15px;
      min-height: 42px;
      font-size: 12.75px;
      gap: 9px;
    }
    .tab-icon-svg {
      width: 20px;
      height: 20px;
      opacity: 1;
      stroke-width: 1.48;
    }
  }

  .tab-label {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.012em;
  }

  @media (max-width: 420px) {
    .tab-label {
      max-width: 148px;
    }
  }

  .tab:hover {
    background: rgba(17,17,17,0.055);
    color: var(--text-dark);
    border-color: rgba(17,17,17,0.06);
  }

  .tab:hover .tab-icon-svg {
    opacity: 1;
    color: var(--text-mid);
  }

  @media (prefers-reduced-motion: no-preference) {
    .tab:hover .tab-icon-svg {
      transform: translateY(-1px);
    }
  }

  .tab:focus-visible {
    outline: none;
    border-color: var(--accent-premium);
    box-shadow: 0 0 0 2px rgba(184,149,46,0.35);
  }

  .tab.active .tab-icon-svg {
    color: var(--accent-premium);
    opacity: 1;
  }

  .tab.active {
    color: var(--text-dark);
    font-weight: 700;
    background: linear-gradient(145deg, var(--accent-premium-soft), rgba(255,252,246,0.95));
    border-color: rgba(184,149,46,0.42);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.92),
      0 3px 14px rgba(184,149,46,0.14);
  }

  @media (prefers-reduced-motion: reduce) {
    .tab:hover .tab-icon-svg {
      transform: none;
    }
  }

  /* MAIN CONTENT — schmaler Kontainer, keine überbreiten Produkt-Karten */
  main {
    max-width: 1096px;
    margin: 0 auto;
    padding: 24px clamp(14px, 3vw, 22px) 40px;
  }

  @media (max-width: 640px) {
    main {
      padding: 22px 14px 120px;
    }
    #searchSection {
      padding-bottom: 120px !important;
    }
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
  }

  .category-section { display: none; }
  .category-section.active { display: block; }

  /* PRODUCT GRID — feste Spaltenzahlen: 2 / 3 / 4 / 5 */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    max-width: 100%;
    margin-inline: auto;
  }

  @media (min-width: 680px) {
    .product-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 11px;
    }
  }

  @media (min-width: 920px) {
    .product-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 11px;
    }
  }

  @media (min-width: 1120px) {
    .product-grid {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
    }
  }

  .product-card {
    background: var(--white);
    border-radius: var(--radius-card);
    border: 1px solid rgba(17,17,17,0.07);
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
    transition:
      transform 0.26s cubic-bezier(.2,.75,.35,1),
      box-shadow 0.26s ease,
      border-color 0.26s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

  .product-card--purchase-pulse {
    animation: productCardPulse 0.52s cubic-bezier(.35,.15,.2,1);
  }

  @keyframes productCardPulse {
    0% {
      box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
      border-color: rgba(17, 17, 17, 0.07);
    }
    35% {
      box-shadow:
        0 8px 24px rgba(17,17,17,0.075),
        0 0 0 2px rgba(184,149,46,0.18);
      border-color: rgba(184,149,46,0.38);
    }
    100% {
      box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
      border-color: rgba(17, 17, 17, 0.07);
    }
  }

  /* Aktionen: eine Zeile auf breiter Karte; unter 420px optional untereinander */
  .product-card-actions {
    margin-top: auto;
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .product-card-actions:not(.product-card-actions--single) {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 6px;
  }

  .product-card-actions:not(.product-card-actions--single) .card-actions-stepper-row {
    flex: 1 1 54%;
    min-width: 0;
  }

  .product-card-actions:not(.product-card-actions--single) .add-btn {
    flex: 1 1 auto;
    min-width: min(118px, 100%);
    margin-top: 0 !important;
  }

  /* Schmale Telefone: WK+Stepper und „Jetzt“ untereinander, nicht gequetscht */
  @media (max-width: 420px) {
    .product-card-actions:not(.product-card-actions--single) {
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: stretch;
      gap: 7px;
    }
    .product-card-actions:not(.product-card-actions--single) .card-actions-stepper-row {
      flex: 1 1 auto;
      width: 100%;
      min-width: 0;
    }
    .product-card-actions:not(.product-card-actions--single) .add-btn {
      flex: 0 0 auto;
      width: 100%;
      min-height: 40px;
    }
  }

  .card-actions-stepper-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 5px;
    width: 100%;
    min-width: 0;
  }

  .card-actions-stepper-row .card-qty-inline {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: none;
    align-self: stretch;
  }

  .card-qty-inline {
    display: flex;
    align-items: stretch;
    border-radius: 7px;
    border: 1px solid var(--mid-gray);
    background: linear-gradient(to bottom, #fff, rgba(246,246,244,0.98));
    overflow: hidden;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
  }

  .card-qty-inline--incart {
    border-color: rgba(184, 149, 46, 0.55);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.92),
      0 0 0 1px rgba(184, 149, 46, 0.1);
  }

  .qty-card-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    transition: background 0.22s ease, color 0.22s ease, transform 0.12s ease;
    line-height: 1;
    padding: 0 5px;
  }

  /* Minus bei 1 Pack: ausdrücklich „gesperrt“, nicht beschädigter Button */
  .qty-card-btn.qty-card-btn-minus:disabled {
    opacity: 1;
    color: rgba(61,61,56,0.34);
    background: rgba(236,235,231,0.95);
    cursor: default;
    pointer-events: none;
  }

  .qty-card-btn:hover:not(:disabled) {
    background: rgba(17,17,17,0.05);
  }

  .qty-card-btn:active:not(:disabled) {
    transform: scale(0.94);
    background: rgba(17,17,17,0.08);
  }

  .qty-card-num {
    flex: 1 1 0;
    min-width: 0;
    min-height: 38px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--text-dark);
    border-left: 1px solid var(--mid-gray);
    border-right: 1px solid var(--mid-gray);
    background: rgba(255,255,255,0.65);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Kleiner WK: neben dem Stepper, nicht über die Produktfotografie */
  .card-mini-cart-inline {
    flex: 0 0 38px;
    width: 38px;
    min-height: 38px;
    align-self: stretch;
    border-radius: 7px;
    border: 1px solid var(--mid-gray);
    background: linear-gradient(to bottom, #fff, rgba(246,246,244,0.98));
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  }

  .card-mini-cart-inline:hover {
    border-color: rgba(17,17,17,0.18);
    background: var(--white);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .card-mini-cart-inline:active {
    transform: scale(0.97);
    background: rgba(246,246,244,0.98);
  }

  /* Spec + Pack unter dem Produkttitel (eine graue Einheit) */
  .card-tech-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px 8px;
    border-radius: 6px;
    background: var(--light-gray);
    border: 1px solid rgba(17,17,17,0.05);
    font-size: 11px;
    line-height: 1.42;
    color: var(--text-mid);
    flex: 0 1 auto;
    min-height: calc(10.5px * 1.42 * 3 + 4px + 11px * 1.42 * 2);
    max-width: 100%;
  }

  .card-tech-spec {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.42;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: calc(10.5px * 1.42 * 3);
    word-break: break-word;
  }

  .card-tech-spec--vacant {
    visibility: hidden;
    pointer-events: none;
    user-select: none;
  }

  .card-tech-block .card-pack-line {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
  }

  .card-tech-block .card-pack-muted {
    font-weight: 600;
    opacity: 0.78;
    font-size: 10.5px;
  }

  /* Produktbild (kein Pack-Badge mehr über dem Foto) */
  .card-pack-ribbon,
  .card-pack-pill,
  .card-pack-pill--prominent,
  .card-pack-num {
    display: none !important;
  }

  .card-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--light-gray);
    border-bottom: 1px solid rgba(17,17,17,0.07);
    aspect-ratio: 1 / 1;
  }

  .card-img-wrap .product-img-real {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    display: block;
    object-fit: contain;
    object-position: center center;
    cursor: pointer;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  .product-card:hover .card-img-wrap .product-img-real {
    transform: scale(1.07);
  }

  .product-card-out:hover .card-img-wrap .product-img-real {
    transform: scale(1.04);
  }

  @media (prefers-reduced-motion: reduce) {
    .card-img-wrap .product-img-real {
      transition: none;
    }
    .product-card:hover .card-img-wrap .product-img-real,
    .product-card-out:hover .card-img-wrap .product-img-real {
      transform: scale(1);
    }
    .product-card:hover {
      transform: none;
    }
  }

  /** Weiche Abdeckung rechts oben bei Lieferanten‑Stempeln (z. B. Crown Bar / VAPE ZOZO) — echte fotos ohne Logo sind besser */
  .card-img-wrap--supplier-corner-hide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(52px, 26%, 118px);
    height: clamp(46px, 21%, 104px);
    background: radial-gradient(
      ellipse 115% 115% at 100% 0%,
      rgba(253, 252, 249, 0.99) 0%,
      rgba(253, 252, 249, 0.9) 48%,
      rgba(253, 252, 249, 0) 78%
    );
    pointer-events: none;
    z-index: 4;
  }

  .card-img-wrap .product-placeholder {
    position: absolute;
    inset: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-sizing: border-box;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .product-card:hover .card-img-wrap .product-placeholder {
    transform: scale(1.05);
  }

  @media (prefers-reduced-motion: reduce) {
    .card-img-wrap .product-placeholder {
      transition: none;
    }
    .product-card:hover .card-img-wrap .product-placeholder {
      transform: scale(1);
    }
  }

  .card-img-wrap .product-placeholder .flavor-initial {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 11vw, 30px);
    font-weight: 700;
    color: var(--text-mid);
    opacity: 0.5;
  }

  .card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e53935;
    color: #fff;
    border-radius: 50%;
    min-width: 26px;
    height: 26px;
    font-size: 13px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 6;
    animation: pop 0.25s ease;
  }
  .card-badge.visible { display: flex; }

  .card-corner-pills {
    display: none !important;
  }

  .card-hot-pill {
    display: none !important;
  }

  /* STOCK BADGE (top-left of product image) */
  .stock-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 5;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    pointer-events: none;
  }
  .stock-badge.stock-low {
    background: #f57c00;
    color: white;
  }
  .stock-badge.stock-out {
    background: #6b6b65;
    color: white;
  }

  .product-card-out .product-img-real,
  .product-card-out .product-placeholder {
    filter: grayscale(0.6) opacity(0.65);
  }
  .add-btn.add-btn-disabled {
    background: var(--mid-gray);
    color: var(--text-mid);
    cursor: not-allowed;
  }
  .add-btn.add-btn-disabled:hover { background: var(--mid-gray); }

  .product-card:hover {
    transform: translateY(-3px);
    box-shadow:
      0 26px 60px rgba(0, 0, 0, 0.13),
      0 12px 28px rgba(0, 0, 0, 0.07);
    border-color: rgba(184, 149, 46, 0.38);
  }

  .product-info {
    padding: 9px 10px 11px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .product-brand {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .product-name {
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.28;
    flex: 0 1 auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: calc(12px * 1.28 * 2);
  }

  .add-btn {
    width: 100%;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 7px;
    padding: 7px 8px;
    min-height: 38px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.24s ease, transform 0.18s ease, box-shadow 0.24s ease;
    margin-top: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  }

  .add-btn-primary-cta {
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    border-radius: 7px !important;
    padding: 8px 6px !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    word-break: break-word !important;
    hyphens: manual;
  }

  .add-btn:hover {
    background: #2f2f2f;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  }
  .add-btn:active { transform: scale(0.97); }

  .add-btn.added {
    background: var(--text-dark);
    color: var(--white);
    box-shadow: 0 0 0 1px rgba(184,149,46,0.45), 0 8px 24px rgba(17,17,17,0.16);
    letter-spacing: 0.06em;
  }

  /* CART OVERLAY */
  .cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 200;
    backdrop-filter: blur(2px);
  }

  .cart-overlay.open { display: block; }

  .cart-panel {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(440px, 100vw);
    max-height: 100dvh;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(0,0,0,0.16);
    display: flex;
    flex-direction: column;
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .cart-panel--bump {
    animation: cartDrawerBump 0.42s cubic-bezier(.35, .15, .2, 1);
  }

  @keyframes cartDrawerBump {
    0%,
    100% {
      box-shadow: -8px 0 40px rgba(0, 0, 0, 0.16);
    }
    50% {
      box-shadow: -16px 0 52px rgba(0, 0, 0, 0.24);
    }
  }

  .cart-overlay.open .cart-panel {
    transform: translateX(0);
  }

  .cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
  }
  .clear-all-btn {
    background: none;
    border: 1px solid #e53935;
    color: #e53935;
    border-radius: 8px;
    padding: 5px 11px;
    font-size: 12px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
  }
  .clear-all-btn:hover { background: #e53935; color: #fff; }

  .close-btn {
    background: var(--light-gray);
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .close-btn:hover { background: var(--mid-gray); }

  .cart-items {
    flex: 1 0 auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cart-empty {
    text-align: center;
    color: var(--text-light);
    padding: 48px 24px;
    font-size: 15px;
  }

  .cart-item {
    background: var(--off-white);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: box-shadow 0.25s ease, background 0.25s ease;
  }

  .cart-item--pulse {
    animation: cartRowGlow 0.78s cubic-bezier(.35, .15, .2, 1);
  }

  @keyframes cartRowGlow {
    0% {
      box-shadow: 0 0 0 rgba(184,149,46, 0);
      background: var(--off-white);
    }
    40% {
      box-shadow:
        inset 3px 0 0 rgba(184,149,46, 0.9),
        0 12px 32px rgba(17,17,17,0.08);
      background: rgba(184,149,46,0.07);
    }
    100% {
      box-shadow: 0 0 0 rgba(184,149,46, 0);
      background: var(--off-white);
    }
  }

  .cart-footer-micro {
    margin: -4px 0 14px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.01em;
  }
  .cart-footer-micro-dot { margin: 0 0.4em; color: var(--mid-gray); }

  .cart-item-info { flex: 1; }

  .cart-item-brand {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  .cart-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 2px;
  }

  .cart-item-pack {
    font-size: 11.5px;
    color: var(--text-light);
    line-height: 1.35;
    margin-top: 4px;
  }

  .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
  }

  .qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--mid-gray);
    background: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
  }

  .qty-btn:hover { background: var(--light-gray); }

  .qty-num {
    font-size: 15px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
  }

  .remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    transition: color 0.2s;
  }

  .remove-item:hover { color: #e74c3c; }

  .cart-item-cat {
    font-size: 10.5px;
    color: var(--accent-premium);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
  }



  .cart-qty-pack {
    min-width: 4.75rem !important;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .label-optional {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.75;
    font-size: 11px;
  }

  #addrDeliveryHint { margin-top: 6px; }

  .cart-checkout-fields {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }
  .cart-checkout-fields .cart-field-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cart-checkout-fields label {
    display: block;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.72);
    margin-bottom: 4px;
  }
  .cart-checkout-fields .label-soft {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.72;
    font-size: 12px;
  }
  .cart-checkout-fields input,
  .cart-checkout-fields textarea {
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 8px;
    background: #fafaf8;
  }
  .cart-checkout-fields textarea {
    min-height: 52px;
    resize: vertical;
    line-height: 1.35;
  }
  .cart-checkout-fields .cart-field-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cart-checkout-fields .cart-checkout-age-row label {
    text-transform: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 0;
    color: var(--text-dark, #111);
  }
  .cart-checkout-fields .cart-checkout-legal {
    margin: 0;
    font-size: 11.5px;
    color: rgba(17, 17, 17, 0.65);
    line-height: 1.45;
  }
  .cart-checkout-fields .req-star {
    color: var(--accent-burgundy, #8b2942);
  }

  @media (max-width: 440px) {
    .cart-checkout-fields .cart-field-row-2 {
      grid-template-columns: 1fr;
    }
  }

  .cart-checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }
  .checkout-btn-confirm-full {
    width: 100%;
  }
  .cart-wa-follow-hint {
    margin: 10px 0 0;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(17, 17, 17, 0.62);
    line-height: 1.4;
  }
  .checkout-btn-wa-soft {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 8px;
    padding: 11px 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    background: #fff;
    border: 1.5px solid rgba(37, 211, 102, 0.52);
    color: #157347;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      transform 0.1s ease;
  }
  .checkout-btn-wa-soft:hover {
    background: rgba(37, 211, 102, 0.07);
    border-color: rgba(37, 211, 102, 0.85);
    transform: translateY(-1px);
  }
  .checkout-btn-wa-soft svg {
    flex-shrink: 0;
    opacity: 0.9;
  }

  .cart-checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
  }

  .checkout-flow-hint { margin-top: 10px !important; }

  .checkout-btn-outline,
  .checkout-btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    padding: 13px 10px;
    cursor: pointer;
    transition:
      background 0.22s ease,
      transform 0.12s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease,
      color 0.22s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    line-height: 1.25;
    min-height: 48px;
  }

  .checkout-btn-outline {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
  }
  .checkout-btn-outline:hover {
    background: rgba(17,17,17,0.06);
    transform: translateY(-1px);
  }

  .checkout-btn-primary {
    background: var(--text-dark);
    border: 2px solid var(--text-dark);
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  }
  .checkout-btn-primary:hover {
    background: #2e2e2e;
    border-color: #2e2e2e;
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
  }
  .checkout-btn-primary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.92;
    filter: saturate(2.8) brightness(1.15);
  }

  @media (max-width: 440px) {
    .cart-checkout-row {
      grid-template-columns: 1fr;
    }
  }

  .cart-checkout-footer {
    flex-shrink: 0;
    padding: 18px 24px 28px;
    border-top: 1px solid var(--mid-gray);
    background: var(--white);
  }
  .cart-footer-hint {
    font-size: 12.5px;
    color: var(--text-mid);
    line-height: 1.45;
    margin: 0 0 14px;
  }

  .cart-item-pieces-sum {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.4;
  }
  .cart-item-pieces-sum strong {
    color: var(--text-dark);
  }

  /* ORDER FORM */
  .order-form {
    padding: 20px 24px;
    border-top: 1px solid var(--mid-gray);
  }

  .order-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 14px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--mid-gray);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--text-dark);
    background: var(--white);
  }

  .form-group textarea {
    height: 70px;
    resize: none;
  }

  .form-group-checkbox {
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(198,40,40,0.05);
    border: 1px solid rgba(198,40,40,0.18);
    margin-bottom: 14px;
  }
  .form-group-checkbox .checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
  }
  .form-group-checkbox input[type='checkbox'] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--text-dark);
  }

  .form-hint {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.45;
    margin: 4px 0 0;
    font-style: italic;
  }

  .legal-inline-link {
    display: inline;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    font-style: normal;
    font-weight: 600;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
  }

  .form-hint .legal-inline-link {
    color: var(--accent);
  }

  .send-btn {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.1s;
    margin-top: 16px;
  }

  .send-btn:hover { background: var(--accent-dark); }
  .send-btn:active { transform: scale(0.98); }

  .send-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
  }

  /* TOAST */
  .toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--text-dark);
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.38;
    z-index: 999;
    transition: transform 0.3s ease;
    white-space: normal;
    text-align: center;
    max-width: min(92vw, 400px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  }

  .toast.show {
    transform: translateX(-50%) translateY(0);
  }


  /* .product-img-real nur in .card-img-wrap (Regeln oben) */

  /* LIGHTBOX */
  #lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  #lightbox.open { display: flex; }
  .lightbox-frame {
    position: relative;
    display: inline-block;
    max-width: 92vw;
    max-height: 92vh;
  }
  #lightbox-img {
    display: block;
    max-width: 92vw;
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
  }
  .lightbox-frame.lightbox-frame--hide-corner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(64px, 26%, 148px);
    height: clamp(54px, 21%, 126px);
    border-radius: 0 8px 0 0;
    background: radial-gradient(
      ellipse 115% 115% at 100% 0%,
      rgba(253, 252, 249, 0.97) 0%,
      rgba(253, 252, 249, 0.85) 52%,
      rgba(253, 252, 249, 0) 78%
    );
    pointer-events: none;
  }
  #lightbox-close {
    position: fixed;
    top: 16px;
    right: 20px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    user-select: none;
    opacity: 0.85;
  }
  #lightbox-close:hover { opacity: 1; }

  /* SEARCH */
  .search-wrap {
    max-width: 1096px;
    margin: 0 auto 18px;
    padding: 0 clamp(14px, 3vw, 22px);
  }
  .search-input {
    width: 100%;
    padding: 13px 20px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    border: 1.5px solid var(--mid-gray);
    border-radius: 12px;
    outline: none;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .search-input:focus {
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
  }
  .search-results-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
  }
  .cart-summary {
    border-top: 1px solid var(--mid-gray);
    padding: 16px 24px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
  }
  .cart-summary-packs {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.42;
    padding-bottom: 4px;
    border-bottom: 1px dashed var(--mid-gray);
  }
  .cart-summary-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-family: 'Playfair Display', serif;
    padding-bottom: 4px;
  }
  .cart-gesamt-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
  }
  .cart-gesamt-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-mid);
  }
  .cart-gesamt-num {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
  }
  .cart-gesamt-detail {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-mid);
    margin-top: 6px;
  }
  .cart-summary-label {
    font-size: 14px;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
  }
  .cart-summary-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
  }
  .price-tbd {
    font-size: 12px;
    color: var(--warning);
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    font-style: italic;
  }
  .cart-item-line-total {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 600;
    margin-top: 4px;
  }

  /* FOOTER */
  footer {
    background: var(--white);
    border-top: 1px solid var(--mid-gray);
    margin-top: 48px;
    padding: 24px;
    text-align: center;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 13px;
  }
  .footer-link {
    color: var(--text-mid);
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    text-decoration: underline;
  }
  .footer-link:hover { color: var(--text-dark); }

  .footer-legal-short {
    display: inline-block;
    max-width: 100%;
  }

  /* GENERIC MODAL (Impressum / Datenschutz / Order confirm) */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 500;
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
    padding: 16px;
  }
  .modal-overlay.open { display: flex; }
  .modal-card {
    background: var(--white);
    border-radius: 16px;
    width: min(640px, 100%);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    overflow: hidden;
  }
  .modal-head {
    padding: 18px 24px;
    border-bottom: 1px solid var(--mid-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .modal-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0;
  }
  .modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.55;
  }
  .modal-body h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 16px;
    margin: 16px 0 6px;
  }
  .modal-body p { margin-bottom: 10px; }
  .modal-body code {
    background: var(--light-gray);
    color: var(--danger);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 13px;
  }

  .modal-card--legal {
    width: min(780px, 100%);
    max-height: min(92vh, 900px);
  }

  .modal-card--checkout {
    width: min(480px, 100%);
    max-height: min(92vh, 720px);
  }
  .checkout-lead {
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-mid);
    margin-bottom: 16px;
  }

  .checkout-micro-trust {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-light);
    margin: -8px 0 16px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(17,17,17,0.035);
    line-height: 1.48;
    text-wrap: balance;
  }
  .checkout-legal {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
  }
  .req-star {
    color: var(--danger);
    margin-left: 2px;
  }
  .label-soft {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.72;
    font-size: 11px;
  }

  .modal-foot--checkout {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
  }
  .modal-foot--checkout .modal-btn {
    flex: 1 1 140px;
    min-height: 44px;
    justify-content: center;
  }
  .modal-foot--checkout .modal-btn-ghost {
    flex: 1 1 100%;
    order: 3;
    max-width: 100%;
  }
  @media (min-width: 520px) {
    .modal-foot--checkout .modal-btn-ghost {
      flex: 0 0 auto;
      order: 0;
      max-width: none;
    }
  }


  .legal-doc h3:first-of-type {
    margin-top: 4px;
  }
  .legal-doc h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 700;
    margin: 14px 0 6px;
    line-height: 1.3;
  }
  .legal-doc-disclaimer {
    font-size: 13px;
    line-height: 1.48;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(245,124,0,0.07);
    border: 1px solid rgba(245,124,0,0.22);
    color: var(--text-dark);
  }
  .legal-doc-disclaimer strong { font-weight: 700; color: var(--text-dark); }
  .legal-doc ul {
    padding-left: 1.35em;
    margin: 8px 0 12px;
  }
  .legal-doc li {
    margin-bottom: 6px;
  }

  .modal-foot {
    padding: 14px 24px;
    border-top: 1px solid var(--mid-gray);
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .modal-btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
  }
  .modal-btn-primary {
    background: var(--text-dark);
    color: white;
    border: 2px solid var(--text-dark);
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.12s ease;
  }
  .modal-btn-primary:hover {
    background: #363636;
    border-color: #363636;
  }
  .modal-btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    transition: background 0.22s ease, color 0.22s ease, transform 0.12s ease;
  }
  .modal-btn-outline:hover {
    background: rgba(17,17,17,0.06);
  }
  .modal-btn-ghost {
    background: var(--light-gray);
    color: var(--text-dark);
  }
  .modal-btn-ghost:hover {
    background: var(--mid-gray);
  }
  .modal-btn-success {
    background: var(--accent);
    color: white;
  }
  .modal-btn-success:hover {
    background: var(--accent-dark);
  }

  /* Floating stack: Nach oben + WhatsApp */
  .fab-stack {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 800;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
  }
  .fab-stack > * {
    pointer-events: auto;
  }

  .scroll-top-btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.06);
    background: var(--text-dark);
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition:
      opacity 0.42s cubic-bezier(.25,.8,.25,1),
      transform 0.42s cubic-bezier(.25,.8,.25,1),
      visibility 0.42s,
      box-shadow 0.24s ease,
      background 0.24s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
  }
  .scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .scroll-top-btn:hover {
    background: #2c2c2c;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  }
  .scroll-top-btn.visible:hover {
    transform: translateY(-3px) scale(1.04);
  }
  .scroll-top-btn:active {
    transform: translateY(-1px) scale(1.01);
  }
  .scroll-top-btn:focus-visible {
    outline: 3px solid var(--text-dark);
    outline-offset: 3px;
  }

  /* WHATSAPP FAB */
  .wa-fab-wrap {
    position: relative;
    inset: auto;
    z-index: 1;
    pointer-events: none;
  }
  .wa-fab-wrap > * { pointer-events: auto; }

  .wa-fab {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: white;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
  }
  .wa-fab:hover  { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55); }
  .wa-fab:active { transform: translateY(0); }
  .wa-fab:focus-visible { outline: 3px solid var(--text-dark); outline-offset: 3px; }
  .wa-fab-icon { width: 30px; height: 30px; fill: white; }

  .wa-fab-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    z-index: -1;
    animation: waPulse 2.4s ease-out infinite;
  }
  @keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    80%  { transform: scale(1.7); opacity: 0;    }
    100% { transform: scale(1.7); opacity: 0;    }
  }
  @media (prefers-reduced-motion: reduce) {
    .wa-fab-pulse { animation: none; opacity: 0; }
  }

  /* Hide FAB whenever a blocking layer is open. */
  body:has(.cart-overlay.open) .fab-stack,
  body:has(.modal-overlay.open) .fab-stack,
  body:has(#lightbox.open) .fab-stack {
    display: none;
  }

  /* RESPONSIVE */
  @media (max-width: 600px) {
    .product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px;
    }
    .hero--premium {
      padding: 32px 16px 44px;
    }
    .fab-stack { bottom: max(14px, env(safe-area-inset-bottom)); right: max(14px, env(safe-area-inset-right)); gap: 10px; }
    .scroll-top-btn {
      width: 42px;
      height: 42px;
      font-size: 18px;
    }
    .wa-fab { width: 56px; height: 56px; }
    .wa-fab-icon { width: 26px; height: 26px; }
  }
