@import url('variables.css');
@import url('header.css');
@import url('home.css');
@import url('product-card.css');
@import url('responsive.css');
@import url('login-modal.css');
@import url('otp-modal.css');
@import url('account.css');
@import url('footer.css');

/* =========================================
RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--ts-font-primary);
    font-size:var(--ts-font-size-md);
    font-weight:var(--ts-font-weight-normal);
    line-height:1.6;
    background:#f6f5f3;
    color:#111827;
    overflow-x:hidden;
}

/* =========================================
GLOBAL
========================================= */

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
    color:inherit;
    transition:0.3s;
}

button{
    border:none;
    background:none;
    cursor:pointer;
    font-family:inherit;
}

input,
select,
textarea{
    font-family:inherit;
    outline:none;
}

ul{
    list-style:none;
}

/* =========================================
CONTAINER
========================================= */

.ts-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding-inline:30px;
}

/* =========================================
COUPON POPUP
========================================= */

#ts-coupon-popup{

    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.75);
    z-index:999999;

}

.ts-coupon-modal{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:700px;
    max-width:95%;
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.ts-coupon-image{
    width:100%;
    border-radius:15px;

}

.ts-coupon-code{
    margin-top:20px;
    font-size:32px;
    font-weight:700;

}

.ts-copy-coupon{
    margin-top:20px;
    background:#2563eb;
    color:#fff;
    padding:12px 30px;
    border:none;
    border-radius:10px;
    cursor:pointer;

}

.ts-coupon-close{
    position:absolute;
    top:-22px;
    right:-22px;
    width:45px;
    height:45px;
    background:#000;
    color:#fff;
    border:4px solid #ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    transition:.3s;
    z-index:9999;
}

.ts-coupon-close:hover{
    transform:scale(1.08);
    background:#ef4444;

}
/* =========================================
OFFERS
========================================= */

.ts-hero-offers{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.ts-offer-card{
    overflow:hidden;
    border-radius:22px;
    height:200px;
    background:#fff;
    border:1px solid #edf1f7;
}

.ts-offer-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.ts-offer-card:hover img{
    transform:scale(1.04);
}

html,
body{
    background:#F3F4F6 !important;
    overflow-x:hidden;
}

.ts-site-wrapper{
    background:#F3F4F6 !important;
}


.site,
.site-main,
main{
    overflow:hidden;
}