/* Revolution Slider Thumbnail Navigation Styles */

/* Container for bullet navigation - INLINE DISPLAY */
.tp-bullets {
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Individual bullet styling */
.tp-bullet {
    width: 80px !important;
    height: 80px !important;
    border-radius: 8px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    cursor: pointer !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    margin: 0 5px !important;
}

/* Bullet hover state */
.tp-bullet:hover {
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

/* Active bullet state */
.tp-bullet.selected {
    border-color: #ffffff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
}

/* Bullet image wrapper */
.tp-bullet-img-wrap {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 5px !important;
}

/* Bullet thumbnail image */
.tp-bullet-image {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.3s ease !important;
}

/* Image zoom effect on hover */
.tp-bullet:hover .tp-bullet-image {
    transform: scale(1.1) !important;
}

/* Bullet positioning - HORIZONTAL LAYOUT */
.tp-bullets.tp-bullets-horizontal {
    bottom: 60px !important;
    right: 180px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Mobile responsive adjustments - KEEP INLINE */
@media (max-width: 768px) {
    .tp-bullet {
        width: 60px !important;
        height: 60px !important;
        margin: 0 3px !important;
    }
    
    .tp-bullets.tp-bullets-horizontal {
        bottom: 30px !important;
        right: 20px !important;
        left: 20px !important;
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
    }
}

@media (max-width: 480px) {
    .tp-bullet {
        width: 50px !important;
        height: 50px !important;
        margin: 0 2px !important;
    }
    
    .tp-bullets.tp-bullets-horizontal {
        bottom: 20px !important;
        right: 10px !important;
        left: 10px !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 6px !important;
    }
}

/* Optional: Add a subtle overlay to thumbnails for better text visibility */
.tp-bullet-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tp-bullet.selected .tp-bullet-img-wrap::after {
    opacity: 0;
}

/* Smooth transitions for all states */
.tp-bullet,
.tp-bullet-image,
.tp-bullet-img-wrap::after {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Let Revolution Slider handle thumbnail z-index naturally */
.tp-bullets,
.tp-bullet,
.tp-bullet-img-wrap,
.tp-bullet-image {
    position: relative;
}