/* Gemeinsames CSS mit getrennten Bereichen fÃ¼r Desktop-Version und Simplified-Version */

/* ========== GEMEINSAME BASIS-STILE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -cat-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Gemeinsame Farbvariablen */
:root {
    --white: #ffffff;
    --gray-bg: #f5f5f7;
    --gray-text: #86868b;
    --black: #1d1d1f;
    --blue: #1a6ec7;
    --red: #ff2d55;
}

html, body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Versionssteuerung */
.desktop-version {
    display: block;
}

.mobile-version {
    display: none;
}

@media (max-width: 767px) {
    .desktop-version {
        display: none;
    }
    .mobile-version {
        display: block;
    }
}

/* ========== DESKTOP-VERSION (KOMPLEX) ========== */
/* Styles fÃ¼r die komplexe Desktop-Version aus template_3_b.html */

/* Scrollbar-Entfernung */
.no-scrollbars {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.no-scrollbars::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}

/* Abschnitt-Wrapper */
.desktop-version .section {
    padding: 50px 0;
    position: relative;
}

/* Container */
.desktop-version .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* cat typische Ãœberschriften */
.desktop-version .cat-heading {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--black);
}

.desktop-version .cat-heading-large {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.desktop-version .cat-heading-medium {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.desktop-version .cat-subheading {
    font-weight: 400;
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 40px;
}

/* ABSCHNITT-ÃœBERGÃ„NGE */
.desktop-version .section-transition {
    height: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* -------- ABSCHNITT 1: VISION PRO LAYOUT (WEISS) -------- */
.desktop-version #vision-pro {
    background-color: var(--white);
}

.desktop-version .header {
    padding: 20px 0;
}

.desktop-version .product-tag {
    color: var(--red);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.desktop-version .product-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

.desktop-version .product-price {
    font-size: 17px;
    margin-bottom: 20px;
}

/* Main Layout mit Sticky Galerie */
.desktop-version .main-layout {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    position: relative;
}

.desktop-version .gallery-cell {
    display: table-cell;
    width: 77%;
    padding-right: 30px;
    vertical-align: top;
}

.desktop-version .content-cell {
    display: table-cell;
    width: 23%;
    vertical-align: top;
}

/* Content mit Scrollbereich */
.desktop-version .content-container {
    -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
}

.desktop-version .content-scroll {
    height: 700px;
    overflow-y: auto;
    padding-right: 15px;
}

.desktop-version .content-scroll::-webkit-scrollbar {
    width: 0 !important;
    display: none !important;
}

/* Gallery Basics */
.desktop-version .gallery-container {
    position: relative;
    margin-bottom: 20px;
}

.desktop-version .gallery-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Galerie Box */
.desktop-version .gallery-box {
    width: 100%;
    height: 0;
    padding-bottom: 71.42%;
    background-color: var(--gray-bg);
    border-radius: 18px;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

/* Bilder Container */
.desktop-version .gallery-slides {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Einzelnes Bild */
.desktop-version .gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Zeige Bild wenn Radio selektiert */
.desktop-version #slide1:checked ~ .gallery-box .gallery-slide:nth-child(1),
.desktop-version #slide2:checked ~ .gallery-box .gallery-slide:nth-child(2),
.desktop-version #slide3:checked ~ .gallery-box .gallery-slide:nth-child(3),
.desktop-version #slide4:checked ~ .gallery-box .gallery-slide:nth-child(4) {
    opacity: 1;
    z-index: 1;
}

/* Galerie Navigation */
.desktop-version .gallery-controls {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

/* Navigation Arrows */
.desktop-version .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background-color: rgba(210, 210, 215, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 5;
}

/* Pfeilgestaltung */
.desktop-version .gallery-arrow:after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 1px;
}

.desktop-version .gallery-arrow-left {
    left: 20px;
}

.desktop-version .gallery-arrow-left:after {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.desktop-version .gallery-arrow-right {
    right: 20px;
}

.desktop-version .gallery-arrow-right:after {
    transform: translate(-65%, -50%) rotate(45deg);
}

/* Labels fÃ¼r Pfeile */
.desktop-version .arrow-label {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 10;
}

/* Verstecke Pfeile basierend auf Slide */
.desktop-version #slide1:checked ~ .gallery-box .gallery-arrow-left,
.desktop-version #slide4:checked ~ .gallery-box .gallery-arrow-right {
    display: none;
}

/* Zeige richtige Pfeil-Labels */
.desktop-version #slide1:checked ~ .gallery-box .gallery-arrow-right .to-slide2,
.desktop-version #slide2:checked ~ .gallery-box .gallery-arrow-left .to-slide1,
.desktop-version #slide2:checked ~ .gallery-box .gallery-arrow-right .to-slide3,
.desktop-version #slide3:checked ~ .gallery-box .gallery-arrow-left .to-slide2,
.desktop-version #slide3:checked ~ .gallery-box .gallery-arrow-right .to-slide4,
.desktop-version #slide4:checked ~ .gallery-box .gallery-arrow-left .to-slide3 {
    display: block;
}

/* Gallery Dots */
.desktop-version .gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    pointer-events: auto;
    z-index: 5;
}

.desktop-version .gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
}

.desktop-version .dot-label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Aktiver Dot */
.desktop-version #slide1:checked ~ .gallery-box .gallery-dots .gallery-dot:nth-child(1),
.desktop-version #slide2:checked ~ .gallery-box .gallery-dots .gallery-dot:nth-child(2),
.desktop-version #slide3:checked ~ .gallery-box .gallery-dots .gallery-dot:nth-child(3),
.desktop-version #slide4:checked ~ .gallery-box .gallery-dots .gallery-dot:nth-child(4) {
    background-color: rgba(0, 0, 0, 0.6);
}

/* ------------ SCROLLBARER BEREICH STYLING ------------ */

/* Payment Section */
.desktop-version .payment-section {
    margin-bottom: 30px;
}

.desktop-version .payment-title {
    font-size: 21px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
    letter-spacing: -0.022em;
    line-height: 1.19048;
}

.desktop-version .payment-subtitle {
    font-size: 21px;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 20px;
    letter-spacing: -0.022em;
    line-height: 1.19048;
}

/* Payment Cards */
.desktop-version .payment-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid #d2d2d7;
    padding: 20px;
    margin-bottom: 10px;
}

