/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

html, body{
    width:100%;
    height:100%;
}

.coupons-section{
    margin-top:0;
    padding-top:0;
}

/* ===== COUPONS SECTION ===== */
.coupons-container{
    max-width:1000px;
    margin:0 auto;
    padding:20px;
}

.coupons-title{
    text-align:center;
    margin-bottom:10px;
    margin-top:0;
}

.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%;
}

.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;
    }
}
