/**
 * Desktop-Startseite – helles Shop-Layout nach Mockup.
 * Nur ≥992px / .lk-ref-wrap. Mobile bleibt .lk-hm.
 */
@media (min-width: 992px) {
  body.lk-home-page {
    background: #ffffff !important;
  }
  body.lk-home-page .lk-home.lk-ref {
    background: #ffffff !important;
  }
  body.lk-home-page .lk-ref-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 28px 32px 64px;
    background: transparent;
  }
  body.lk-home-page .main-content {
    background: #ffffff;
  }

  /* —— Hero Desktop (Soll = Bild 2: flach, Schräge, Panel) —— */
  body.lk-home-page .lk-ref-hero {
    display: grid;
    grid-template-columns: minmax(400px, 0.42fr) minmax(560px, 0.58fr);
    gap: clamp(24px, 2.8vw, 48px);
    align-items: center;
    margin: 0 0 36px;
    padding: 8px 0 0;
  }
  body.lk-home-page .lk-ref-hero__copy {
    padding-top: 4px;
    min-width: 0;
  }
  body.lk-home-page .lk-ref-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.6rem, 4vw, 3.7rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    color: #111111;
  }
  body.lk-home-page .lk-ref-hero__h1-line {
    display: block;
    white-space: nowrap;
  }
  body.lk-home-page .lk-ref-hero h1 b {
    color: #ff7a00;
    font-weight: 900;
  }
  body.lk-home-page .lk-ref-hero__sub {
    margin: 0 0 22px;
    max-width: none;
    font-size: 1.05rem;
    line-height: 1.4;
    color: #222222;
    font-weight: 500;
  }
  body.lk-home-page .lk-ref-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 12px;
    background: #ff7a00;
    color: #fff !important;
    font-weight: 800;
    font-size: 1.02rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.28);
    margin-bottom: 28px;
  }
  body.lk-home-page .lk-ref-cta:hover {
    background: #ff8a16;
    color: #fff !important;
  }
  body.lk-home-page .lk-ref-hero .lk-ref-trust {
    display: none !important;
  }

  /* Trust: eine Reihe */
  body.lk-home-page .lk-ref-hero__copy .lk-shop-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 12px 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    width: 100%;
  }
  body.lk-home-page .lk-ref-hero__copy .lk-shop-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #222;
    flex: 0 1 auto;
    min-width: 0;
  }
  body.lk-home-page .lk-ref-hero__copy .lk-shop-trust__ico {
    color: #111111 !important;
    display: inline-flex;
    flex: 0 0 auto;
  }
  body.lk-home-page .lk-ref-hero__copy .lk-shop-trust__ico svg {
    width: 20px;
    height: 20px;
  }
  body.lk-home-page .lk-ref-hero__copy .lk-shop-trust strong {
    display: block;
    color: #111111;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
  }
  body.lk-home-page .lk-ref-hero__copy .lk-shop-trust small {
    display: block;
    font-size: 0.66rem;
    color: #555555;
    font-weight: 500;
    white-space: nowrap;
  }

  .lk-ref-hero__stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 0;
    width: 100%;
  }

  /* Flacher Landscape-Banner + diagonale linke Kante */
  .lk-ref-hero__visual {
    position: relative;
    width: 100%;
    height: clamp(250px, 28vw, 320px);
    min-height: 250px;
    max-height: 320px;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    /* Oben weiter rechts, unten weiter links → deutliche Schräge */
    clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .lk-ref-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    z-index: 0;
  }
  .lk-ref-hero__slide.is-on {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
  }
  .lk-ref-hero__bg {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .lk-ref-hero__dots {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    display: flex;
    gap: 8px;
    z-index: 5;
    margin-top: 2px;
  }
  .lk-ref-hero__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d0d5dd;
    cursor: pointer;
    box-shadow: none;
  }
  .lk-ref-hero__dot.is-on {
    background: #ff7a00;
  }
  .lk-ref-hero__dot:focus-visible {
    outline: 2px solid #ff7a00;
    outline-offset: 2px;
  }

  /* Festes vertikales Produktpanel rechts – unten bündig, keine Floating Card */
  .lk-shop-hero-deal--float {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 14px;
    left: auto;
    transform: none;
    z-index: 4;
    width: clamp(200px, 28%, 248px);
    height: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: #ffffff;
    border: 0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: none;
    padding: 18px 16px 16px;
  }
  .lk-shop-hero-deal--float .lk-shop-hero-deal__img {
    display: none !important;
  }
  .lk-shop-hero-deal--float .lk-shop-hero-deal__copy {
    position: static;
    background: transparent;
    color: #111;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    flex: 1 1 auto;
    min-height: 0;
  }
  .lk-shop-hero-deal--float .lk-shop-hero-deal__tag {
    position: static;
    display: inline-flex;
    align-self: flex-start;
    background: #ff7a00;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
    box-shadow: none;
  }
  .lk-shop-hero-deal--float .lk-shop-hero-deal__title {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .lk-shop-hero-deal--float .lk-shop-hero-deal__spec {
    font-size: 0.8rem;
    color: #777;
    font-weight: 500;
  }
  .lk-shop-hero-deal--float .lk-shop-hero-deal__uvp {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #9aa0a6;
    opacity: 1;
    margin-top: auto;
    padding-top: 10px;
  }
  .lk-shop-hero-deal--float .lk-shop-hero-deal__price {
    font-size: 1.55rem;
    font-weight: 900;
    color: #ff7a00;
    display: block;
    line-height: 1.1;
  }
  .lk-shop-hero-deal--float .lk-shop-hero-deal__price em,
  .lk-shop-hero-deal--float .lk-shop-hero-deal__pct {
    display: none !important;
  }
  .lk-shop-hero-deal--float .lk-shop-hero-deal__cta {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    background: #ff7a00;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    width: auto;
    min-width: 120px;
    box-sizing: border-box;
  }

  @media (min-width: 1280px) {
    body.lk-home-page .lk-ref-wrap {
      max-width: 1400px;
      padding-left: 40px;
      padding-right: 40px;
    }
    body.lk-home-page .lk-ref-hero {
      grid-template-columns: minmax(440px, 0.4fr) minmax(640px, 0.6fr);
      gap: 44px;
    }
    body.lk-home-page .lk-ref-hero h1 {
      font-size: 3.75rem;
    }
    .lk-ref-hero__visual {
      height: 300px;
      max-height: 300px;
      clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    .lk-shop-hero-deal--float {
      width: 240px;
      padding: 20px 18px 18px;
    }
    .lk-shop-hero-deal--float .lk-shop-hero-deal__price {
      font-size: 1.7rem;
    }
  }

  /* —— Vier Wege: Trio + Gratis (Desktop = 4 Spalten) —— */
  body.lk-home-page .lk-ways--desk {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 40px;
    background: #ffffff;
    border: 1px solid #eceef2;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
    overflow: hidden;
    padding: 0;
    min-height: 0;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__trio {
    display: contents;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__card {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-decoration: none;
    color: #14161a !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 22px 14px 20px;
    min-height: 0;
    height: auto;
    position: relative;
    transition: background 0.15s ease;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__trio .lk-ways__card:not(:last-child)::after,
  body.lk-home-page .lk-ways--desk .lk-ways__trio .lk-ways__card:last-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: #e6e8ec;
    pointer-events: none;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__card:hover {
    background: #fafbfc !important;
    border-color: transparent !important;
    transform: none;
    box-shadow: none !important;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__ico {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff0e4;
    color: #ff7a00 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__ico svg {
    width: 28px;
    height: 28px;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__card.is-live .lk-ways__ico {
    background: #fde8e8;
    color: #e11d2e !important;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 0;
    width: 100%;
    flex: 0 0 auto;
  }
  body.lk-home-page .lk-ways--desk strong {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.15;
    color: #111111 !important;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__txt {
    color: #555555 !important;
    font-size: 0.82rem;
    line-height: 1.3;
    font-weight: 500;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__line {
    display: block;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__line--muted {
    color: #666666;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__cta-short {
    display: none !important;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__cta-full {
    display: inline !important;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__card > span:not(.lk-ways__ico):not(.lk-ways__body) {
    /* legacy */
    display: none;
  }
  body.lk-home-page .lk-ways--desk em {
    margin-top: 8px;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 9px;
    background: #ff7a00;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.8rem;
    line-height: 1;
    box-shadow: none;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__card:hover em {
    background: #ff8a16;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__card--gratis .lk-ways__line--muted {
    display: none;
  }
  body.lk-home-page .lk-ways--desk .lk-ways__card--gratis > em {
    margin-top: 8px;
  }

  @media (min-width: 992px) and (max-width: 1199px) {
    body.lk-home-page .lk-ways--desk .lk-ways__card {
      gap: 6px;
      padding: 16px 8px 16px;
    }
    body.lk-home-page .lk-ways--desk .lk-ways__ico {
      width: 52px;
      height: 52px;
    }
    body.lk-home-page .lk-ways--desk .lk-ways__ico svg {
      width: 22px;
      height: 22px;
    }
    body.lk-home-page .lk-ways--desk strong {
      font-size: 0.92rem;
    }
    body.lk-home-page .lk-ways--desk .lk-ways__txt {
      font-size: 0.72rem;
    }
    body.lk-home-page .lk-ways--desk em {
      min-height: 30px;
      padding: 0 9px;
      font-size: 0.72rem;
    }
  }

  @media (min-width: 1200px) and (max-width: 1399px) {
    body.lk-home-page .lk-ways--desk .lk-ways__card {
      gap: 7px;
      padding: 18px 10px 18px;
    }
    body.lk-home-page .lk-ways--desk .lk-ways__ico {
      width: 56px;
      height: 56px;
    }
    body.lk-home-page .lk-ways--desk strong {
      font-size: 0.98rem;
    }
    body.lk-home-page .lk-ways--desk .lk-ways__txt {
      font-size: 0.76rem;
    }
    body.lk-home-page .lk-ways--desk em {
      font-size: 0.74rem;
      padding: 0 10px;
      min-height: 32px;
    }
  }

  /* —— Sections —— */
  body.lk-home-page .lk-home-section {
    margin: 0 0 40px;
  }
  body.lk-home-page .lk-home-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
  }
  body.lk-home-page .lk-home-section__title {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #14161a !important;
  }
  body.lk-home-page .lk-home-section__cta,
  body.lk-home-page .lk-home-section__link {
    color: #ff7900 !important;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
    background: none !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    min-height: 0 !important;
  }
  body.lk-home-page .lk-home-section__lead {
    display: none !important;
  }

  /* Slim product rails */
  .lk-shop-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  .lk-shop-rail > :nth-child(n + 5) {
    display: none;
  }
  .lk-shop-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(16, 24, 40, 0.04);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .lk-shop-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  }
  .lk-shop-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: #f2f4f7;
    overflow: hidden;
  }
  .lk-shop-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .lk-shop-card__pct {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #ff7900;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 8px;
    padding: 4px 8px;
    line-height: 1;
  }
  .lk-shop-card__bids {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff7900;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 8px;
    padding: 5px 9px;
  }
  .lk-shop-card__heart {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #667085;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.12);
    text-decoration: none;
    cursor: pointer;
  }
  .lk-shop-card__body {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    color: inherit;
    flex: 1;
  }
  .lk-shop-card__title {
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
    color: #14161a;
  }
  .lk-shop-card__uvp,
  .lk-shop-card__label {
    font-size: 0.78rem;
    color: #98a2b3;
  }
  .lk-shop-card__uvp {
    text-decoration: line-through;
  }
  .lk-shop-card__price {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ff7900;
    margin-top: 2px;
  }
  .lk-shop-card__ends {
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #dc2626;
  }

  /* —— TOP DEALS: kompakter Slider (Bild 2) —— */
  body.lk-home-page .lk-home-section--deals {
    margin: 0 0 28px;
  }
  body.lk-home-page .lk-home-section--deals .lk-home-section__head {
    margin-bottom: 12px;
  }
  body.lk-home-page .lk-home-section--deals .lk-home-section__title {
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  }
  .lk-shop-rail-wrap {
    position: relative;
  }
  .lk-shop-rail--deals {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 4px 6px 1px;
    margin: 0;
  }
  .lk-shop-rail--deals::-webkit-scrollbar {
    display: none;
  }
  .lk-shop-rail--deals > :nth-child(n + 5) {
    display: block;
  }
  .lk-shop-rail--deals .lk-shop-card--deal {
    flex: 0 0 calc((100% - 36px) / 4);
    width: calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
    scroll-snap-align: start;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.05);
  }
  .lk-shop-rail--deals .lk-shop-card--deal:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 24, 40, 0.08);
  }
  .lk-shop-card--deal .lk-shop-card__media {
    aspect-ratio: 4 / 3;
  }
  .lk-shop-card--deal .lk-shop-card__heart {
    width: 30px;
    height: 30px;
    top: 8px;
    right: 8px;
    font-size: 0.78rem;
    color: #98a2b3;
    box-shadow: 0 1px 4px rgba(16, 24, 40, 0.1);
  }
  .lk-shop-card--deal .lk-shop-card__body {
    padding: 7px 10px 9px;
    gap: 1px;
    flex: 0 0 auto;
  }
  .lk-shop-card--deal .lk-shop-card__title {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
    min-height: 0;
    max-height: 2.4em;
    margin: 0;
  }
  .lk-shop-card--deal .lk-shop-card__uvp {
    font-size: 0.68rem;
    color: #98a2b3;
    line-height: 1.15;
  }
  .lk-shop-card--deal .lk-shop-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 3px;
    min-height: 1.35rem;
  }
  .lk-shop-card--deal .lk-shop-card__price {
    font-size: 1rem;
    font-weight: 900;
    color: #ff7a00;
    margin: 0;
    line-height: 1.1;
  }
  .lk-shop-card--deal .lk-shop-card__pct {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff7a00;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    border-radius: 6px;
    padding: 3px 7px;
    line-height: 1;
    flex: 0 0 auto;
  }
  .lk-shop-rail__next {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #222;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(16, 24, 40, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 2px;
  }
  .lk-shop-rail__next:hover {
    background: #fff;
    color: #ff7a00;
  }
  .lk-shop-rail__next:focus-visible {
    outline: 2px solid #ff7a00;
    outline-offset: 2px;
  }

  /* —— AUKTIONEN: kompakter Slider (Bild 2) —— */
  body.lk-home-page .lk-home-section--auctions {
    margin: 0 0 28px;
  }
  body.lk-home-page .lk-home-section--auctions .lk-home-section__head {
    margin-bottom: 12px;
  }
  body.lk-home-page .lk-home-section--auctions .lk-home-section__title {
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  }
  .lk-shop-rail--auctions {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 4px 6px 1px;
    margin: 0;
  }
  .lk-shop-rail--auctions::-webkit-scrollbar {
    display: none;
  }
  .lk-shop-rail--auctions > :nth-child(n + 5) {
    display: block;
  }
  .lk-shop-rail--auctions .lk-shop-card--bid {
    flex: 0 0 calc((100% - 36px) / 4);
    width: calc((100% - 36px) / 4);
    max-width: calc((100% - 36px) / 4);
    scroll-snap-align: start;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.05);
  }
  .lk-shop-rail--auctions .lk-shop-card--bid:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 24, 40, 0.08);
  }
  .lk-shop-card--bid .lk-shop-card__media {
    aspect-ratio: 4 / 3;
  }
  .lk-shop-card--bid .lk-shop-card__bids {
    top: 8px;
    right: 8px;
    left: auto;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 7px;
    background: #ff7a00;
    color: #fff;
    line-height: 1;
  }
  .lk-shop-card--bid .lk-shop-card__body {
    padding: 7px 10px 9px;
    gap: 1px;
    flex: 0 0 auto;
  }
  .lk-shop-card--bid .lk-shop-card__title {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
    min-height: 0;
    max-height: 2.4em;
    margin: 0;
  }
  .lk-shop-card--bid .lk-shop-card__label {
    font-size: 0.68rem;
    color: #98a2b3;
    font-weight: 500;
    line-height: 1.15;
  }
  .lk-shop-card--bid .lk-shop-card__price {
    font-size: 1rem;
    font-weight: 900;
    color: #ff7a00;
    margin: 1px 0 0;
    line-height: 1.1;
  }
  .lk-shop-card--bid .lk-shop-card__ends {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #667085;
    line-height: 1.2;
  }
  .lk-shop-card--bid .lk-shop-card__ends time {
    color: #e85d04;
    font-weight: 700;
  }
  .lk-shop-card--bid .lk-shop-card__ends-ico {
    flex: 0 0 auto;
    color: #98a2b3;
  }

  /* —— Live / App / Phone: volle Contentbreite, Bild-2-Geometrie —— */
  .lk-shop-liveapp {
    display: grid !important;
    grid-template-columns:
      minmax(0, 2.45fr)
      minmax(0, 1fr)
      minmax(0, 1.95fr) !important;
    column-gap: 14px !important;
    row-gap: 0 !important;
    align-items: end !important;
    justify-content: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 6px 0 16px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
  .lk-shop-liveapp__live {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
    align-self: end;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: none;
  }
  .lk-shop-liveapp__now {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #111111;
    line-height: 1;
  }
  .lk-shop-liveapp__now-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e11d48;
    flex-shrink: 0;
  }
  .lk-shop-liveapp__now-dot--off {
    background: #98a2b3;
  }
  .lk-shop-liveapp__live-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    min-width: 0;
    width: 100%;
  }
  .lk-shop-liveapp__media {
    position: relative;
    display: block;
    width: 100%;
    height: 148px;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
  }
  .lk-shop-liveapp__media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .lk-shop-liveapp__media--ph {
    filter: none;
  }
  .lk-shop-liveapp__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e11d48;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 3px 7px;
    border-radius: 999px;
    line-height: 1.2;
  }
  .lk-shop-liveapp__views {
    position: absolute;
    top: 8px;
    left: 68px;
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    line-height: 1.2;
  }
  .lk-shop-liveapp__views svg {
    width: 11px;
    height: 11px;
  }
  .lk-shop-liveapp__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    min-height: 148px;
    height: 148px;
    padding: 0;
    background: transparent;
    justify-content: center;
    box-sizing: border-box;
  }
  .lk-shop-liveapp__next {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 14px 10px;
    background: #fff;
    border: 1px solid #e4e6ea;
    border-radius: 12px;
    box-shadow: none;
    min-height: 148px;
    height: 148px;
    box-sizing: border-box;
    align-self: end;
    min-width: 0;
  }
  /* Gratis + Phone = EINE gemeinsame Box (Bild 2) */
  .lk-shop-liveapp__promo {
    display: flex;
    align-items: stretch;
    position: relative;
    min-width: 0;
    min-height: 148px;
    height: 148px;
    background: #fff;
    border: 1px solid #e4e6ea;
    border-radius: 12px;
    box-sizing: border-box;
    overflow: visible;
    align-self: end;
  }
  .lk-shop-liveapp__gratis {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 6px 10px 14px;
    background: transparent;
    border: none;
    box-sizing: border-box;
    z-index: 1;
  }
  .lk-shop-liveapp__card-title {
    margin: 0 0 1px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
  }
  .lk-shop-liveapp h3 {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
  }
  .lk-shop-liveapp__live h3 {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
  }
  .lk-shop-liveapp__sub {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
  }
  .lk-shop-liveapp__meta,
  .lk-shop-liveapp__gratis .lk-shop-liveapp__meta {
    margin: 0;
    color: #667085;
    font-size: 0.76rem;
    line-height: 1.3;
  }
  .lk-shop-liveapp__when {
    margin: 0;
    font-weight: 800;
    color: #111111;
    font-size: 0.9rem;
    line-height: 1.25;
  }
  .lk-shop-liveapp__next h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3d4450;
  }
  .lk-shop-liveapp__gratis h3 {
    font-weight: 800;
    color: #111111;
    font-size: 0.88rem;
  }
  .lk-shop-liveapp__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 4px;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 8px;
    background: #ff7900;
    color: #fff !important;
    font-weight: 800;
    font-size: 0.76rem;
    text-decoration: none;
    line-height: 1;
    border: none;
    white-space: nowrap;
  }
  .lk-shop-liveapp__body .lk-shop-liveapp__cta {
    margin-top: 8px;
  }
  .lk-shop-liveapp__cta--ghost {
    background: #fff;
    color: #14161a !important;
    border: 1px solid #c5cad3;
    font-weight: 700;
  }
  .lk-shop-liveapp__cta--ghost svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }
  .lk-shop-liveapp__phone {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex: 0 0 46%;
    max-width: 230px;
    min-width: 145px;
    margin: -38px 2px -30px -24px;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
  }
  .lk-shop-liveapp__phone img {
    width: 100%;
    max-width: 220px;
    height: auto;
    max-height: 230px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    transform: rotate(4deg);
    filter: drop-shadow(0 10px 20px rgba(16, 24, 40, 0.16));
  }

  /* —— Footer trust (flat) —— */
  .lk-shop-trustbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 12px;
    margin: 0 0 8px;
    padding: 9px 16px;
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
  }
  .lk-shop-trustbar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    color: #3d4450;
    min-width: 0;
  }
  .lk-shop-trustbar__ico {
    display: inline-flex;
    flex-shrink: 0;
    color: #3d4450;
  }
  .lk-shop-trustbar__ico svg {
    width: 18px;
    height: 18px;
  }
  .lk-shop-trustbar__item strong {
    display: block;
    color: #14161a;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.2;
  }
  .lk-shop-trustbar__item small {
    display: block;
    color: #5c6370;
    font-size: 0.7rem;
    line-height: 1.25;
  }

  body.lk-home-page .lk-ref-stage,
  body.lk-home-page .lk-ref-bottom,
  body.lk-home-page .lk-ref-cats,
  body.lk-home-page .lk-no-fee,
  body.lk-home-page .lk-no-auction-fee,
  body.lk-home-page [class*="no-auction-fee"],
  body.lk-home-page .lk-ref-video {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .lk-shop-rail:not(.lk-shop-rail--deals):not(.lk-shop-rail--auctions) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lk-shop-rail:not(.lk-shop-rail--deals):not(.lk-shop-rail--auctions) > :nth-child(n + 4) {
    display: none;
  }
  .lk-shop-rail--deals .lk-shop-card--deal,
  .lk-shop-rail--auctions .lk-shop-card--bid {
    flex-basis: calc((100% - 24px) / 3);
    width: calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
  }
  .lk-shop-liveapp {
    grid-template-columns:
      minmax(0, 2.3fr)
      minmax(0, 1fr)
      minmax(0, 1.85fr) !important;
    column-gap: 10px !important;
  }
  .lk-shop-liveapp__media,
  .lk-shop-liveapp__body,
  .lk-shop-liveapp__next,
  .lk-shop-liveapp__promo {
    height: 132px;
    min-height: 132px;
  }
  .lk-shop-liveapp__body {
    height: 132px;
    min-height: 132px;
  }
  .lk-shop-liveapp__next {
    padding: 10px 12px 8px;
  }
  .lk-shop-liveapp__gratis {
    padding: 10px 4px 8px 12px;
  }
  .lk-shop-liveapp__phone {
    flex-basis: 44%;
    max-width: 180px;
    min-width: 120px;
    margin: -28px 0 -22px -18px;
  }
  .lk-shop-liveapp__phone img {
    max-width: 175px;
    max-height: 188px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* Zwischen Desktop-Start und großer Breite: Headline & Trust halten 2 Zeilen / 1 Reihe */
  body.lk-home-page .lk-ref-wrap {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  body.lk-home-page .lk-ref-hero {
    grid-template-columns: minmax(360px, 0.46fr) minmax(400px, 0.54fr);
    gap: 28px;
  }
  body.lk-home-page .lk-ref-hero h1 {
    font-size: clamp(2.2rem, 3.6vw, 2.85rem);
  }
  body.lk-home-page .lk-ref-hero__copy .lk-shop-trust {
    gap: 10px 14px;
  }
  body.lk-home-page .lk-ref-hero__copy .lk-shop-trust strong {
    font-size: 0.7rem;
  }
  body.lk-home-page .lk-ref-hero__copy .lk-shop-trust small {
    font-size: 0.62rem;
  }
  .lk-ref-hero__visual {
    height: 240px;
    min-height: 240px;
    max-height: 260px;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .lk-shop-hero-deal--float {
    width: clamp(170px, 30%, 210px);
    top: 10px;
    padding: 14px 12px 12px;
    right: 0;
    transform: none;
  }
  .lk-shop-hero-deal--float .lk-shop-hero-deal__price {
    font-size: 1.3rem;
  }
  .lk-shop-hero-deal--float .lk-shop-hero-deal__title {
    font-size: 0.92rem;
  }
  .lk-shop-trustbar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 8px 10px;
  }
  .lk-shop-trustbar__item strong {
    font-size: 0.72rem;
  }
  .lk-shop-trustbar__item small {
    font-size: 0.64rem;
  }
}