.desktop-version .payment-card-selected {
    background-color: #f5f5f7;
    border-color: var(--blue);
}

.desktop-version .payment-card-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 12px;
}

/* cat Logo fÃ¼r Finance Option */
.desktop-version .cat-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.desktop-version .cat-logo-icon {
    width: 16px;
    height: 16px;
    background-color: #f5f5f7;
    border-radius: 50%;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-version .cat-logo-text {
    font-size: 13px;
    color: #86868b;
}

/* Bullet Points Style */
.desktop-version .bullet-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-version .bullet-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #1d1d1f;
    line-height: 1.4;
}

.desktop-version .bullet-list li:last-child {
    margin-bottom: 0;
}

.desktop-version .bullet-list li:before {
    content: "";
    position: absolute;
    left: 0;
    color: #86868b;
}

/* catCare Section */
.desktop-version .catcare-section {
    margin-bottom: 30px;
}

.desktop-version .catcare-title {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 2px;
    letter-spacing: -0.022em;
    line-height: 1.19048;
}

.desktop-version .catcare-title .gray-text {
    font-weight: 400;
    color: #86868b;
}

.desktop-version .catcare-subtitle {
    font-size: 21px;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 20px;
    letter-spacing: -0.022em;
    line-height: 1.19048;
}

.desktop-version .catcare-superscript {
    font-size: 12px;
    vertical-align: super;
}

/* catCare+ Card */
.desktop-version .catcare-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid #d2d2d7;
    padding: 20px;
    margin-bottom: 10px;
}

/* cat Button */
.desktop-version .cat-button {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: transparent;
    color: #1d1d1f;
    border: none;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    padding: 0;
    margin-bottom: 3px;
    letter-spacing: -0.022em;
    cursor: pointer;
}

.desktop-version .cat-logo-pink {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    color: #ff2d55;
}

/* Price Text */
.desktop-version .price-text {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 20px;
    margin-left: 24px;
    letter-spacing: -0.016em;
}

/* Divider */
.desktop-version .divider {
    height: 1px;
    background-color: #d2d2d7;
    margin: 20px 0;
}

/* No catCare+ Button */
.desktop-version .no-catcare-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    background-color: #ffffff;
    color: #1d1d1f;
    border-radius: 12px;
    border: 1px solid #d2d2d7;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    margin-bottom: 20px;
    cursor: pointer;
    letter-spacing: -0.022em;
}

/* Help Link */
.desktop-version .help-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
}

.desktop-version .help-title {
    font-size: 14px;
    color: #86868b;
    font-weight: 400;
    letter-spacing: -0.016em;
}

.desktop-version .help-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #d2d2d7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    font-size: 8px;
    color: #86868b;
    transform: translateY(2px);
}

/* Help Text */
.desktop-version .help-text {
    font-size: 14px;
    color: #86868b;
    line-height: 1.42859;
    letter-spacing: -0.016em;
}

/* -------- ABSCHNITT 2: APP CAROUSEL (GRAU) -------- */
.desktop-version #app-carousel-section {
    background-color: var(--gray-bg);
    padding: 80px 0;
    overflow: hidden;
}

#pause-carousel {
    display: none;
}

.desktop-version .apps-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Karussell-Container */
.desktop-version .carousel-container {
    position: relative;
    width: min(1200px, 95vw);
    height: min(600px, 70vh);
    margin: 0 auto 60px;
    perspective: 2000px;
    transform-style: preserve-3d;
}

/* Zentrale Achse */
.desktop-version .carousel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* Rotierendes Karussell */
.desktop-version .carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotateCarousel 45s infinite linear;
    will-change: transform;
}

@keyframes rotateCarousel {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(-360deg);
    }
}

/* Pausiert die Animation wenn Barrierefreiheit aktiviert */
@media (prefers-reduced-motion: reduce) {
    .desktop-version .carousel {
        animation-play-state: paused;
    }
}

/* Karussell-Karten */
.desktop-version .carousel-item {
    position: absolute;
    width: min(300px, 40vw);
    height: calc(min(300px, 40vw) * 1.5);
    left: 50%;
    top: 50%;
    margin-left: calc(min(300px, 40vw) / -2);
    margin-top: calc(min(300px, 40vw) * 1.5 / -2);
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
    will-change: transform;
}

/* Karten-Inhalt Container */
.desktop-version .card-content {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Vorderseite der Karte */
.desktop-version .card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background-color: var(--white);
}

/* RÃ¼ckseite der Karte */
.desktop-version .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}

/* Modell-Bild */
.desktop-version .model-image {
    width: 100%;
    height: calc(min(300px, 40vw) * 1.5 * 4/7);
    object-fit: cover;
    object-position: top center;
}

/* net-Style Info-Box */
.desktop-version .net-info {
    padding: 15px;
    background-color: #2F2F2F;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.desktop-version .size-circles {
    display: flex;
    gap: 8px;
}

.desktop-version .size-circle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 11px;
    font-weight: 500;
}

.desktop-version .plus-circle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 14px;
}

