
h1, h2 {
    text-align: center;
    color: #222;
}

/* Container für die Produktdetailseite */
.product-detail-container {
    font-family: 'Mulish', sans-serif;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}


/* Box um das Produkt */
.product-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    width: 100%;
    text-align: center;
}


/* Produktbild */
.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* Auflistung der Produktdetails */
.product-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 1.5rem 0;
}

.product-box li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.product-box strong {
    display: inline-block;
    width: 140px;
    color: #555;
}

/* Link zum externen Produkt */
.product-link {
    display: inline-block;
    background-color: #0a84ff;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    margin-top: 1rem;
}

.product-link:hover {
    background-color: #006ee0;
}

/* Zurück-Link */
.back-button {
    display: block;
    margin: 2rem auto 0;
    text-align: center;
    color: #0a84ff;
    font-weight: bold;
    text-decoration: none;
}

.back-button:hover {
    text-decoration: underline;
}

/* Responsiv */
@media (max-width: 640px) {
    .product-box {
        padding: 1.2rem;
    }

    .product-box strong {
        width: 100px;
    }
}
