.widget.banner-widget {
    background-color: #f9f9f9; /* Heller Hintergrund */
    border: 1px solid #ddd; /* Rahmen */
    border-radius: 10px; /* Abgerundete Ecken */
    padding: 15px; /* Innenabstand */
    margin-bottom: 20px; /* Abstand zum nächsten Element */
    text-align: center; /* Zentrierter Inhalt */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

.widget.banner-widget .banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.widget.banner-widget .banner-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.widget.banner-widget .banner-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd; /* Bildrahmen */
    border-radius: 5px; /* Leicht abgerundete Ecken */
    transition: transform 0.3s ease; /* Sanfter Hover-Effekt */
}

.widget.banner-widget .banner-image img:hover {
    transform: scale(1.05); /* Vergrößern beim Hover */
}

.widget.banner-widget .banner-text {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #555;
}

.widget.banner-widget .banner-price {
    font-size: 1em;
    color: #999;
    margin-bottom: 5px;
}

.widget.banner-widget .banner-special-price {
    font-size: 1.2em;
    color: #e63946; /* Auffällige Farbe */
    font-weight: bold;
}
