*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Assistant',sans-serif;
}

body{
    background:#ffffff;
    color:#282c3f;
    overflow-y:auto;
    padding-bottom:60px;
}

html{
    scroll-behavior:smooth;
}

/* HEADER */

.header{
    height:56px;
    width:100%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 10px;
    border-bottom:1px solid #eaeaec;
    position:sticky;
    top:0;
    z-index:999;
}

.left-header{
    display:flex;
    align-items:center;
    gap:10px;
}

.back-btn{
    font-size:24px;
    font-weight:600;
}

.logo img{
    width:32px;
}

.header-text h2{
    font-size:20px;
    font-weight:700;
}

.header-text p{
    font-size:12px;
    color:#7e818c;
    margin-top:2px;
}

.right-header{
    display:flex;
    align-items:center;
    gap:16px;
    font-size:20px;
}

/* OFFER */

.offer-banner{
    width:100%;
    height:60px;
    background:#c37ab3;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.offer-banner h3{
    font-size:18px;
    font-weight:800;
}

.offer-banner p{
    font-size:15px;
    margin-top:3px;
}

/* PRODUCTS */

.products{
    display:grid;
    grid-template-columns:repeat(2,1fr);
}

.product-card{
    background:#fff;
    border-right:1px solid #f0f0f0;
    border-bottom:1px solid #f0f0f0;
}

.img-box{
    position:relative;
}

.img-box img{
    width:100%;
    height:275px;
    object-fit:cover;
    display:block;
}

.rating{
    position:absolute;
    left:6px;
    bottom:8px;
    background:#fff;
    padding:3px 7px;
    border-radius:2px;
    font-size:11px;
    font-weight:700;
}

.wishlist{
    position:absolute;
    right:8px;
    bottom:-16px;
    width:32px;
    height:32px;
    border-radius:50%;
    background:#fff;
    border:1px solid #d4d5d9;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.ad-tag{
    position:absolute;
    top:6px;
    right:6px;
    background:#9b9b9b;
    color:#fff;
    padding:2px 5px;
    font-size:10px;
    border-radius:2px;
}

/* PRODUCT INFO */

.product-info{
    padding:8px;
}

.product-info h3{
    font-size:18px;
    font-weight:700;
    margin-bottom:2px;
}

.product-info p{
    font-size:13px;
    color:#7e818c;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.price-row{
    margin-top:6px;
    display:flex;
    align-items:center;
    gap:5px;
    flex-wrap:wrap;
}

.new-price{
    font-size:24px;
    font-weight:700;
}

.old-price{
    text-decoration:line-through;
    color:#94969f;
    font-size:14px;
}

.discount{
    color:#ff905a;
    font-size:14px;
    font-weight:700;
}

/* BOTTOM BAR */

.bottom-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:50px;
    background:#fff;
    border-top:1px solid #eaeaec;
    display:flex;
    z-index:999;
}

.bottom-bar button{
    width:50%;
    border:none;
    background:#fff;
    font-size:16px;
    font-weight:700;
    color:#282c3f;
}

.bottom-bar button:first-child{
    border-right:1px solid #eaeaec;
}