.branch_slideshow {
    width: 100%;
    height: 600px;
    position: relative;
}

.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* ×ª×ž×•× ×•×ª */
.slideshow_img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.slideshow_img.active {
    opacity: 1;
    z-index: 2;
}

/* ×—×¦×™× */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    cursor: pointer;
    font-size: 22px;
    z-index: 5;
}

.slide-prev { left: 10px; }
.slide-next { right: 10px; }

/* × ×§×•×“×•×ª */
.slide-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15; /* ðŸ”¥ ×ž×¢×œ ×”×ª×ž×•× ×•×ª */
}

.slide-dot {
    width: 12px;
    height: 13px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
    border: 1px solid #fff;
}

.slide-dot.active {
    background: #fff;
    opacity: 1;
    transform: scale(1.2);
}

/* ×ž×•×‘×™×™×œ */
@media (max-width:768px) {
    .branch_slideshow {
        width: 100%;
        height: 250px;
    }
}