.desktop-version .product-brands {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.desktop-version .brand-tag {
    font-size: 12px;
    color: white;
    padding: 2px 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.desktop-version .brand-tag.rounded {
    border-radius: 12px;
}

.desktop-version .product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.desktop-version .product-tag {
    font-size: 12px;
    color: #d2d2d2;
    padding: 2px 0px;
    position: relative;
}

.desktop-version .product-tag:not(:last-child):after {
    content: "";
    position: absolute;
    right: -7px;
    color: #646464;
}

.desktop-version .net-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #d12a2a;
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 8px;
    z-index: 10;
}

/* Action Buttons */
.desktop-version .card-actions {
    display: flex;
    gap: 10px;
}

.desktop-version .action-button {
    flex: 1;
    padding: 8px 0;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.desktop-version .action-primary {
    background-color: white;
    color: #181818;
}

.desktop-version .action-secondary {
    background-color: rgba(109, 109, 110, 0.7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.desktop-version .action-button:hover {
    opacity: 1;
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.9);
}

.desktop-version .action-secondary:hover {
    background-color: rgba(109, 109, 110, 0.9);
}

/* net New Badge */
.desktop-version .net-new-badge {
    position: absolute;
    bottom: calc(min(300px, 40vw) * 1.5 * 3/7 + 5px);
    left: 0;
    background-color: #d12a2a;
    color: white;
    font-size: 12px;
    font-weight: 400;
    padding: 3px 10px;
    z-index: 10;
    text-transform: uppercase;
}

/* Hover-Effekt fÃ¼r Karten */
.desktop-version .carousel-item:hover .card-content {
    transform: rotateY(180deg);
}

/* Positionierung der Karten im Karussell-Stil */
.desktop-version .carousel-item:nth-child(1) { 
    transform: rotateY(0deg) translateZ(calc(min(1200px, 95vw) * 0.45)); 
}
.desktop-version .carousel-item:nth-child(2) { 
    transform: rotateY(36deg) translateZ(calc(min(1200px, 95vw) * 0.45)); 
}
.desktop-version .carousel-item:nth-child(3) { 
    transform: rotateY(72deg) translateZ(calc(min(1200px, 95vw) * 0.45)); 
}
.desktop-version .carousel-item:nth-child(4) { 
    transform: rotateY(108deg) translateZ(calc(min(1200px, 95vw) * 0.45)); 
}
.desktop-version .carousel-item:nth-child(5) { 
    transform: rotateY(144deg) translateZ(calc(min(1200px, 95vw) * 0.45)); 
}
.desktop-version .carousel-item:nth-child(6) { 
    transform: rotateY(180deg) translateZ(calc(min(1200px, 95vw) * 0.45)); 
}
.desktop-version .carousel-item:nth-child(7) { 
    transform: rotateY(216deg) translateZ(calc(min(1200px, 95vw) * 0.45)); 
}
.desktop-version .carousel-item:nth-child(8) { 
    transform: rotateY(252deg) translateZ(calc(min(1200px, 95vw) * 0.45)); 
}
.desktop-version .carousel-item:nth-child(9) { 
    transform: rotateY(288deg) translateZ(calc(min(1200px, 95vw) * 0.45)); 
}
.desktop-version .carousel-item:nth-child(10) { 
    transform: rotateY(324deg) translateZ(calc(min(1200px, 95vw) * 0.45)); 
}

/* Karussell-Basis/Boden - Reflektion */
.desktop-version .carousel-base {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(min(1200px, 95vw) * 0.7);
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(5px);
}

/* Feature Row Anpassungen fÃ¼r Streaming-Sektion */
.desktop-version .feature-row {
    position: relative;
    margin-bottom: 50px;
    overflow: visible !important;
    padding: 0 20px;
}

.desktop-version .feature-slider-container {
    position: relative;
    overflow: visible !important;
}

.desktop-version .feature-slider {
    display: flex;
    width: max-content;
    padding: 10px 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.desktop-version .feature-slider:nth-of-type(1) {
    animation: feature-scroll 60s linear infinite;
}

.desktop-version .feature-slider[style*="feature-scroll-reverse"] {
    animation: feature-scroll-reverse 60s linear infinite;
}

@keyframes feature-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

@keyframes feature-scroll-reverse {
    0% {
        transform: translateX(calc(-50%));
    }
    100% {
        transform: translateX(0);
    }
}

.desktop-version .feature-card {
    flex: 0 0 auto;
    width: 420px;
    height: 240px;
    margin: 0 15px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


    .desktop-version .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        z-index: 100 !important;
    }
    
    .desktop-version .feature-card:hover img {
        transform: scale(1.05);
    }
    
    .desktop-version .feature-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: transform 0.5s ease;
    }
    
    .desktop-version .feature-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: white;
        z-index: 1;
    }
    
    .desktop-version .hover-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.75);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }
    
    .desktop-version .feature-card:hover .hover-overlay {
        opacity: 1;
    }
    
    /* Desktop Responsive Anpassungen */
    @media (max-width: 1100px) {
        .desktop-version .gallery-cell {
            width: 70%;
        }
        
        .desktop-version .content-cell {
            width: 30%;
        }
        
        .desktop-version .carousel-item {
            width: min(250px, 45vw);
            height: calc(min(250px, 45vw) * 1.5);
        }
        
        .desktop-version .cat-heading {
            font-size: 32px;
        }
        
        .desktop-version .cat-subheading {
            font-size: 20px;
        }
        
        .desktop-version .feature-card {
            width: 350px;
            height: 300px;
        }
    }
    
    @media (max-width: 900px) and (min-width: 768px) {
        .desktop-version .main-layout,
        .desktop-version .gallery-cell,
        .desktop-version .content-cell {
            display: block;
            width: 100%;
        }
        
        .desktop-version .content-scroll {
            height: auto;
            overflow-y: visible;
        }
        
        .desktop-version .gallery-cell {
            padding-right: 0;
            margin-bottom: 30px;
        }
        
        .desktop-version .gallery-box {
            position: relative;
            top: 0;
        }
        
        .desktop-version .feature-card {
            width: 300px;
            height: 250px;
        }
    }
    
    /* ========== MOBILE-VERSION (SIMPLIFIED) ========== */
    /* Styles fÃ¼r die vereinfachte Mobile-Version aus simplified-ebay-template.html */
    
    /* Abschnitte */
    .mobile-version .section {
        padding: 30px 0;
        width: 100%;
    }
    
    /* Container */
    .mobile-version .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    /* Ãœberschriften */
    .mobile-version .heading-large {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--black);
    }
    
    .mobile-version .heading-medium {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 12px;
        color: var(--black);
    }
    
    .mobile-version .subheading {
        font-size: 20px;
        font-weight: 400;
        color: var(--gray-text);
        margin-bottom: 25px;
    }
    
    .mobile-version .product-tag {
        color: var(--red);
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .mobile-version .product-price {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    /* Header-Bereich */
    .mobile-version .header {
        padding: 20px 0;
    }
    
    /* -------- ABSCHNITT 1: PRODUKT-ANZEIGE (WEISS) -------- */
    .mobile-version .product-section {
        background-color: var(--white);
    }
    
    /* Einfache zwei-Spalten-Layout */
    .mobile-version .product-layout {
        display: flex;
        flex-direction: column;
    }
    
    /* Vereinfachte Galerie */
    .mobile-version .gallery-box {
        width: 100%;
        background-color: var(--gray-bg);
        border-radius: 12px;
        margin-bottom: 20px;
        overflow: hidden;
    }
    
    /* Einfache Tabs fÃ¼r die Galerie */
    .mobile-version .gallery-tabs {
        display: flex;
        justify-content: center;
        margin: 10px 0;
    }
    
    .mobile-version .gallery-tab {
        width: 10px;
        height: 10px;
        background-color: #d2d2d7;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
    }
    
    .mobile-version .gallery-tab.active {
        background-color: var(--blue);
    }
    
    /* Bild-Container */
    .mobile-version .gallery-image {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* Vereinfachte Info-Karten */
    .mobile-version .info-card {
        background-color: var(--white);
        border-radius: 12px;
        border: 1px solid #d2d2d7;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .mobile-version .info-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .mobile-version .info-subtitle {
        font-size: 16px;
        color: var(--gray-text);
        margin-bottom: 10px;
    }
    
    /* Listen */
    .mobile-version .bullet-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-version .bullet-list li {
        position: relative;
        padding-left: 16px;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .mobile-version .bullet-list li:before {
        content: "";
        position: absolute;
        left: 0;
        color: var(--gray-text);
    }
    
    .mobile-version .divider {
        height: 1px;
        background-color: #d2d2d7;
        margin: 15px 0;
    }
    
    /* Buttons */
    .mobile-version .button {
        display: block;
        width: 100%;
        padding: 12px 0;
        text-align: center;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.2s;
        margin-bottom: 15px;
    }
    
    .mobile-version .button-primary {
        background-color: var(--blue);
        color: var(--white);
        border: none;
    }
    
    .mobile-version .button-secondary {
        background-color: var(--white);
        color: var(--black);
        border: 1px solid #d2d2d7;
    }
    
    /* -------- ABSCHNITT 2: STYLE ANGEBOT (GRAU) -------- */
    .mobile-version .style-section {
        background-color: var(--gray-bg);
    }
    
    .mobile-version .section-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    /* Einfaches Grid fÃ¼r die Stile */
    .mobile-version .style-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Style-Karten */
    .mobile-version .style-card {
        background-color: var(--white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-version .style-image {
        width: 100%;
        aspect-ratio: 0.7;
        object-fit: cover;
    }
    
    .mobile-version .style-info {
        padding: 12px;
    }
    
    .mobile-version .style-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 8px;
    }
    
    .mobile-version .badge {
        font-size: 12px;
        padding: 3px 8px;
        border-radius: 12px;
        background-color: #f0f0f0;
    }
    
    .mobile-version .badge-highlight {
        background-color: var(--red);
        color: var(--white);
    }
    
    .mobile-version .style-title {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 5px;
    }
    
    .mobile-version .style-price {
        font-size: 14px;
        color: var(--gray-text);
    }
    
    /* -------- ABSCHNITT 3: SORTIMENT (SCHWARZ) -------- */
    .mobile-version .collection-section {
        background-color: #000000;
        color: var(--white);
    }
    
    .mobile-version .collection-section .heading-medium,
    .mobile-version .collection-section .subheading {
        color: var(--white);
        text-align: center;
    }
    
    /* Bildertafeln */
    .mobile-version .feature-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
        margin-bottom: 20px;
        gap: 15px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .mobile-version .feature-row::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    .mobile-version .feature-card {
        flex: 0 0 300px;
        height: 180px;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }
    
    .mobile-version .feature-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-version .feature-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: white;
    }
    
    .mobile-version .feature-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .mobile-version .feature-subtitle {
        font-size: 14px;
        opacity: 0.8;
    }
    
    .mobile-version .row-title {
        font-size: 20px;
        color: var(--white);
        margin: 30px 0 15px;
    }
    
    /* Mobile Responsive Anpassungen fÃ¼r den Simplified-View */
    @media (min-width: 768px) {
        .mobile-version .product-layout {
            flex-direction: row;
        }
        
        .mobile-version .gallery-column {
            flex: 0 0 65%;
        }
        
        .mobile-version .info-column {
            flex: 0 0 35%;
            padding-left: 20px;
        }
        
        .mobile-version .style-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (min-width: 992px) {
        .mobile-version .style-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    
    @media (max-width: 480px) {
        .mobile-version .heading-large {
            font-size: 24px;
        }
        
        .mobile-version .heading-medium {
            font-size: 20px;
        }
        
        .mobile-version .subheading {
            font-size: 16px;
        }
        
        .mobile-version .feature-card {
            flex: 0 0 250px;
            height: 150px;
        }
    }
    

    /* DYNAMISCHE ERGÃ„NZUNGEN FÃœR DIE MOBILE VERSION */
/* Diese Styles am Ende des Mobile-Bereichs einfÃ¼gen (nach den bestehenden Mobile-Styles) */

/* -------- 1. CSS-GALERIE FÃœR MOBILE -------- */
.mobile-version .gallery-container {
    position: relative;
    margin-bottom: 20px;
}

.mobile-version .gallery-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Galerie Box statt einfachem Bild */
.mobile-version .gallery-box {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Quadratisches Format fÃ¼r Mobile */
    background-color: var(--gray-bg);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Bilder Container */
.mobile-version .gallery-slides {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Einzelnes Bild */
.mobile-version .gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Zeige Bild wenn Radio selektiert */
.mobile-version #mobile-slide1:checked ~ .gallery-box .gallery-slide:nth-child(1),
.mobile-version #mobile-slide2:checked ~ .gallery-box .gallery-slide:nth-child(2),
.mobile-version #mobile-slide3:checked ~ .gallery-box .gallery-slide:nth-child(3),
.mobile-version #mobile-slide4:checked ~ .gallery-box .gallery-slide:nth-child(4) {
    opacity: 1;
    z-index: 1;
}

/* Galerie Navigation fÃ¼r Mobile */
.mobile-version .gallery-controls {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

/* Mobile Pfeile (kleiner als bei Desktop) */
.mobile-version .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; /* Kleiner als Desktop */
    height: 40px;
    background-color: rgba(210, 210, 215, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 5;
}

/* Mobile Pfeilgestaltung */
.mobile-version .gallery-arrow:after {
    content: '';
    display: block;
    width: 10px; /* Kleiner als Desktop */
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 1px;
}

.mobile-version .gallery-arrow-left {
    left: 10px; /* NÃ¤her am Rand */
}

.mobile-version .gallery-arrow-left:after {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.mobile-version .gallery-arrow-right {
    right: 10px; /* NÃ¤her am Rand */
}

.mobile-version .gallery-arrow-right:after {
    transform: translate(-65%, -50%) rotate(45deg);
}

/* Labels fÃ¼r Pfeile */
.mobile-version .arrow-label {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 10;
}

/* Verstecke Pfeile basierend auf Slide */
.mobile-version #mobile-slide1:checked ~ .gallery-box .gallery-arrow-left,
.mobile-version #mobile-slide4:checked ~ .gallery-box .gallery-arrow-right {
    display: none;
}

/* Zeige richtige Pfeil-Labels */
.mobile-version #mobile-slide1:checked ~ .gallery-box .gallery-arrow-right .to-slide2,
.mobile-version #mobile-slide2:checked ~ .gallery-box .gallery-arrow-left .to-slide1,
.mobile-version #mobile-slide2:checked ~ .gallery-box .gallery-arrow-right .to-slide3,
.mobile-version #mobile-slide3:checked ~ .gallery-box .gallery-arrow-left .to-slide2,
.mobile-version #mobile-slide3:checked ~ .gallery-box .gallery-arrow-right .to-slide4,
.mobile-version #mobile-slide4:checked ~ .gallery-box .gallery-arrow-left .to-slide3 {
    display: block;
}

/* Mobile Gallery Dots */
.mobile-version .gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    pointer-events: auto;
    z-index: 5;
}

.mobile-version .gallery-dot {
    width: 8px; /* Kleiner als Desktop */
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
}

.mobile-version .dot-label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Aktiver Dot */
.mobile-version #mobile-slide1:checked ~ .gallery-box .gallery-dots .gallery-dot:nth-child(1),
.mobile-version #mobile-slide2:checked ~ .gallery-box .gallery-dots .gallery-dot:nth-child(2),
.mobile-version #mobile-slide3:checked ~ .gallery-box .gallery-dots .gallery-dot:nth-child(3),
.mobile-version #mobile-slide4:checked ~ .gallery-box .gallery-dots .gallery-dot:nth-child(4) {
    background-color: rgba(0, 0, 0, 0.6);
}

/* -------- 2. MINIATUR-KARUSSELL FÃœR MOBILE -------- */
.mobile-version .style-section {
    background-color: var(--gray-bg);
    padding: 40px 0;
    overflow: hidden;
}

.mobile-version .style-header {
    text-align: center;
    margin-bottom: 25px;
}



/* Miniatur-Karussell-Container */
.mobile-version .mini-carousel-container {
    position: relative;
    width: 100%;
    height: 300px; /* Geringere HÃ¶he als Desktop */
    margin: 0 auto 30px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Zentrale Achse (kleiner) */
.mobile-version .carousel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; /* Kleiner als Desktop */
    height: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Rotierendes Karussell */
.mobile-version .carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: mobileRotateCarousel 60s infinite linear; /* Langsamer fÃ¼r Mobile */
    will-change: transform;
}

@keyframes mobileRotateCarousel {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(-360deg);
    }
}

/* Reduktion fÃ¼r Barrierefreiheit bleibt gleich */
@media (prefers-reduced-motion: reduce) {
    .mobile-version .carousel {
        animation-play-state: paused;
    }
}

/* Kleinere Karussell-Karten */
.mobile-version .carousel-item {
    position: absolute;
    width: 150px; /* Deutlich kleiner */
    height: 225px; /* Proportional zur Breite */
    left: 50%;
    top: 50%;
    margin-left: -75px; /* HÃ¤lfte der Breite */
    margin-top: -112.5px; /* HÃ¤lfte der HÃ¶he */
    background-color: var(--white);
    border-radius: 6px; /* Kleiner */
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
    will-change: transform;
}

/* Karten-Inhalt Container bleibt gleich */
.mobile-version .card-content {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Front und Back Styling bleibt gleich */
.mobile-version .card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background-color: var(--white);
}

.mobile-version .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}

/* Bild */
.mobile-version .model-image {
    width: 100%;
    height: 60%;
    object-fit: cover;
    object-position: top center;
}

/* Info-Box (vereinfacht fÃ¼r Mobile) */
.mobile-version .net-info {
    padding: 8px;
    background-color: #2F2F2F;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* GrÃ¶ÃŸen-Kreise */
.mobile-version .size-circles {
    display: flex;
    gap: 4px;
}

.mobile-version .size-circle {
    width: 18px; /* Kleiner */
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 9px; /* Kleiner */
    font-weight: 500;
}

.mobile-version .plus-circle {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 12px;
}

/* Tags */
.mobile-version .product-brands {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.mobile-version .brand-tag {
    font-size: 8px; /* Kleiner */
    color: white;
    padding: 1px 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.mobile-version .brand-tag.rounded {
    border-radius: 8px;
}

.mobile-version .product-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.mobile-version .product-tag {
    font-size: 8px;
    color: #d2d2d2;
    padding: 1px 0px;
    position: relative;
}

.mobile-version .product-tag:not(:last-child):after {
    content: "";
    position: absolute;
    right: -5px;
    color: #646464;
}

/* Badges */
.mobile-version .net-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #d12a2a;
    color: white;
    font-size: 8px;
    font-weight: 500;
    padding: 2px 6px;
    z-index: 10;
}

.mobile-version .net-new-badge {
    position: absolute;
    bottom: 40%;
    left: 0;
    background-color: #d12a2a;
    color: white;
    font-size: 8px;
    font-weight: 400;
    padding: 2px 6px;
    z-index: 10;
    text-transform: uppercase;
}

/* Buttons */
.mobile-version .card-actions {
    display: flex;
    gap: 5px;
}

.mobile-version .action-button {
    flex: 1;
    padding: 4px 0;
    text-align: center;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.mobile-version .action-primary {
    background-color: white;
    color: #181818;
}

.mobile-version .action-secondary {
    background-color: rgba(109, 109, 110, 0.7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover-Effekt bei Touch bleibt gleich */
.mobile-version .carousel-item:hover .card-content {
    transform: rotateY(180deg);
}

/* Positionierung der Karten im Karussell-Stil */
.mobile-version .carousel-item:nth-child(1) { 
    transform: rotateY(0deg) translateZ(150px); 
}
.mobile-version .carousel-item:nth-child(2) { 
    transform: rotateY(45deg) translateZ(150px); 
}
.mobile-version .carousel-item:nth-child(3) { 
    transform: rotateY(90deg) translateZ(150px); 
}
.mobile-version .carousel-item:nth-child(4) { 
    transform: rotateY(135deg) translateZ(150px); 
}
.mobile-version .carousel-item:nth-child(5) { 
    transform: rotateY(180deg) translateZ(150px); 
}
.mobile-version .carousel-item:nth-child(6) { 
    transform: rotateY(225deg) translateZ(150px); 
}
.mobile-version .carousel-item:nth-child(7) { 
    transform: rotateY(270deg) translateZ(150px); 
}
.mobile-version .carousel-item:nth-child(8) { 
    transform: rotateY(315deg) translateZ(150px); 
}

/* -------- 3. LAUFENDE BÃ„NDER FÃœR MOBILE (VOLLSTÃ„NDIG) -------- */
.mobile-version .collection-section {
    background-color: #000000;
    color: var(--white);
    padding: 40px 0;
    overflow: hidden;
}

.mobile-version .mobile-feature-row {
    position: relative;
    margin-bottom: 30px;
    overflow: visible !important;
    padding: 0 10px;
}

.mobile-version .feature-slider-container {
    position: relative;
    overflow: visible !important;
}

.mobile-version .feature-slider {
    display: flex;
    width: max-content;
    padding: 10px 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-version .feature-slider:nth-of-type(1) {
    animation: mobile-feature-scroll 40s linear infinite; /* Etwas schneller fÃ¼r Mobile */
}

.mobile-version .feature-slider[style*="feature-scroll-reverse"] {
    animation: mobile-feature-scroll-reverse 40s linear infinite;
}

@keyframes mobile-feature-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

@keyframes mobile-feature-scroll-reverse {
    0% {
        transform: translateX(calc(-50%));
    }
    100% {
        transform: translateX(0);
    }
}

.mobile-version .feature-card {
    flex: 0 0 auto;
    width: 260px; /* Kleiner fÃ¼r Mobile */
    height: 160px;
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-version .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100 !important;
}

#mobile-pause-carousel,
label[for="mobile-pause-carousel"] {
    display: none !important;
}

.mobile-version .feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.5s ease;
}

.mobile-version .feature-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    z-index: 1;
}

.mobile-version .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 10px;
}

.mobile-version .hover-content {
    text-align: center;
    padding: 10px;
}

.mobile-version .hover-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: white;
}

.mobile-version .hover-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-version .feature-card:hover .hover-overlay {
    opacity: 1;
}

/* Passung der bestehenden Feature-Karten-Styles */
.mobile-version .row-title {
    font-size: 18px;
    color: white;
    margin: 20px 0 15px;
    padding: 0 15px;
}

@media (max-width: 480px) {
    .mobile-version .carousel-item {
        width: 120px;
        height: 180px;
        margin-left: -60px;
        margin-top: -90px;
    }
    
    .mobile-version .carousel-item:nth-child(1),
    .mobile-version .carousel-item:nth-child(2),
    .mobile-version .carousel-item:nth-child(3),
    .mobile-version .carousel-item:nth-child(4),
    .mobile-version .carousel-item:nth-child(5),
    .mobile-version .carousel-item:nth-child(6),
    .mobile-version .carousel-item:nth-child(7),
    .mobile-version .carousel-item:nth-child(8) {
        transform-origin: center;
        transform: rotateY(calc(var(--i) * 45deg)) translateZ(120px);
    }
    
    .mobile-version .feature-card {
        width: 220px;
        height: 140px;
    }
}

/* Korrigierter Hover-Overlay für Feature-Cards */
.desktop-version .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Etwas transparenter schwarz */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 2;
}

.desktop-version .feature-card:hover .hover-overlay {
    opacity: 1;
}

.desktop-version .hover-content {
    text-align: center;
    color: white; /* Explizit weiße Schrift */
}

.desktop-version .hover-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    color: white; /* Explizit weiße Schrift */
}

.desktop-version .hover-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9); /* Leicht transparenteres Weiß für den Text */
    max-height: 120px;
    overflow: hidden;
}

/* ===== FINALE FEATURE-CARD KORREKTUREN ===== */

/* Grundlegende Feature-Card-Einstellungen mit hoher Priorität */
.feature-card {
    flex: 0 0 auto !important;
    width: 420px !important; /* Standard-Breite erzwingen */
    height: 240px !important; /* Standard-Höhe erzwingen für 16:9 Format */
    margin: 0 15px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    /* Aspect Ratio festlegen als zusätzliche Absicherung */
    aspect-ratio: 16/9 !important;
}

/* Bilder innerhalb der Feature-Cards erzwingen */
.feature-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Behält Proportionen, füllt Container */
    object-position: center center !important; /* Zentriert Bild */
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.5s ease !important;
}

