/* ================= DEAL SLIDER ================= */

.deal-slider-section {
    background: #fff;
    padding: 10px;
    margin: 40px 0;
}

/* HEADER */
.deal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.deal-header h2 {
    font-size: 20px;
    color: #111;
}

.deal-header a {
    font-size: 14px;
    color: #007185;
    text-decoration: none;
}

/* WRAPPER */
.deal-slider-wrapper {
    position: relative;
}

.deal-slider {
    overflow: hidden;
    height: 35vh;
    position: relative;
}

.deal-track {
    display: flex;
    gap: 15px;
    height: 100%;
    will-change: transform;
}

.slide {
    flex: 0 0 auto;
    height: 100%;
}

.slide img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* ARROWS */
.deal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.deal-arrow.left { left: 0; }
.deal-arrow.right { right: 0; }

/* MOBILE */
@media (max-width: 768px) {
    .deal-slider {
        height: 30vh;
    }

    .deal-header h2 {
        font-size: 16px;
    }
}
