@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.best-selling-slider-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
}

.best-selling-slider-wrapper .swiper-slide {
    height: auto;
}

.product-card-best-selling {
    border-radius: 0;
    background-color: #fff;
    text-align: left;
    color: #6c757d;
    display: inline-block;
    margin-left: 4px;
}

.product-card-best-selling:hover {
    box-shadow: none;
}

.product-image-wrapper {
    padding: 15px;
}

.product-card-best-selling .product-title a {
    text-decoration: none;
    color: #2674be;
    font-size: 1rem;
    font-weight: bold;
}
.product-card-best-selling .product-title a:hover {
    text-decoration: underline;
}

/* Price styling */
.product-card-best-selling .product-price {
    line-height: 1.2;
}

/* Regular price, not on sale */
.product-card-best-selling .product-price > .price > .woocommerce-Price-amount.amount {
    color: #212529;
    font-weight: bold;
}

/* Sale price (the new price) */
.product-card-best-selling .product-price ins {
    text-decoration: none;
}

.product-card-best-selling .product-price ins .woocommerce-Price-amount.amount {
    color: #dc3545; /* red */
    font-weight: bold;
}

/* Original price (when on sale) */
.product-card-best-selling .product-price del {
    font-size: 0.9em;
    font-weight: normal;
    color: #6c757d;
    margin-left: 5px;
}

.product-card-best-selling .product-price del .woocommerce-Price-amount.amount {
    color: #6c757d;
}

.product-card-best-selling .product-price .woocommerce-price-suffix {
    font-size: 0.9em;
    font-weight: normal;
    color: #6c757d;
    display: inline-block;
    margin-left: 4px;
}

/* Action button styling (Add to Cart and Link) */
.product-actions .button.sh-action-button {
    background-color: #f5f5f5 !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd !important;
}

.product-actions .button.sh-action-button .material-icons-outlined {
    font-size: 20px;
    color: #666;
}

.product-actions .added_to_cart.wc-forward {
    display: none !important;
}

.best-selling-slider-button-prev,
.best-selling-slider-button-next {
    color: #2674be;
}

.best-selling-slider-pagination .swiper-pagination-bullet-active {
    background: #2674be;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d !important;
}

.btn-login-to-see-prices {
    background-color: #1b93f6 !important;
    color: #ffffff !important;
    font-weight: bold;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    text-align: center;
    text-decoration: none;
    border: none;
    text-transform: none;
}

.btn-login-to-see-prices:hover {
    background-color: #1883db !important;
    color: #ffffff !important;
}

/* Text Slider */
.text-slider-wrapper {
     padding: 3rem 1rem;
    text-align: center;
}

.text-slider-container {
    width: 100%;
}

.text-slide-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
    text-transform: uppercase;
}

.text-slide-content p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .text-slide-content h2 {
        font-size: 2rem;
    }
    .text-slide-content p {
        font-size: 1rem;
    }
} 