.share-container {
    text-align: center;
    margin: 20px 0;
    font-family: sans-serif;
}

.share-title {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 10px;
    font-weight: bold;
}

.share-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

 body { font-family: system-ui, -apple-system, sans-serif; line-height: 1.6; color: #333; max-width: 1000px; margin: 0 auto; padding: 20px; }
        header { text-align: center }
        /* Logo flexibel & zentriert halten */
        header h1 img {
            max-width: 90%;    /* Schrumpft auf Mobildisplays sauber mit */
            width: 398px;      /* Maximale Wunschbreite für die Desktop-Ansicht */
            height: auto;      /* Verhindert Hochkant-Verzerrungen */
            display: block;
            margin: 0 auto;    /* Zentriert das Logo waagerecht */
        }

        /* Optional: Standard-Abstände vom h1 aufräumen */
        header h1 {
            margin: 10px 0;
        }
        .tagline { font-size: 1.2rem; color: #666; max-width: 600px; margin: 0 auto 30px; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 40px 0; }
        .card { border: 1px solid #eee; border-radius: 12px; overflow: hidden; text-align: center; padding: 15px; box-shadow: 0 4px 6px rgba(0,0,0,0.05);text-transform: capitalize; }
        .card img { max-width: 100%; height: auto; border-radius: 8px; }
        .cta-container { text-align: center; margin: 50px 0; }
        .btn { background-color: #00a88f; color: white; padding: 8px 32px; text-decoration: none; font-size: 1.2rem; font-weight: bold; border-radius: 8px; display: inline-block; transition: background 0.3s; }
        .btn:hover { background-color: #007462; }
        footer { font-size: 0.9rem; text-align: center; border-top: 1px solid #eee; margin-top: 20px; padding-top: 10px; color: #777; }
        footer a { color: #555; }

/* Äußere Karte */
.product-card {
    max-width: 360px;
    margin: 20px auto;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Titel-Gruppe */
.product-header {
    margin-bottom: 16px;
}

.product-title {
    margin: 0;
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.product-subtitle {
    font-size: 0.85rem;
    color: #777777;
}

/* Preis-Block: Hier wird die Lücke minimiert */
.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px; /* Nur 2px Lücke zwischen Preis & MwSt. */
    margin-bottom: 18px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111111;
    line-height: 1; /* Verhindert ungewünschte Abstände nach unten */
}

.tax-info {
    font-size: 0.72rem;
    color: #666666;
}

.tax-info a {
    color: #666666;
    text-decoration: underline;
}

/* Haupt-Button */
.btn-main {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background-color: #00a887;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
    box-sizing: border-box;
}

.btn-main:hover {
    background-color: #008f73;
}

/* Trennlinie */
.card-divider {
    border: 0;
    border-top: 1px solid #f0f0f0;
    margin: 20px 0 16px 0;
}

/* Share Bereich */
.share-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.share-title {
    font-size: 0.8rem;
    color: #888888;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 6px;
}

/* 1. Basis-Klasse für ALLE Buttons (enthält Form & Anhebe-Effekt) */
.btn-share {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #555555;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease-in-out; /* Macht Animation geschmeidig */
}

/* Erzwingt die weiße Farbe für das SVG beim Hovern */
.btn-share svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* Hover-Standard: Hebt den Button an & färbt das Icon weiß */
.btn-share:hover {
    transform: translateY(-2px); /* Button geht nach oben */
    color: #ffffff; /* Icon wird weiß */
    background-color: #00a887;
    border-color: #00a887;
}

.btn-facebook:hover {
    background-color: #0866FF;
    border-color: #0866FF;
}

.btn-pinterest:hover {
    background-color: #BD081C;
    border-color: #BD081C;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
}

/* 2. Farben für die einzelnen Netzwerke beim Hovern */
.btn-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.btn-gmail:hover {
    background-color: #EA4335;
    border-color: #EA4335;
}

.btn-default:hover {
    background-color: #00a887;
    border-color: #00a887;
}

.btn-tiktok:hover {
   background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.shipping-table-container {
    max-width: 500px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.shipping-table-container h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #333333;
}

.shipping-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.shipping-table th, 
.shipping-table td {
    padding: 10px 14px;
}

.shipping-table th {
    font-weight: bold;
    color: #111111;
    border-bottom: 2px solid #e0e0e0;
}

/* Zebra-Muster: Abwechselnd grau und weiß */
.shipping-table tbody tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.shipping-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

/* Dezenter Hover-Effekt für die Zeilen */
.shipping-table tbody tr:hover {
    background-color: #ededed;
}
.img-zoom-wrapper {
    overflow: hidden; /* Schneidet das gezoomte Bild an den Rändern ab */
    border-radius: 8px 8px 0 0; /* Passt die Rundung oben an deine Card an */
}

.img-zoom-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.35s ease-in-out;
}

.img-zoom-wrapper:hover img {
    transform: scale(1.4);
    transform-origin: center 55%; /* Fokussiert genau die Brusthöhe des Motivs */
    cursor: zoom-in;
}
/* Styling für die Teaser-Box im Grid */
.teaser-box {
    display: flex;
    align-items: center;
    justify-content: center;

    /* Exakte Maße wie deine Produktbilder */
    width: 220px;
    height: 220px;
    max-width: 100%; /* Für mobile/kleine Bildschirme, damit nichts übersteht */
    box-sizing: border-box;

    /* Optik & Ausrichtung */
    background-color: #e8e8e8; /* Grauton wie Fotohintergrund */
    border-radius: 4px;       /* Gleiche Eckenabrundung wie bei deinen Bildern */
    margin: 0 auto;            /* Zentriert die Box im Grid-Feld */

    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.teaser-box:hover {
    background-color: #dfdfdf;
    transform: translateY(-2px);
}

.teaser-icon {
    font-size: 2.5rem;
    color: #1d3d54; /* Dein Dunkelblau */
}

.teaser-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1d3d54; /* Dein Dunkelblau */
}
