/* ── Promo / Notification Slider (top) ── */
#promoSlider {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 130px;
    background: #ffffff18;
    touch-action: pan-y;
}
#promoTrack {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}
.promo-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 14px;
    position: relative;
}
.promo-slide-content { flex: 1; }
.promo-slide-label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px;
}
.promo-slide-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}
.promo-slide-btn {
    background: rgba(255,255,255,0.25);
    border: none;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.promo-slide-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    flex-shrink: 0;
    font-size: 32px;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}
.slider-dot {
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.35);
    transition: width 0.3s, background 0.3s;
    width: 6px;
}
.slider-dot.active {
    background: #fff;
    width: 18px;
}

/* ── Bottom Image Slider ── */
#bannerSlider {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 80px;
    background: #e5e7eb;
    touch-action: pan-y;
    margin-bottom: 12px;
}
#bannerTrack {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}
.banner-slide {
    min-width: 100%;
    height: 100%;
}
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
#bannerSlider .slider-dots { bottom: 6px; }