/* Zwischenbildschirmbreiten optimieren mit hoher Priorität */
@media (max-width: 1100px) and (min-width: 769px) {
    .feature-card {
        width: 350px !important; /* Reduzierte Breite */
        height: 197px !important; /* Höhe entsprechend angepasst, um 16:9 zu behalten */
        /* Aspect Ratio aktualisieren */
        aspect-ratio: 16/9 !important;
    }
}

/* Verfeinerter Breakpoint für noch kleinere Bildschirme */
@media (max-width: 768px) and (min-width: 577px) {
    .feature-card {
        width: 300px !important; /* Weiter reduzierte Breite */
        height: 169px !important; /* Höhe entsprechend angepasst, um 16:9 zu behalten */
        /* Aspect Ratio aktualisieren */
        aspect-ratio: 16/9 !important;
    }
    
    .desktop-version .hover-content h3 {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }
    
    .desktop-version .hover-content p {
        font-size: 12px !important;
        line-height: 1.4 !important;
        max-height: 80px !important;
    }
}

/* Diese Korrekturen überschreiben explizit die problematischen Medienabfragen im externen CSS */
@media (max-width: 1100px) {
    .desktop-version .feature-card {
        width: 350px !important;
        height: 197px !important; /* Korrigierte Höhe für 16:9 */
        aspect-ratio: 16/9 !important;
    }
}

