/* BMT Image Slider Styles */
.bmt-image-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Hidden class for navigation elements */
.bmt-image-slider .bmt-slider-prev.hidden,
.bmt-image-slider .bmt-slider-next.hidden,
.bmt-image-slider .bmt-slider-dots.hidden {
    display: none;
}

.bmt-slider-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.bmt-slide {
    display: none;
    width: 100%;
    text-align: center;
}

.bmt-slide:first-child {
    display: block;
}

.bmt-slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Navigation Buttons */
.bmt-image-slider .bmt-slider-prev,
.bmt-image-slider .bmt-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 63, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bmt-image-slider .bmt-slider-prev:hover,
.bmt-image-slider .bmt-slider-next:hover {
    border-radius: 50% !important;
    background: rgba(220, 63, 0, 1) !important;
}

.bmt-image-slider .bmt-slider-prev:focus,
.bmt-image-slider .bmt-slider-next:focus {
    border-radius: 50% !important;
}

/* Disabled state for navigation buttons */
.bmt-image-slider .bmt-slider-prev.disabled,
.bmt-image-slider .bmt-slider-next.disabled {
    display: none !important;
    /* opacity: 0.3;
    cursor: not-allowed;
    background: rgba(220, 63, 0, 0.2) !important; */
}

.bmt-image-slider .bmt-slider-prev.disabled:hover,
.bmt-image-slider .bmt-slider-next.disabled:hover {
    /* background: rgba(220, 63, 0, 0.2) !important; */
}

.bmt-slider-prev {
    left: 10px;
}

.bmt-slider-next {
    right: 10px;
}

/* Dots Navigation */
.bmt-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.bmt-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
    font-size: 0;
}

.bmt-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.bmt-dot.active {
    background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bmt-slider-prev,
    .bmt-slider-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .bmt-slider-prev {
        left: 5px;
    }

    .bmt-slider-next {
        right: 5px;
    }

    .bmt-slider-dots {
        bottom: 10px;
        gap: 6px;
    }

    .bmt-dot {
        width: 10px;
        height: 10px;
    }

    .bmt-slide img {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .bmt-slider-prev,
    .bmt-slider-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .bmt-slide img {
        max-height: 300px;
    }
}

/* Touch-friendly for mobile */
@media (hover: none) and (pointer: coarse) {
    .bmt-slider-prev,
    .bmt-slider-next {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .bmt-dot {
        width: 14px;
        height: 14px;
    }
}
