/* ==============================
   GRUNDLAYOUT
   ============================== */

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #333333;
}

/* ==============================
   HEADER
   ============================== */

.site-header {
    background: #2f2f2f;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 50px;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    margin: 0;
    font-size: 34px;
}

.logo span {
    color: #c0c0c0;
    font-size: 15px;
}

.site-header ul {
    display: flex;
    list-style: none;
    gap: 25px;

    margin: 0;
    padding: 0;
}

.site-header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.site-header a:hover {
    color: #d32f2f;
}
/* ==============================
   HERO
   ============================== */

.hero {
    background-image: url("../bilder/hero/hero.jpg");

    background-size: cover;
    background-position: center 60%;

    min-height: 720px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;

    color: white;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin: 0 0 20px 0;
}

.hero p {
    font-size: 24px;
    margin: 0 0 35px 0;
}
/* ==============================
   STARTSEITE – INFOBEREICH
   ============================== */

.start-info {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;

    text-align: left;
}

.start-info h2 {
    text-align: center;
    margin-bottom: 20px;
}

.start-info .button {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
}
/* ==============================
   BUTTON
   ============================== */

.button {
    display: inline-block;

    background: #c62828;
    color: white;

    padding: 15px 35px;

    border-radius: 6px;

    text-decoration: none;
    font-weight: bold;

    transition: 0.3s;
}

.button:hover {
    background: #8e0000;
}

/* ==============================
   FOOTER
   ============================== */

.site-footer {
    background: #2f2f2f;
    color: #c0c0c0;

    padding: 12px 50px;

    font-size: 13px;
}

.footer-inhalt {
    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    text-align: left;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    color: #d32f2f;
}
/* ==============================
   PRODUKT-VORSCHAU
   ============================== */

.produkt-vorschau {
    max-width: 1000px;
    margin: 35px auto;
    padding: 20px;

    display: flex;
    align-items: center;
    gap: 45px;
}

.produkt-bild {
    flex: 0 0 45%;
    text-align: center;
}

.produkt-bild img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.produkt-info {
    flex: 1;
    text-align: left;
    max-width: none;
    margin: 0;
}
/* Button im Produkt-Vorschau-Bereich mittig */

.produkt-info .button {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
}

.produkt-info h2 {
    font-size: 30px;
    margin: 0 0 15px 0;
}

.produkt-kurztext {
    font-size: 17px;
    line-height: 1.5;
}

.produkt-preis {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}
/* ==============================
   BUTTON PRODUKT-HINWEIS
   ============================== */

.produkt-info .button {
    display: block;
    width: fit-content;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* ==============================
   RG-001 PRODUKTDETAIL
   ============================== */

.produkt-detail {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.produkt-detail-bild {
    text-align: center;
}

.produkt-detail-bild img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.produkt-detail-info {
    text-align: left;
}

.produkt-nummer {
    color: #777777;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.produkt-detail-info h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
}

.produkt-detail-preis {
    font-size: 28px;
    font-weight: bold;
    margin: 25px 0;
}

.produkt-detail-info p {
    font-size: 17px;
    line-height: 1.6;
}

.produkt-detail-info h3 {
    font-size: 21px;
    margin-top: 35px;
    margin-bottom: 12px;
}

.produkt-detail-info ul {
    line-height: 1.8;
    padding-left: 22px;
}

.varianten-auswahl {
    margin-top: 35px;
}

.variante-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    background: #f5f5f5;
    border: 1px solid #dddddd;
    padding: 15px 18px;
    margin: 10px 0;

    cursor: pointer;
}

.variante-option:hover {
    border-color: #c62828;
}

.variante-option input {
    margin-top: 4px;
}
.variante-preis {
    display: inline-block;
    margin: 8px 0;
    font-size: 20px;
    font-weight: bold;
}
.empfohlen {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 8px;
    background: #c62828;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    vertical-align: middle;
}
/* =========================
   CHECKOUT
   ========================= */

.checkout-seite {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
}

.checkout-seite h2 {
    margin-bottom: 30px;
}

#bestellübersicht {
    margin-bottom: 40px;
}

.checkout-artikel {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.checkout-artikel h4 {
    margin-bottom: 10px;
}

.checkout-summe {
    margin-top: 25px;
    padding: 20px;
    border-top: 2px solid #333;
}

.kundendaten {
    margin-top: 40px;
}

.kundendaten h3 {
    margin-bottom: 20px;
}

#bestellformular {
    max-width: 600px;
}