@media (max-width: 900px) and (min-width: 768px) {
    .desktop-version .feature-card {
        width: 300px !important;
        height: 169px !important; /* Korrigierte Höhe für 16:9 */
        aspect-ratio: 16/9 !important;
    }
}

/* Verbesserte Hover-Effekt und Overlay Korrekturen für Desktop-Version */
.desktop-version .hover-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.75) !important; /* Optimierte Transparenz */
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    z-index: 2 !important;
}

.desktop-version .feature-card:hover .hover-overlay {
    opacity: 1 !important;
}

.desktop-version .hover-content {
    text-align: center !important;
    color: white !important; /* Explizit weiße Schrift für besseren Kontrast */
    max-width: 90% !important;
}

.desktop-version .hover-content h3 {
    font-size: 22px !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
    color: white !important; /* Explizit weiße Schrift */
}

.desktop-version .hover-content p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.9) !important; /* Leicht transparenteres Weiß für den Text */
    max-height: 120px !important; 
    overflow: hidden !important;
}

/* Spezieller Fix für die Animation der Laufbänder */
.feature-slider:nth-of-type(1) {
    animation: feature-scroll 60s linear infinite !important;
}

.feature-slider[style*="feature-scroll-reverse"] {
    animation: feature-scroll-reverse 60s linear infinite !important;
}

