/* Kategorie-Listing Klebebuchstaben */
.product-description-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: auto;
    line-height: 1.6;
}
.product-description-container h2 {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.product-description-container p {
    margin-bottom: 15px;
}
.highlighted-section {
    background-color: #eee;
    border: 1px solid #759f26;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}
.highlighted-section h2 {
    margin: 0;
    font-weight: bold;
    color: #759f26;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}
.product-image {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}
.product-card h3 {
    font-size: 1.2em;
    color: #333;
    margin: 10px 0;
}
.product-card p {
    font-size: 0.9em;
    color: #333;
    line-height: 1.4;
}
.cta-button {
    display: inline-block;
    background-color: #759f26;
    color: #fff;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    margin-top: 10px;
}
.cta-button:hover {
    background-color: #0056b3;
}
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
