.bannerboost-carousel {
    margin: 2em 0;
    padding: 1em;
    background-color: #f6f6f6; /* Hellgrauer Hintergrund */
    overflow: hidden;
}

.bannerboost-product {
    text-align: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    background-color: #fff; /* Weiße Produktkarten */
}

.bannerboost-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bannerboost-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.bannerboost-product-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 3px;
}

.bannerboost-product-title {
    font-size: 1em;
    margin: 0.5em 0;
    line-height: 1.3;
    color: #333;
}

/* Preis-Anpassungen */
.bannerboost-product-price {
    margin: 0.5em 0;
    font-weight: bold;
    color: #2e7d32; /* Preis in Grün */
}

.bannerboost-regular-price {
    text-decoration: line-through;
    color: #ff7e9d; /* Streichpreis in Rot */
    margin-right: 0.5em;
}

.bannerboost-sale-price {
    color: #2e7d32; /* Angebotspreis auch in Grün */
}

/* Rabatt-Label */
.bannerboost-discount-label {
    display: inline-block;
    background-color: #ff7e9d; /* Rot für Rabatte */
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 0.8em;
    margin-left: 5px;
}

.bannerboost-carousel .swiper {
    padding: 1em 2em;
    padding-bottom: 35px;
}

/* Swiper Styling */
.bannerboost-carousel .swiper-button-prev,
.bannerboost-carousel .swiper-button-next {
    color: #ff7e9d;
    width: calc(var(--swiper-navigation-size)/ 44 * 5);
}

.bannerboost-carousel .swiper-pagination-bullet {
    background: #333;
}

.bannerboost-carousel .swiper-pagination-bullet-active {
    background: #ff7e9d; /* Aktive Paginierung in Grün */
}

.bannerboost-carousel .swiper-pagination {
    position: relative;
    bottom: -10px;
    margin-top: 15px;
}

/* Preishinweis */
.bannerboost-price-notice {
    text-align: center;
    color: #666;
    font-size: 0.8em;
    margin-top: 15px;
}

.bannerboost-price-notice a {
    color: #666;
    text-decoration: underline;
}

.bannerboost-price-notice a:hover {
    color: #333;
}

.bannerboost-title {
    text-align: center;
    color: #555;
    font-size: 1.5em;
    margin-top: 10px;
}

/* Responsive Anpassungen */
@media (max-width: 640px) {
    .bannerboost-carousel {
        margin: 1em 0;
        padding: 0.5em;
    }
    
    .bannerboost-product {
        padding: 10px;
    }
    
    .bannerboost-product-title {
        font-size: 1em;
    }
    
    .bannerboost-product-price {
        font-size: 1.1em;
    }
}

/* Admin-Bereich Styling */
.wp-admin .bannerboost-settings {
    max-width: 800px;
    margin: 2em 0;
}

.wp-admin .bannerboost-settings input[type="text"],
.wp-admin .bannerboost-settings input[type="password"],
.wp-admin .bannerboost-settings textarea {
    width: 100%;
    max-width: 400px;
}

.wp-admin .bannerboost-settings .description {
    color: #666;
    font-style: italic;
    margin: 0.5em 0;
}