@keyframes feature-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

@keyframes feature-scroll-reverse {
    0% {
        transform: translateX(calc(-50%));
    }
    100% {
        transform: translateX(0);
    }
}

/* Grundlegende Einstellungen für die mobile Sektion */
.mobile-version .collection-section {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    overflow: hidden;
    position: relative;
}

.mobile-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

.mobile-version .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.mobile-version .section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.mobile-version .section-subtitle {
    font-size: 16px;
    color: #86868b;
    max-width: 800px;
    margin: 0 auto;
}

/* Vertikales 3D-Karussell für Mobile */
.mobile-carousel-container {
    position: relative;
    width: 100%;
    height: 350px; /* Reduzierte Höhe für mobile Geräte */
    margin: 20px auto 40px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Zentrale Achse */
.mobile-version .carousel-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px; /* Kleiner für mobile Ansicht */
    height: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    z-index: 100;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Carousel-Basis/Boden - Reflektion */
.mobile-version .carousel-base {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 10px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(3px);
}

/* Rotierendes Karussell */
.mobile-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotateCarouselVerticalMobile 30s infinite linear;
    will-change: transform;
}

@keyframes rotateCarouselVerticalMobile {
    0% {
        transform: rotateX(0);
    }
    100% {
        transform: rotateX(360deg);
    }
}

