.discount_heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 60px 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #333;
}

.discount_heading i {
    color: #c92026;
}

.discount_subheading {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Lock height and prevent scroll jumps */
.discount_container {
    width: 100vw;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    scroll-margin-top: 60px; /* optional if navigated to via anchor */
}

.discount_slider {
    height: 100%;
    width: 80vw;
    display: flex;
    perspective: 1000px;
    position: relative;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.discount_slider .slide-box {
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 1s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    color: white;
}

.slide-info {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

/* Positioning and transforms */
.discount_slider .slide-box:nth-child(7),
.discount_slider .slide-box:nth-child(1) {
    width: 60vh;
    height: 35vh;
    transform: scale(0.2) translate(-50%, -50%);
    top: 10%;
    z-index: 1;
}

.discount_slider .slide-box:nth-child(2),
.discount_slider .slide-box:nth-child(6) {
    width: 60vh;
    height: 35vh;
    transform: scale(0.4) translate(-50%, -50%);
    top: 20%;
    z-index: 2;
}

.discount_slider .slide-box:nth-child(3),
.discount_slider .slide-box:nth-child(5) {
    width: 60vh;
    height: 35vh;
    transform: scale(0.6) translate(-50%, -50%);
    top: 30%;
    z-index: 3;
}

.discount_slider .slide-box:nth-child(4) {
    width: 60vw;
    height: 45vh;
    transform: scale(1) translate(-50%, -50%);
    top: 50%;
    z-index: 4;
}

/* Horizontal positions */
.discount_slider .slide-box:nth-child(1) {
    left: -13%;
}

.discount_slider .slide-box:nth-child(2) {
    left: -5%;
}

.discount_slider .slide-box:nth-child(3) {
    left: 10%;
}

.discount_slider .slide-box:nth-child(4) {
    left: 50%;
}

.discount_slider .slide-box:nth-child(5) {
    left: 71%;
}

.discount_slider .slide-box:nth-child(6) {
    left: 85%;
}

.discount_slider .slide-box:nth-child(7) {
    left: 100%;
}

/* Slide animation */
.discount_slider .firstSlide {
    animation: firstChild 1s;
}

@keyframes firstChild {
    0% {
        left: 100%;
        transform: scale(0.2) translate(-50%, -50%);
    }

    100% {
        left: -13%;
        transform: scale(0.2) translate(-50%, -50%);
    }
}