/* Product Carousel */
.product-carousel {
    padding: 10px 20px;
    text-align: center;
}

.product-carousel h2,.product-carousel .woocommerce-loop-product__title {
    font-size: 18px;
    margin-bottom: 10px;
    margin: 0 0 10px 0 !important;
    font-weight: 100;
}

.woo-carousel {
    margin: 0 auto;
    max-width: 1200px;
}

.woo-product {
    text-align: center;
    padding: 10px;
}

.woo-product img {
    max-width: 100%;
    height: auto;
}

.woo-product h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.woo-product .price {
    color: #e91e63;
    font-weight: bold;
    margin-bottom: 20px;
}
.woo-product .add-to-cart{
    background-color: var(--button-semi-bg);
    color: var(--button-semi-color);
    padding: 5px;
    border-radius: 5px;
}


/* Testimonials */
.testimonials {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    margin: 0 0 10px 0;
    font-weight: 100;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    padding: 20px;
}

.testimonial blockquote {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .author {
    font-weight: bold;
}

.testimonial .rating .star {
    color: #f1c40f;
    font-size: 1.2em;
}

/* Slick Slider Overrides */
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
    content: '<';
}

.slick-next:before {
    content: '>';
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-dots {
    text-align: center;
    margin-top: 20px;
    padding: 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background: #0071a1;
}