@charset "utf-8";
/* CSS Document */
       

        .ebay-template-container { /* Dieser Container wird quasi zu unserem "Body" */
        font-family: Arial, Helvetica, sans-serif;
        /* margin: 0; padding: 0; -- wird durch eBay's Body gesteuert */
        /* background-color: #f4f4f4; -- dies wäre der Hintergrund außerhalb unseres Templates, eBay bestimmt das */
        color: #333;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto; /* Zentriert unseren Container auf der eBay-Seite */
        background-color: #ffffff; /* Hintergrund unseres Templates */
        border: 1px solid #ddd;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

        img {
            max-width: 100%;
            height: auto;
            display: block; /* Verhindert untere Abstände bei Bildern */
        }

        h1, h2, h3 {
            color: #333;
            margin-top: 0;
        }
        h1 { font-size: 24px; margin-bottom: 5px;}
        h2 { font-size: 20px; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px;}
        h3 { font-size: 18px; margin-bottom: 8px; color: #555;}

        ul {
            list-style-type: disc;
            padding-left: 20px;
        }
        ul.features-list li { margin-bottom: 5px;
			}


        /* Header */
        .ebay-header {
            background-color: #333; /* Dunkelblau/Grau */
            color: #ffffff;
            padding: 20px;
            /* display: flex; /* Wird durch die innere Struktur geregelt */
            /* align-items: center; */
            /* flex-wrap: wrap; */
        }
        .ebay-header .logo-container {
            margin-right: 20px;
            flex-shrink: 0;
        }
        .ebay-header .logo-container img {
            max-height: 60px;
        }
		.ebay-header .shop-title {padding-left:3em;}
        .ebay-header .shop-title h1 {
            margin-bottom: 0;
            color: #ffffff;
            font-size: 1.8em;
			
        }
        .ebay-header .shop-title p {
            margin-top: 0;
            font-size: 0.9em;
            color: #bdc3c7;
			text-align:right;
        }
		
		/* NEUES CSS für die Feature-Icons und Texte */
        .header-features {
            display: flex;
            justify-content: space-around; /* Gleichmäßige Verteilung der Items */
            align-items: flex-start; /* Falls Texte unterschiedlich lang sind */
            flex-wrap: wrap; /* Items brechen bei Bedarf um */
            padding-top: 15px;
            border-top: 1px solid #4a6075; /* Dezente Trennlinie */
        }

        .feature-item {
            display: flex;
            flex-direction: column; /* Icon über dem Text */
            align-items: center; /* Zentriert Icon und Text horizontal */
            text-align: center;
            color: #ecf0f1; /* Helle Textfarbe */
            margin: 5px 10px; /* Kleiner Abstand zwischen den Items und zur Seite */
            flex-basis: 120px; /* Startbreite, kann wachsen oder schrumpfen */
            flex-grow: 1; /* Erlaubt Wachstum, wenn Platz ist */
        }

        .feature-icon {
            font-size: 2em; /* Größe der Unicode-Icons, anpassen nach Bedarf */
            margin-bottom: 8px; /* Abstand zwischen Icon und Text */
            line-height: 1; /* Verhindert zu großen Zeilenabstand für das Icon */
        }

        .feature-text {
            font-size: 0.85em; /* Kleinere Schrift für den Text */
            line-height: 1.3;
        }
		
		
		/* NEUES CSS für die obere Reihe (Logo und Titel) */
        .ebay-header .header-top-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap; /* Für Umbruch bei schmalen Bildschirmen */
            margin-bottom: 20px; /* Abstand zu den Features */
        }
		
        .ebay-header .logo-container img {
            max-height: 60px; /* Maximale Logo Höhe */
        }
        .ebay-header .shop-title h1 {
            margin-bottom: 0;
            color: #ffffff;
            font-size: 1.8em;
        }
        .ebay-header .shop-title p {
            margin-top: 0;
            font-size: 0.9em;
            color: #bdc3c7; /* Helleres Grau */
        }


        /* Main Content */
        .ebay-main-content section {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        .ebay-main-content section:last-child {
            border-bottom: none;
        }

        .row {
            display: flex;
            flex-wrap: wrap; /* Erlaubt Umbruch in neue Zeile bei Bedarf */
            margin-left: -10px; /* Kompensiert Padding der Spalten */
            margin-right: -10px;
        }
		
		.col-full {
    flex: 0 0 100%;
    max-width: 100%;
}

        .col {
            padding: 0 10px; /* Abstand zwischen Spalten */
            box-sizing: border-box; /* Padding wird in Breite eingerechnet */
            margin-bottom: 15px; /* Abstand nach unten, wenn Spalten umbrechen */
        }

        .col-image {
            flex: 0 0 45%; /* Nimmt 45% der Breite, schrumpft nicht, wächst nicht */
            max-width: 45%;
        }
        .col-details {
            flex: 0 0 55%; /* Nimmt 55% der Breite */
            max-width: 55%;
        }
        .col-full {
            flex: 0 0 100%;
            max-width: 100%;
        }
        .col-half {
            flex: 0 0 50%;
            max-width: 50%;
        }
        
        /* Spezifische Element-Styles */
        .main-product-image {
            border: 1px solid #ddd;
            margin-bottom: 10px;
        }
        .thumbnail-gallery {
            display: flex;
            gap: 10px; /* Abstand zwischen Thumbnails */
        }
        .thumbnail-gallery img {
            border: 1px solid #ccc;
            cursor: pointer; /* Zeigt an, dass man klicken könnte (wenn man JS hätte für Galerie) */
            width: 80px; /* Feste Breite für Thumbnails */
            height: 60px; /* Feste Höhe für Thumbnails */
            object-fit: cover; /* Stellt sicher, dass Bild den Raum füllt ohne Verzerrung */
        }

        .price {
            font-size: 1.5em;
            color: #e74c3c; /* Rot für den Preis */
            margin-bottom: 15px;
        }
        .price strong {
            font-weight: bold;
        }

        .ebay-button {
            display: inline-block;
            background-color: #3498db; /* Blau */
            color: #ffffff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
        }
        .ebay-button:hover {
            background-color: #2980b9; /* Dunkleres Blau beim Hover */
        }
        .availability {
            color: #2ecc71; /* Grün */
            font-weight: bold;
        }

        table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}
table td, table th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
table th { /* Zusätzliche Hervorhebung für Tabellenköpfe */
    background-color: #f2f2f2;
    font-weight: bold;
}
table tr:nth-child(even){background-color: #f9f9f9;}
caption {text-align:left}

table td:first-child {
    
    width: 50%; /* Angepasste Breite für die erste Spalte, kann variieren */
}
/* Gilt für die Kompatibilitätstabelle (angenommen sie ist die zweite Tabelle in der Sektion) */
.technical-data .row:nth-of-type(2) table td,
.technical-data .row:nth-of-type(2) table th {
    width: 50%; /* Beide Spalten nehmen 50% der Tabellenbreite ein */
    box-sizing: border-box; /* Stellt sicher, dass Padding in der Breite enthalten ist */
}


        /* Footer */
        .ebay-footer {
            background-color: #444; /* Dunkleres Blau/Grau */
            color: #ecf0f1; /* Helles Grau/Weiß */
            padding: 20px;
            text-align: center;
            font-size: 0.9em;
        }
        .ebay-footer nav a {
            color: #ecf0f1;
            text-decoration: none;
            margin: 0 5px;
        }
        .ebay-footer nav a:hover {
            text-decoration: underline;
        }

        /* Anpassungen für den Header in der @media Query (max-width: 768px) */
        @media (max-width: 768px) {
            .ebay-header .header-top-row { /* Dies war vorher .ebay-header */
                flex-direction: column;
                text-align: center;
            }
            .ebay-header .logo-container { /* Dies war vorher .ebay-header .logo-container */
                margin-right: 0;
                margin-bottom: 10px;
            }
            /* Feature-Items könnten hier spezifischer angepasst werden,
               z.B. zwei pro Zeile, wenn vier nebeneinander zu eng werden.
               Mit flex-wrap und flex-basis sollte es aber schon gut umbrechen. */
            .header-features {
                justify-content: center; /* Zentriert die Items, wenn sie umbrechen */
            }
            .feature-item {
                flex-basis: 40%; /* Z.B. für zwei Items pro Zeile auf Tablets */
                margin-bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .ebay-header .shop-title h1 {
                font-size: 1.5em;
            }
            .feature-item {
                flex-basis: 80%; /* Ein Item pro Zeile für sehr kleine Screens */
                 margin-bottom: 15px;
            }
             .feature-icon {
                font-size: 1.8em;
            }
            .feature-text {
                font-size: 0.8em;
            }
        }


/* === NEU: CSS für das Text-Overlay auf dem Bild === */

/* 1. Der Container des Bildes wird zum Bezugspunkt für die Positionierung */
.col-image {
    position: relative; /* Sehr wichtig! */
}

/* 2. Das Styling und die Positionierung des Text-Blocks */
.image-overlay-text {
    position: absolute; /* Legt den Text über andere Elemente */
    top: 0;          /* Positioniert den Block am unteren Rand */
    left: 0;
    right: 0;
    /*background-color: rgba(0, 0, 0, 0.7);*/ /* Schwarzer Hintergrund mit 70% Transparenz */
    color: #424242;     /* Weiße Schriftfarbe für guten Kontrast */
    padding: 15px;      /* Innenabstand, damit der Text nicht am Rand klebt */
    box-sizing: border-box; /* Stellt sicher, dass Padding die Breite nicht sprengt */
}

/* 3. Styling für die Liste im Overlay */
.image-overlay-text ul {
    margin: 0;
    padding: 0;
    list-style-type: none; /* Entfernt die Standard-Aufzählungspunkte */
}

.image-overlay-text li {
    padding-bottom: 5px; /* Kleiner Abstand zwischen den Listenpunkten */
    /*font-size: 0.9em;*/    /* Etwas kleinere Schrift */
}
/* ========================================= */
/*      Responsive Design / Mobile View      */
/* ========================================= */

@media (max-width: 768px) {

    /* --- Header anpassen --- */
    .ebay-header .header-top-row {
        flex-direction: column; /* Logo und Titel untereinander anordnen */
        text-align: center;
    }

    .ebay-header .logo-container {
        margin-bottom: 15px; /* Abstand zwischen Logo und Titel */
    }
    
    .ebay-header .header-features {
        flex-wrap: wrap; /* Icons umbrechen lassen, wenn der Platz nicht reicht */
        justify-content: center;
        gap: 10px;
    }

    .ebay-header .feature-item {
        flex-basis: 45%; /* Zwei Icons pro Zeile */
        justify-content: center;
    }

    /* --- Hauptinhalt flexibel machen --- */
    .ebay-main-content .row {
        flex-direction: column; /* Alle Spalten untereinander anordnen */
    }

    .ebay-main-content .col,
    .ebay-main-content .col-half,
    .ebay-main-content .col-image,
    .ebay-main-content .col-details {
        width: 100%; /* Jede Spalte nimmt die volle Breite ein */
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    /* --- Text auf dem Bild anpassen --- */
    .image-overlay-text ul {
        font-size: 0.9em; /* Schrift etwas verkleinern */
        padding: 10px;
        line-height: 1.4;
    }

/* --- Tabellen lesbar machen (KORRIGIERTE VERSION) --- */
.technical-data table {
    border-collapse: collapse;
    width: 100%;
}

.technical-data caption {
    /* Stellt sicher, dass die Überschrift sichtbar bleibt */
    display: table-caption;
    text-align: left;
    padding-bottom: 10px;
}

.technical-data thead {
    /* Den Kopf der zweiten Tabelle ausblenden */
    display: none;
}

.technical-data tr {
    display: flex;
    flex-wrap: wrap; /* Zeilenumbruch für den Inhalt */
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden; /* Für abgerundete Ecken */
}

.technical-data td {
    display: block; /* Zellen untereinander anordnen */
    width: 100%;
    box-sizing: border-box; /* Wichtig für Padding und Border */
    padding: 10px;
    border: none; /* Alte Ränder entfernen */
    text-align: left; /* Text linksbündig */
}

/* Die erste Zelle (Bezeichnung, z.B. "Marke:") */
.technical-data td:first-child {
    font-weight: bold;
    background-color: #f7f7f7;
    color: #333;
    border-bottom: 1px solid #ddd; /* Trennlinie zum Wert */
}

/* Die zweite Zelle (Wert, z.B. "Keskin") */
.technical-data td:last-child {
    background-color: #fff;
}

    /* === ENDE NEU === */


