body {
            margin: 0;
            padding: 0;
            overflow: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 180vh;
            background-image: linear-gradient(100deg, rgb(8, 8, 8) 49.9%, rgba(8, 8, 8, 0.664) 69.9%, rgba(8, 8, 8, 0.253)  80%);
            overflow-x: auto; /* Erlaubt horizontales Scrollen */
}

/* Scrollleiste für Webkit-Browser (Chrome, Safari) unsichtbar machen */
::-webkit-scrollbar {
    display: none; /* Blendet die Scrollleiste aus */
}

/* Scrollleiste für Firefox unsichtbar machen */
body {
    scrollbar-width: none; /* Für Firefox */
}
        





        :root {
            --primary-color: #111;
            --accent-color: #c5a059;
            --bg-light: #f9f9f9;
            --border-color: #ddd;
            --text-muted: #666;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            margin: 0;
            padding: 20px;
            color: var(--primary-color);
            background-color: #fff;
        }

        .container {
            position: absolute;
            top: 5%;
            max-width: 1200px;
            margin: 40px auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        @media (min-width: 768px) {
            .container {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* --- Galerie-Bereich --- */
        .gallery-section {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .main-preview {
            position: relative;
            width: 100%;
            height: 140%;
            padding-top: 75%; /* 4:3 Verhältnis */
            border: 1px solid var(--border-color);
            overflow: hidden;
            background: var(--bg-light);
        }

        .main-preview img, .main-preview video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.2s ease;
        }

        /* Zoom-Effekt */
        .main-preview.zoom-active img {
            cursor: zoom-out;
            transform: scale(2.5);
        }

        .main-preview img:not(.zoom-active) {
            cursor: zoom-in;
        }

        .thumbnail-list {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }

        .thumb {
            width: 100%;
            aspect-ratio: 1;
            border: 1px solid var(--border-color);
            cursor: pointer;
            object-fit: cover;
            background: var(--bg-light);
            box-sizing: border-box;
        }

        .thumb.active {
           
            border-color: var(--accent-color);
            outline: 2px solid var(--accent-color);
        }

        .video-thumb {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #333;
            color: #fff;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
        }

        /* --- Info-Bereich --- */
        .info-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .artist {
            font-size: 1.1rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .title {
            font-size: 2.5rem;
            margin: 5px 0 15px 0;
            font-weight: 300;
            color: #c48d00;
        }

        .price-tag {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
        }

        .dhl-tag {
            font-size: 0.85rem;
            color: white;
            margin-top: -15px;
        }

        .status-container {
            display: flex;
            flex-direction: column;
            gap: 5px;
            font-size: 0.95rem;
            color: white;
        }

        .availability {
            color: #2e7d32;
            font-weight: bold;
        }

        .buy-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            width: 100%;
            transition: background 0.2s;
            text-align: center;
        }

        .buy-button:hover {
            background-color: var(--accent-color);
        }

        .description {
            position: absolute;
            top: 110%;
            left: 2%;
            width: 95%;
            line-height: 1.6;
            color: #ffffff;
            border-top: 5px solid var(--border-color);
            padding-top: 20px;
            text-align: justify;
        }

        .details-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
            color: white;
        }

        .details-table td {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
        }

        .details-table td:first-child {
            font-weight: bold;
            color: white;
            width: 40%;
        }