/* Promo Slider Styles */
#promo_slider_section {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.promo-slider-wrapper {
    position: relative;
    width: 100%;
}

.promo-slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

    .promo-slider-container::-webkit-scrollbar {
        display: none;
    }

.promo-slider {
    display: flex;
    gap: 20px;
    padding: 10px 0 30px 0;
    width: fit-content;
    min-width: 100%;
}

.promo-slide {
    flex: 0 0 auto;
    width: 280px;
}

.promo-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

.promo-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #0B1221;
}

    .promo-image img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        display: block;
    }

.promo-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.promo-title {
    font-size: 18px;
    font-weight: 700;
    color: #0B1221;
    margin-bottom: 10px;
    line-height: 1.3;
}

.promo-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    flex: 1;
    line-height: 1.5;
}

.promo-btn {
    display: inline-block;
    background: #0B1221;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
    align-self: flex-start;
}

    .promo-btn:hover {
        background: #e74c3c;
        color: white !important;
        text-decoration: none;
    }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

    .dot.active {
        background: #0B1221;
        width: 24px;
        border-radius: 5px;
    }

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .promo-slide {
        width: 300px;
    }

    #promo_slider_section {
        padding: 35px 0;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    #promo_slider_section {
        padding: 30px 0;
        margin-top: -20px;
    }

    .promo-slide {
        width: 260px;
    }

    .promo-image {
        height: 160px;
    }

    .promo-content {
        padding: 15px;
    }

    .promo-title {
        font-size: 16px;
    }

    .promo-description {
        font-size: 13px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .promo-slide {
        width: 240px;
    }

    .promo-image {
        height: 150px;
    }
}
