.custom-product-slider {
    padding: 40px 0;
}
.custom-product-slider a {
    text-decoration: none;
}
.custom-product-slider__container {
    margin: 0 auto;
    padding: 0 20px;
    min-height: 270px;
}
@media (min-width: 1200px) {
    .custom-product-slider__container {
        min-height: 330px;
    }
}

.custom-product-slider__wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.custom-product-slider__item {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.custom-product-slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.custom-product-slider__item.slick-active img {
    opacity: 1;
}

.custom-product-slider__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.custom-product-slider__image {
    margin-bottom: 15px;
}

.custom-product-slider__image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.custom-product-slider__title {
    color: #fa0;
    font-family: var(--font-headings);
    margin: 0;
    text-align: center;
}

.custom-product-slider__price {
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
    text-align: center;
}

.custom-product-slider__price del {
    color: #666;
    font-weight: normal;
    margin-right: 5px;
}

.custom-product-slider__price ins {
    text-decoration: none;
    color: #e63946;
}

/* Slick Slider Customization */
.custom-product-slider .slick-dots {
    bottom: -30px;
}

.custom-product-slider .slick-dots li button:before {
    font-size: 10px;
}

.custom-product-slider .slick-dots li.slick-active button:before {
    color: #000;
}

/* Hide arrows */
.custom-product-slider .slick-arrow {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-product-slider {
        padding: 30px 0;
    }
    
    .custom-product-slider__title {
        font-size: 1rem;
    }
    
    .custom-product-slider__price {
        font-size: 1.1rem;
    }
} 