.bpg-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #fff;
    border-radius: 8px 8px 0 0;
}

.bpg-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.bpg-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.bpg-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
}

/* Dots pagination */
.bpg-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 0 8px;
}

.bpg-dot {
    width: 22px;
    height: 4px;
    border-radius: 2px;
    background-color: #cccccc;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
    display: inline-block;
}

.bpg-dot.active {
    background-color: #2E7D32;
    width: 22px;
}
