@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    font-family: Roboto,Arial,sans-serif;
    background-color: #f1f1f6;
}

/* Header part */
header{
    background-color: var(--primary-color);
    height: 56px;
}

.nav-container{
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}




.nav-container .logo {
    display: flex;
    min-width: 137px;
    justify-content: flex-end;
}

.nav-container .logo img {
    width: 75px;
}

.nav-container .logo1{
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-container .logo1 .exp{
    font-size: 10px;
    font-style: italic;
    text-decoration: none;
    display: flex;
    color: white;
}

.become-seller,
.cart,
.more {
    cursor: pointer;
}


.nav-container .search-bar {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.nav-container .search-bar .searchbar-container {
    width: 520px;
    height: 30px;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 23%);
    display: flex;
}

.nav-container .search-bar .searchbar-container .search-box {
    width: calc(100% - 32px);
    padding: 16px;
    border-radius: 2px 0 0 2px;
    font-size: 14px;
    outline: none;
    border: none;
}

.nav-container .search-bar .searchbar-container .search {
    width: 36px;
    height: 100%;
    padding: 0 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: white;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
}

.nav-container .login{
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.nav-container .login button {
    width: 122px;
    padding: 5px 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    background-color: white;
    border: none;
    box-shadow: 5px 5px;
    cursor: pointer;
}

.nav-container .become-seller,
.nav-container .more,
.nav-container .cart {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 20px;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.nav-container .more svg {
    margin-left: 8px;
    rotate: -90deg;
    transition: all 0.4s ease;
}


.nav-container .more svg:hover {
    transform: rotateZ(180deg);
}

.nav-container .cart svg {
    margin-right:  8px;
}

/* # == Section-1 (Top Banner) == # */
.section-1{
    width: 100%;
    height: 112px;
    background-color: white;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 16%);
}

.section-1 .sec-container{
    display: flex;
    width: 1280px;
    margin: 0 auto;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.section-1 .sec-container .item-1 {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

.section-1 .sec-container .item-1 img {
    height: 60px;
    width: 60px;
}

/* # == Section-2 == # */
.section-2{
    margin-top: 16px;
    height: 280px;
    background-image: url('https://rukminim1.flixcart.com/fk-p-flap/3376/560/image/0735712fe84c602d.jpg?q=50');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* # == Section-3 == # */
.section-3{
    margin-top: 8px;
    height: 122px;
    background-image: url('https://rukminim1.flixcart.com/fk-p-flap/2848/246/image/d56a3ed6d200038a.jpg?q=50');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* # == Section-4 == # */
.sec4-container {
    height: 100%;
    margin-top: 8px;
    height: 360px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec4-container .offers {
    background-image: url("https://rukminim1.flixcart.com/fk-p-flap/278/278/image/7593e7b6640822c1.jpg?q=90&quot");
    background-position: 0px bottom;
    background-repeat: no-repeat;
    width: 230px;
    height: 100%;
    display: flex;
    box-sizing: border-box;
    text-align: center;
    padding-top: 75px;
    
}

.sec4-container .offers .offers-viewall h2 {
    word-wrap: break-word;
    font-size: 30px;
    line-height: 1.38;
    font-weight: 400;
}

.sec4-container .offers .offers-viewall button {
    width: 100px;
    height: 40px;
    background-color: var(--primary-color);
    border: none;
    color: white;
    margin-top: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.sec4-container .list {
    height: 100%;
    width: calc(100% - 230px);
    display: flex;
    overflow-x: auto;
    cursor: pointer;
}

.sec4-container .list .item {
    width: 232px;
    height: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.sec4-container .list .item .pic {
    height: 200px;
    display: flex;
    align-items: center;
}


.sec4-container .list .item .pic img {
    max-width: 200px;
    max-height: 200px;
    /* height: 140px; */
}

.sec4-container .list .item img:hover{
    transform: scale(1.04);
}

.sec4-container .list .item .head {
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
}

.sec4-container .list .item .price {
    margin-top: 12px;
    font-size: 16px;
    color: #388e3c;
}

.sec4-container .list .item .explore {
    opacity: 0.6;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 300;
}

/* # == Section-5 == # */
.sec5-container {
    height: 100%;
    margin-top: 8px;
    height: 360px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec5-container .offers {
    background-image: url("https://rukminim1.flixcart.com/fk-p-flap/278/278/image/b84f1c22cce1a6a3.jpg?q=90");
    background-position: 0px bottom;
    background-repeat: no-repeat;
    width: 230px;
    height: 100%;
    display: flex;
    box-sizing: border-box;
    text-align: center;
    padding-top: 75px;
    
}

.sec5-container .offers .offers-viewall h2 {
    word-wrap: break-word;
    font-size: 30px;
    line-height: 1.38;
    font-weight: 400;
}

.sec5-container .offers .offers-viewall button {
    width: 100px;
    height: 40px;
    background-color: var(--primary-color);
    border: none;
    color: white;
    margin-top: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.sec5-container .list {
    height: 100%;
    width: calc(100% - 230px);
    display: flex;
    overflow-x: auto;
    cursor: pointer;
}

.sec5-container .list .item {
    width: 232px;
    height: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.sec5-container .list .item .pic {
    height: 200px;
    display: flex;
    align-items: center;
}


.sec5-container .list .item .pic img {
    max-width: 200px;
    max-height: 200px;
    /* height: 140px; */
}

.sec5-container .list .item img:hover{
    transform: scale(1.04);
}

.sec5-container .list .item .head {
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
}

.sec5-container .list .item .price {
    margin-top: 12px;
    font-size: 16px;
    color: #388e3c;
}

.sec5-container .list .item .explore {
    opacity: 0.6;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 300;
}

/* # == Bottom Section == # */
.bottom-section{
    margin-top: 50px;
    background-color: white;
    /* padding-top: 50px; */
    /* padding-left: 30px; */
    padding: 50px 30px;
}
.bottom-section .top-stories{
    color: var(--color-2);
    margin-bottom: 25px;
}

.bottom-section .most-searched {
    margin-bottom: 50px;
}

.bottom-section .most-searched .caps {
    color: var(--color-2);
    text-transform: uppercase;
}

.bottom-section .most-searched .min a,
.minlast {
    text-decoration: none;
    box-sizing: border-box;
    border-right: 1px solid black;
    font-size: 12px;
    color: var(--color-2);
    padding: 0 5px;
}

.bottom-section .most-searched .min .minlast{
    border-right: none;
}

.bottom-section .one-stop-shopping h1{
    font-size: 16px;
    color: var(--color-2);
    margin-bottom: 10px;
}

.bottom-section .one-stop-shopping p{
    font-size: 11px;
    color: var(--color-2);
    margin-bottom: 10px;
}

/* # == Bottom About Section == # */
.bottom-about{
    width: 100%;
    display: flex;
    padding: 40px 0;
    background-color: #172337;
    justify-content: space-evenly;
}

.bottom-about .cl1 {
    color: #878787;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 9px;
}

.bottom-about .about-us,
.bottom-about .help,
.consumer-policy,
.social {
    display: flex;
    flex-direction: column;
}

.bottom-about p,
.bottom-about a {

    text-decoration: none;
    font-size: 11px;
    color: white;
    line-height: 2;
}

.bottom-about a:hover {
    text-decoration: underline;
}

.bottom-about .mail-us {
    border-left: 1px solid #454d5e;
    padding: 0 25px;
}

.bottom-about .address a {
    color: #2874f0;
    font-weight: 500;
}

/* # == Footer Section == # */
footer {
    width: 100%;
    padding: 20px 0;
    background-color: #172337;
    border-top: 1px solid #454d5e;
}

.footer-bar {
    display: flex;
    justify-content: space-evenly;
}

footer a,
footer span {
    color: white;
    text-decoration: none;
    margin-left: 8px;
}

.footer-bar .payment-icons {
    display: flex;
}
.footer-bar .payment-icons i {
    font-size: 20px;
    color: white;

}

.footer-bar .payment-icons img {
    height: 20px;
    margin-left: 5px;
}