/* Pausiert die Animation bei Eingabe */
#mobile-pause-carousel {
    display: none; /* Verstecke Checkbox */
}

#mobile-pause-carousel:checked ~ .mobile-carousel {
    animation-play-state: paused;
}

/* Steuerungselemente für Play/Pause */
.mobile-version .carousel-controls {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mobile-version .control-button {
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-version .control-button:hover {
    transform: scale(1.1);
}

.mobile-version .pause-icon, 
.mobile-version .play-icon {
    width: 14px;
    height: 14px;
    position: relative;
}

.mobile-version .pause-icon::before, 
.mobile-version .pause-icon::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 12px;
    background-color: #000;
    border-radius: 1.5px;
}

.mobile-version .pause-icon::before {
    left: 3px;
}

.mobile-version .pause-icon::after {
    right: 3px;
}

.mobile-version .play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #000;
    margin-left: 2px;
}

#mobile-pause-carousel:checked ~ .carousel-controls .pause-icon {
    display: none;
}

#mobile-pause-carousel:not(:checked) ~ .carousel-controls .play-icon {
    display: none;
}

/* Feature-Karten-Styling */
.mobile-feature-card {
    position: absolute;
    width: 220px; /* Kleiner für mobile Ansicht */
    height: 130px;
    left: 50%;
    top: 50%;
    margin-left: -110px; /* Hälfte der Breite */
    margin-top: -65px; /* Hälfte der Höhe */
    border-radius: 8px;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.mobile-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 1;
    visibility: visible;
    transition: transform 0.5s ease;
}

.mobile-feature-card:hover {
    transform: translateY(-3px) translateZ(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.mobile-feature-card:hover img {
    transform: scale(1.05);
}

/* Positionierung der Karten im vertikalen Karussell-Stil */
.mobile-feature-card:nth-child(1) { 
    transform: rotateX(0deg) translateZ(180px); 
}
.mobile-feature-card:nth-child(2) { 
    transform: rotateX(45deg) translateZ(180px); 
}
.mobile-feature-card:nth-child(3) { 
    transform: rotateX(90deg) translateZ(180px); 
}
.mobile-feature-card:nth-child(4) { 
    transform: rotateX(135deg) translateZ(180px); 
}
.mobile-feature-card:nth-child(5) { 
    transform: rotateX(180deg) translateZ(180px); 
}
.mobile-feature-card:nth-child(6) { 
    transform: rotateX(225deg) translateZ(180px); 
}
.mobile-feature-card:nth-child(7) { 
    transform: rotateX(270deg) translateZ(180px); 
}
.mobile-feature-card:nth-child(8) { 
    transform: rotateX(315deg) translateZ(180px); 
}

/* Hover-Overlay für Feature-Cards */
.mobile-version .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    z-index: 2;
}

.mobile-feature-card:hover .hover-overlay {
    opacity: 1;
}

.mobile-version .hover-content {
    text-align: center;
}

.mobile-version .hover-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    color: white;
}

.mobile-version .hover-content p {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    max-height: 65px;
    overflow: hidden;
}

/* Feature-Info für bessere Sichtbarkeit */
.mobile-version .feature-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    z-index: 1;
}

.mobile-version .feature-subtitle {
    font-size: 10px;
    opacity: 0.7;
}

/* Mini-Galerie Styling */
.mobile-version .mini-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px auto;
    justify-content: center;
}

