/* Blaze Slider Container */
.blaze-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    font-family: inherit;
    padding: 0 1rem;
    overflow: hidden;
}

/* Track layout */
.blaze-slider .blaze-track {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

/* Individual slides – flexible width */
.blaze-slider .blaze-slide {
    flex: 0 0 auto;
    height: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.blaze-slider .blaze-slide:hover {
    transform: scale(1.02);
}

/* Product image */
.blaze-slider .product-link img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
}

/* Product title */
.blaze-slider .product-link h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0.5rem 0;
}

/* Product price */
.blaze-slider .product-link .price {
    font-size: 1rem;
    color: #007cba;
    margin-top: 0.25rem;
}

/* Navigation Arrows */
.blaze-slider .blaze-prev,
.blaze-slider .blaze-next {
    background-color: black;
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.blaze-slider .blaze-prev {
    left: 0.5rem;
}

.blaze-slider .blaze-next {
    right: 0.5rem;
}

/* Pagination Dots */
.blaze-slider .blaze-pagination {
    text-align: center;
    margin-top: 1rem;
}

.blaze-slider .blaze-pagination > * {
    display: inline-block;
    margin: 0 4px;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.blaze-slider .blaze-pagination .blaze-active {
    background-color: #007cba;
}

/* Responsive Tweak: Mobile full-width slide */
@media (max-width: 992px) {
    .blaze-slider .blaze-slide {
        width: 33%;
    }
}
@media (max-width: 480px) {
    .blaze-slider .blaze-slide {
        width: 100%;
    }
}