/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

html, body{
    width:100%;
    height:100%;
}

/* ===== BANNER SECTION ===== */

.banner-section{
    width:100%;
    background-image:url('images/new_banner (2).jpeg');
    background-repeat:no-repeat;
    background-position:top center;
    background-size:100% auto;
    min-height:70vh;
}

.banner-section{
    position: relative;
    width:100%;
    height:70vh;
    overflow:hidden;
}

.banner-video{
    position:absolute;
    top:50%;
    left:50%;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:translate(-50%, -50%);
}

/* Tablet */
@media (max-width:1024px){
    .banner-section{
        height:45vh;
    }
}

/* Mobile */
@media (max-width:768px){
    .banner-section{
        height:65vh;
    }
}

.coupons-section{
    margin-top:0;
    padding-top:0;
}


/* ===== COUPONS SECTION ===== */
.coupons-container{
    max-width:1100px;   /* center width */
    margin:0 auto;      /* center align */
    padding:20px;
}

.coupon-row{
    display:flex;
    justify-content:flex-start;
    gap:20px;
    overflow-x:auto;
    padding:15px 10px;
    white-space:nowrap;
}
.coupon-row::before,
.coupon-row::after{
    content:"";
    flex:0 0 50%;
}
.coupons-title{
    text-align:center;
    margin-bottom:10px;
     margin-top:0;
}

.coupon-row::-webkit-scrollbar{
    height:6px;
}

.coupon-row::-webkit-scrollbar-thumb{
    background:#431469;
    border-radius:10px;
}

.coupon-inline{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:10px 16px;
    border-radius:40px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    flex-shrink:0;
}

.coupon-code-inline{
    background:#431469;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    font-weight:bold;
    font-size:14px;
}

.coupon-desc-inline{
    font-size:13px;
    color:#555;
    max-width:220px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
/* Mobile device but desktop mode fix */
@media (max-width: 1024px) and (orientation: portrait){
    .coupon-row::before,
    .coupon-row::after{
        display:none;
    }
}
/* Tablet / iPad */
@media (max-width: 1024px){
    .banner-section{
        min-height:45vh;
        background-size:cover;
    }
}

/* Mobile */
@media (max-width: 768px){
    .banner-section{
        min-height:65vh;
        background-size:cover;
    }
}

    .coupon-card {
        min-width:240px;
    }