.mobile-version .gallery-item {
    flex: 0 0 calc(50% - 5px);
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.mobile-version .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mobile-version .gallery-item:hover img {
    transform: scale(1.1);
}

.mobile-version .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-version .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.mobile-version .gallery-title {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 0 8px;
    color: white;
}

/* 
   Finale Lösung mit perfekter vertikaler Ausrichtung:
   - Weiße Schrift im roten Feld GENAU auf Höhe des "Zum Shop"-Buttons
   - Alle anderen Anpassungen wie zuvor
*/

/* ===== KARTENRÜCKSEITE UND GRAUE FLÄCHE ===== */
.mobile-version .style-section .carousel-item .card-back {
    transform: rotateY(180deg);
    background-color: transparent;
    position: relative; /* Für bessere Positionierungskontrolle */
}

/* Graue Fläche auf ca. 35% reduzieren */
.mobile-version .style-section .carousel-item .card-back .net-info,
.mobile-version .style-section .carousel-item .card-back .net-inf {
    position: absolute;
    width: 100%;
    height: 35%;
    bottom: 0;
    
    background: rgba(45, 45, 50, 0.95);
    padding: 4px 5px;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ===== "ZUM SHOP"-BUTTON ===== */
/* Button-Container */
.mobile-version .style-section .carousel-item .card-back .card-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 3px;
}

/* Zum-Shop-Button selbst */
.mobile-version .style-section .carousel-item .card-back .action-button {
    max-width: 80px;
    width: auto;
    padding: 3px 10px;
    font-size: 9px;
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    
    /* Explizite Höhe und vertikale Zentrierung */
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Position merken für das Badge */
    position: relative;
}

/* ===== BADGE-ANPASSUNGEN MIT EXAKTER VERTIKALER AUSRICHTUNG ===== */
/* Badge über der grauen Fläche */
.mobile-version .style-section .carousel-item .card-back .net-badge,
.mobile-version .style-section .carousel-item .card-back .net-new-badge {
    position: absolute;
    bottom: 36%; /* Position über dem grauen Bereich */
    right: 0;
    
    /* WICHTIG: Vertikale Ausrichtung am Button orientieren */
    /* Folgende Eigenschaften sorgen für identische vertikale Ausrichtung */
    height: 24px; /* Exakt gleiche Höhe wie der Button */
    line-height: 24px; /* Text vertikal zentriert */
    
    /* Text nach rechts ausrichten */
    text-align: left;
    padding: 0 5px 0 30px; /* Padding oben/unten entfernt für genauere Kontrolle */
    
    font-size: 9px;
    border-radius: 4px;
    margin: 0;
    z-index: 5;
}

/* ===== KOMPAKTE INHALTSANORDNUNG ===== */
/* Größenkreise */
.mobile-version .style-section .carousel-item .card-back .size-circles {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin: 0;
}

.mobile-version .style-section .carousel-item .card-back .size-circle,
.mobile-version .style-section .carousel-item .card-back .plus-circle {
    width: 16px;
    height: 16px;
    font-size: 9px;
    line-height: 16px;
}

/* Marken-Tags */
.mobile-version .style-section .carousel-item .card-back .product-brands {
    margin: 2px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}

.mobile-version .style-section .carousel-item .card-back .brand-tag {
    font-size: 8px;
    padding: 1px 3px;
}

/* Produkt-Tags */
.mobile-version .style-section .carousel-item .card-back .product-tags {
    margin: 2px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}

.mobile-version .style-section .carousel-item .card-back .product-tag {
    font-size: 8px;
    padding: 1px 3px;
}

/* Medienabfragen für noch kleinere Screens */
@media (max-width: 400px) {
    .mobile-feature-card {
        width: 180px;
        height: 110px;
        margin-left: -90px;
        margin-top: -55px;
    }
    
    .mobile-carousel-container {
        height: 300px;
    }
    
    .mobile-version .hover-content h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .mobile-version .hover-content p {
        font-size: 10px;
        line-height: 1.3;
        max-height: 50px;
    }
}

/* Abstand zwischen Überschriften und Texten im schwarzen Bereich (Streaming-Sektion) */
.mobile-version .collection-section .section-title {
    font-size: 32px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    color: #ffffff !important;
    padding-top: 15px !important; /* Zusätzlicher Abstand oben */
}

.mobile-version .collection-section .section-subtitle {
    font-size: 16px !important;
    color: #86868b !important;
    margin-bottom: 30px !important; /* Mehr Abstand nach unten */
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Mehr Abstand über den mobilen Feature-Karten */
.mobile-version .mobile-carousel-container {
    position: relative !important;
    width: 100% !important;
    height: 350px !important;
    margin: 40px auto 50px !important; /* Erhöhter Abstand oben und unten */
    perspective: 1000px !important;
    transform-style: preserve-3d !important;
}

/* Vergrößerte Abstände für die Text-Überlagerungen auf den Karten */
.mobile-version .hover-content {
    text-align: center !important;
    padding: 15px !important; /* Mehr Innenabstand */
}

.mobile-version .hover-content h3 {
    font-size: 18px !important;
    margin-bottom: 12px !important; /* Mehr Abstand nach der Überschrift */
    font-weight: 600 !important;
    color: white !important;
}

/* Auch für Desktop-Version verbessern */
.desktop-version #streaming-section {
    background-color: #000 !important;
    padding: 100px 0 !important; /* Mehr Abstand oben und unten */
}

.desktop-version .streaming-header {
    margin-bottom: 60px !important; /* Mehr Abstand nach dem Header */
}

.desktop-version .cat-heading {
    margin-bottom: 15px !important; /* Mehr Abstand nach der Hauptüberschrift */
}

.desktop-version .row-title {
    font-size: 24px !important;
    margin: 60px 0 30px !important; /* Deutlich mehr Abstand vor und nach dem Titel */
}

/* Abgerundete Ecken für die Feature-Karten verstärken */
.desktop-version .feature-card,
.mobile-version .mobile-feature-card {
    border-radius: 18px !important; /* Stärker abgerundete Ecken */
    overflow: hidden !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important; /* Stärkerer Schatten */
}

/* Schriftgröße in den Hover-Overlays anpassen */
.desktop-version .hover-content h3,
.mobile-version .hover-content h3 {
    letter-spacing: 0.5px !important; /* Bessere Lesbarkeit */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important; /* Text-Schatten für bessere Lesbarkeit */
}
    
    /* EOF */