.product-showcase-container {
    background-color: #1E40AF;
    border-radius: 15px;
    padding: 30px;
    color: #fff;
    font-family: sans-serif;
    position: relative;
    overflow: hidden;
}

.whats-new-tag {
    background-color: #fff;
    color: #5d3fd3;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}

.headline {
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
}

.highlight {
    color: #ffcc00;
}

.products-carousel {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 25px;
    position: relative;
}

.swiper-wrapper {
    display: flex;
    gap: 0px !important;
    flex-wrap: nowrap; /* Ensures cards stay in a single row */
}

.product-card {
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.swiper-slide {
    flex-shrink: 0;
    width: calc(50% - 10px); /* Adjusts for the 20px gap */
}

.popularity-tag {
    background-color: #f0f0f0;
    color: #555;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.reviews-count {
    font-size: 14px;
    color: #999;
    margin: 5px 0;
}

.discount-tag {
    background-color: #e0f7fa;
    color: #007bff;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    margin-top: 5px;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.regular-price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin: 0;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.buy-now-button {
    background-color: #1E40AF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.buy-now-button:hover {
    background-color: #4b329c;
    color:#fff;
}

.swiper-pagination {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
}