#bestellformular label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

#bestellformular input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    font-size: 16px;
}
#bestellformular > input {
    width: 100%;
    box-sizing: border-box;
}

#bestellformular #email {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    font-size: 16px;
}

#bestellformular button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 25px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
}

.plz-ort {
    display: flex;
    gap: 15px;
}

.plz-ort > div:first-child {
    width: 120px;
}

.plz-ort > div:last-child {
    flex: 1;
}
/* =========================
   WARENKORB
   ========================= */

.warenkorb-seite {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    text-align: center;
}

.warenkorb-seite h2 {
    margin-bottom: 30px;
}

.warenkorb-artikel {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.warenkorb-artikel h3 {
    margin-bottom: 10px;
}

.warenkorb-menge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.warenkorb-menge button {
    padding: 5px 12px;
    font-size: 18px;
    cursor: pointer;
}

.warenkorb-menge span {
    min-width: 30px;
    font-weight: bold;
}

.warenkorb-summe {
    margin-top: 30px;
    padding: 20px;
    border-top: 2px solid #333;
}

.warenkorb-seite > button {
    margin: 20px 5px 0;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
}
/* =========================
   BESTELLBESTÄTIGUNG
   ========================= */

.bestellbestaetigung-seite {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    text-align: center;
}

.bestellbestaetigung-seite h2 {
    margin-bottom: 30px;
}

.bestellbestaetigung {
    text-align: center;
}

.bestellbestaetigung h3 {
    margin-bottom: 20px;
}

.bestellbestaetigung h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.bestellbestaetigung-artikel {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.bestellbestaetigung-artikel p {
    margin-top: 8px;
}

.bestellbestaetigung .checkout-summe {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    border-top: 2px solid #333;
}

/* ==============================
   PRODUKTBILDER / PRODUKTGALERIE
   ============================== */

.produkt-detail-bild {
    text-align: center;
}

.produkt-detail-bild > #hauptbild {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.produkt-bilder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.produkt-bilder img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: default;
    border: 1px solid #ddd;
    border-radius: 6px;
}


/* ==============================
   PRODUKTÜBERSICHT
   ============================== */

.produkte-seite {
    max-width: 1000px;
    margin: 35px auto;
    padding: 20px;
    box-sizing: border-box;
}

.produkte-seite > h2 {
    text-align: center;
    font-size: 32px;
    margin: 0 0 30px 0;
}

.produkt-uebersicht {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.produkt-karte {
    width: 100%;
    height: 260px;
    box-sizing: border-box;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 20px;

    gap: 30px;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #fff;
}

.produkt-karte > img {
    width: 280px;
    height: 220px;
    object-fit: contain;
    object-position: left center;
    flex: 0 0 280px;
}

.produkt-karte-inhalt {
    flex: 1;
    min-width: 0;
}

.produkt-karte-inhalt .produkt-nummer {
    margin: 0 0 5px 0;
    font-weight: bold;
}

.produkt-karte-inhalt h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 12px 0;
}

.produkt-karte-inhalt p {
    line-height: 1.5;
    margin: 10px 0;
}

.produkt-karte-inhalt strong {
    font-size: 20px;
}


/* ==============================
   PRODUKTKARTEN AUSRICHTUNG
   ============================== */

.produkt-uebersicht {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.produkt-karte {
    width: 100%;
    max-width: 100%;
    margin: 0;
}
/* ==============================
   PRODUKTKARTEN AUSRICHTUNG
   ============================== */

.produkt-uebersicht {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.produkt-karte {
    width: 100%;
    max-width: 100%;
    margin: 0;
}
/* ==============================
   PRODUKTE AUF DER STARTSEITE
   ============================== */

.produkt-vorschau {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.start-produkte {
    max-width: 1200px;
    margin: 10px auto;
    padding: 10px 20px;

    display: flex;
    gap: 25px;

    align-items: stretch;
}

.start-produkt {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;

    text-align: center;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #fff;

    padding: 20px;

    box-sizing: border-box;
}

.start-produkt > img {
    width: 100%;
    height: 190px;

    object-fit: contain;

    display: block;

    margin: 0 auto 15px;
}

.start-produkt-info {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.start-produkt-info h2 {
    font-size: 22px;
    line-height: 1.2;
    margin: 5px 0 15px;
    min-height: 53px;
}

.start-produkt-info p {
    font-size: 16px;
    line-height: 1.5;
    margin: 10px 0;
}

.start-produkt-info .produkt-preis {
    font-size: 21px;
    font-weight: bold;

    margin-top: auto;
    margin-bottom: 20px;
}

.start-produkt-info .button {
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
}
/* ==============================
   PRODUKTÜBERSICHT
   ============================== */

.produkte-seite {
    max-width: 1000px;
    margin: 35px auto;
    padding: 20px;
    box-sizing: border-box;
}

.produkte-seite > h2 {
    text-align: center;
    font-size: 32px;
    margin: 0 0 30px 0;
}

.produkt-uebersicht {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.produkt-karte {
    width: 100%;
    height: 260px;
    box-sizing: border-box;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 20px;

    gap: 30px;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #fff;
}

.produkt-karte > img {
    width: 280px;
    height: 220px;
    object-fit: contain;
    object-position: left center;
    flex: 0 0 280px;
}

.produkt-karte-inhalt {
    flex: 1;
    min-width: 0;
}

.produkt-karte-inhalt .produkt-nummer {
    margin: 0 0 5px 0;
    font-weight: bold;
}

.produkt-karte-inhalt h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 12px 0;
}

.produkt-karte-inhalt p {
    line-height: 1.5;
    margin: 10px 0;
}

.produkt-karte-inhalt strong {
    font-size: 20px;
}
/* ==============================
   PRODUKTKARTEN AUSRICHTUNG
   ============================== */

.produkt-uebersicht {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.produkt-karte {
    width: 100%;
    max-width: 100%;
    margin: 0;
}
/* ==============================
   PRODUKTE AUF DER STARTSEITE
   ============================== */

.produkt-vorschau {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.start-produkte {
    max-width: 1200px;
    margin: 10px auto;
    padding: 10px 20px;

    display: flex;
    gap: 25px;

    align-items: stretch;
}

.start-produkt {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;

    text-align: center;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #fff;

    padding: 20px;

    box-sizing: border-box;
}

.start-produkt > img {
    width: 100%;
    height: 190px;

    object-fit: contain;

    display: block;

    margin: 0 auto 15px;
}

.start-produkt-info {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.start-produkt-info h2 {
    font-size: 22px;
    line-height: 1.2;
    margin: 5px 0 15px;
    min-height: 53px;
}

.start-produkt-info p {
    font-size: 16px;
    line-height: 1.5;
    margin: 10px 0;
}

.start-produkt-info .produkt-preis {
    font-size: 21px;
    font-weight: bold;

    margin-top: auto;
    margin-bottom: 20px;
}

.start-produkt-info .button {
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
}
/* ==============================
   STARTSEITE PRODUKTABSTAND
   ============================== */

.produkt-vorschau {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.start-produkt {
    flex: 1;

    display: flex;
    flex-direction: column;

    text-align: center;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #fff;

    padding: 20px;

    box-sizing: border-box;
}

.start-produkt > img {
    width: 100%;
    height: 190px;

    object-fit: contain;

    display: block;

    margin: 0 auto 15px;
}

.start-produkt-info {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.start-produkt-info h2 {
    font-size: 22px;
    margin: 5px 0 15px;
}

.start-produkt-info p {
    font-size: 16px;
    line-height: 1.5;
}

.start-produkt-info .produkt-preis {
    font-size: 21px;
    font-weight: bold;

    margin-top: auto;
    margin-bottom: 20px;
}

.start-produkt-info .button {
    margin-top: 0;
}
/* ==============================
   AUDI TYP 89
   ============================== */

.audi-typ89-seite {
    max-width: 1000px;
    margin: 15px auto;
    padding: 10px 20px;
}

.audi-typ89-seite > h2 {
    text-align: center;
    font-size: 32px;
    margin: 0 0 15px 0;
}

.audi-typ89-seite > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 35px;
}

.audi-typ89-seite > h3 {
    font-size: 25px;
    margin: 30px 0 10px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

.audi-modell {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.audi-modell p {
    margin: 8px 0;
    font-size: 17px;
}
.audi-hinweis {
    margin-top: 40px;
    padding: 15px 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}
/* ==============================
   ÜBER UNS
   ============================== */

.ueber-uns-seite {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    text-align: left;
}

.ueber-uns-seite h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.ueber-uns-seite h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.ueber-uns-seite p {
    font-size: 17px;
    line-height: 1.6;
    margin: 12px 0;
}
/* ==============================
   KONTAKT
   ============================== */

.kontakt-seite {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    text-align: left;
}

.kontakt-seite h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.kontakt-seite h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.kontakt-seite p {
    font-size: 17px;
    line-height: 1.6;
    margin: 12px 0;
}
/* ==============================
   IMPRESSUM
   ============================== */

.impressum-seite {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    text-align: left;
}

.impressum-seite h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.impressum-seite h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.impressum-seite p {
    font-size: 17px;
    line-height: 1.6;
    margin: 12px 0;
}
.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}
/* ==============================
   DATENSCHUTZ
   ============================== */

.datenschutz-seite {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    text-align: left;
}

.datenschutz-seite h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.datenschutz-seite h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.datenschutz-seite p {
    font-size: 17px;
    line-height: 1.6;
    margin: 12px 0;
}

.datenschutz-stand {
    margin-top: 40px !important;
    font-size: 14px !important;
    color: #666;
}
/* ==============================
   WIDERRUF
   ============================== */

.widerruf-seite {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    text-align: left;
}

.widerruf-seite h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.widerruf-seite h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.widerruf-seite p {
    font-size: 17px;
    line-height: 1.6;
    margin: 12px 0;
}

.widerrufsformular {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ccc;
}

.widerruf-hinweis {
    margin-top: 30px;
}
/* ==============================
   AGB
   ============================== */

.agb-seite {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    text-align: left;
}

.agb-seite h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.agb-seite h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.agb-seite p {
    font-size: 17px;
    line-height: 1.6;
    margin: 12px 0;
}
/* ========================================
   Ausrichtung Textblock startseite mittig
   ======================================== */
.start-info {
    max-width: 800px;
    margin: 35px auto;
    padding: 0 20px;
    text-align: left;
}

.start-info h2 {
    text-align: center;
    margin-bottom: 20px;
}

.start-info p {
    font-size: 17px;
    line-height: 1.6;
    margin: 12px 0;
}
/* ==============================
   PRODUKT NAVIGATION
   ============================== */

.produkt-navigation {
    max-width: 1100px;
    margin: 25px auto 40px;
    padding: 0 80px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* ==================================================
   MOBILE ANSICHT
   ================================================== */

@media (max-width: 700px) {

    /* ==============================
       GRUNDLAYOUT
       ============================== */

    body {
        width: 100%;
        overflow-x: hidden;
    }


    /* ==============================
       HEADER
       ============================== */

    .site-header {
        position: static;

        display: block;

        padding: 15px 15px;
        text-align: center;
    }

    .logo h1 {
        font-size: 28px;
    }

    .logo span {
        font-size: 14px;
    }


    /* ==============================
       NAVIGATION
       ============================== */

    .site-header ul {
        display: flex;

        flex-wrap: wrap;
        justify-content: center;

        gap: 8px 12px;

        margin-top: 15px;
    }

    .site-header li {
        margin: 0;
    }

    .site-header a {
        font-size: 14px;
    }


    /* ==============================
       HERO
       ============================== */

    .hero {
        min-height: 450px;

        background-position: center center;
    }

    .hero-content {
        padding: 20px;
    }

    .hero h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 18px;
        line-height: 1.4;
    }


    /* ==============================
       STARTSEITE
       ============================== */

    .start-info {
        width: auto;

        margin: 25px auto;
        padding: 0 20px;
    }

    .start-info h2 {
        font-size: 26px;
    }


    /* ==============================
       PRODUKTE STARTSEITE
       ============================== */

    .start-produkte {
        display: flex;
        flex-direction: column;

        gap: 20px;

        padding: 10px 15px;
    }

    .start-produkt {
        width: 100%;
        padding: 15px;
    }

    .start-produkt > img {
        height: auto;
        max-height: 220px;
    }

    .start-produkt-info h2 {
        font-size: 21px;
        min-height: auto;
    }


    /* ==============================
       PRODUKTÜBERSICHT
       ============================== */

    .produkte-seite {
        width: 100%;
        margin: 20px auto;
        padding: 10px 15px;
    }

    .produkte-seite > h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .produkt-uebersicht {
        width: 100%;
    }

    .produkt-karte {
        height: auto;

        display: flex;
        flex-direction: column;

        gap: 15px;

        padding: 15px;
    }

    .produkt-karte > img {
        width: 100%;
        max-width: 280px;
        height: auto;

        flex: none;

        margin: 0 auto;
    }

    .produkt-karte-inhalt {
        width: 100%;
        text-align: center;
    }

    .produkt-karte-inhalt h3 {
        font-size: 21px;
    }


    /* ==============================
       PRODUKTDETAIL
       ============================== */

    .produkt-detail {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 25px;

        margin: 20px auto;
        padding: 15px;

        box-sizing: border-box;
    }

    .produkt-detail-bild {
        width: 100%;
    }

    .produkt-detail-bild > #hauptbild {
        width: 100%;
        max-width: 100%;

        margin-bottom: 15px;
    }

    .produkt-bilder {
        width: 100%;
    }

    .produkt-bilder img {
        width: 100%;
        max-width: 100%;
    }


    /* ==============================
       PRODUKTINFORMATION
       ============================== */

    .produkt-detail-info {
        width: 100%;
        box-sizing: border-box;
    }

    .produkt-detail-info h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .produkt-detail-preis {
        font-size: 25px;
    }

    .produkt-detail-info p {
        font-size: 16px;
        line-height: 1.6;
    }

    .produkt-detail-info h3 {
        font-size: 21px;
        margin-top: 28px;
    }


    /* ==============================
       PRODUKT NAVIGATION
       ============================== */

    .produkt-navigation {
        width: 100%;

        box-sizing: border-box;

        margin: 20px auto 30px;
        padding: 0 15px;

        display: flex;

        justify-content: space-between;
        gap: 15px;
    }

    .produkt-navigation .button {
        flex: 1;

        text-align: center;

        padding: 12px 10px;

        box-sizing: border-box;
    }


    /* ==============================
       BUTTONS
       ============================== */

    .button {
        padding: 13px 20px;
        font-size: 15px;
    }


    /* ==============================
       AUDI TYP 89
       ============================== */

    .audi-typ89-seite {
        width: auto;

        margin: 20px auto;
        padding: 10px 20px;
    }

    .audi-typ89-seite > h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .audi-typ89-seite > h3 {
        font-size: 22px;
    }

    .audi-modell p {
        font-size: 16px;
        line-height: 1.5;
    }


    /* ==============================
       ÜBER UNS
       ============================== */

    .ueber-uns-seite,
    .kontakt-seite,
    .impressum-seite,
    .datenschutz-seite,
    .widerruf-seite,
    .agb-seite {
        width: auto;

        margin: 20px auto;
        padding: 10px 20px;
    }

    .ueber-uns-seite h2,
    .kontakt-seite h2,
    .impressum-seite h2,
    .datenschutz-seite h2,
    .widerruf-seite h2,
    .agb-seite h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .ueber-uns-seite h3,
    .kontakt-seite h3,
    .impressum-seite h3,
    .datenschutz-seite h3,
    .widerruf-seite h3,
    .agb-seite h3 {
        font-size: 21px;
    }


    /* ==============================
       WARENKORB
       ============================== */

    .warenkorb-seite,
    .checkout-seite,
    .bestellbestaetigung-seite {
        width: auto;

        margin: 20px auto;
        padding: 20px 15px;
    }


    /* ==============================
       CHECKOUT FORMULAR
       ============================== */

    .plz-ort {
        flex-direction: column;
        gap: 0;
    }

    .plz-ort > div:first-child,
    .plz-ort > div:last-child {
        width: 100%;
    }


    /* ==============================
       FOOTER
       ============================== */

    .site-footer {
        padding: 20px 15px;

        font-size: 12px;
    }

    .footer-inhalt {
        display: flex;
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

    .footer-text {
        text-align: center;
        line-height: 1.5;
    }

    .footer-links {
        display: flex;

        flex-wrap: wrap;
        justify-content: center;

        gap: 10px 15px;
    }

}
/* ==============================
   PLATZHALTER-SEITE
   ============================== */

.platzhalter-seite {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px 20px;
    text-align: center;
}

.platzhalter-seite h2 {
    font-size: 32px;
    margin: 0 0 30px 0;
}

.platzhalter-seite p {
    font-size: 17px;
    line-height: 1.6;
    margin: 15px 0;
}

.platzhalter-seite .button {
    display: block;
    width: fit-content;
    margin: 35px auto 0;
}