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

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    font-size: 63.5%;
    color: #ffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    font-family: "Roboto", sans-serif;
    background-color: #050505;
    font-weight: 400;
    overflow-x: hidden;
}

/*******************/
/* NAVIGATION */
/*******************/

ul,li{
    list-style: none;
}

a{
    text-decoration: none;
}

button{
    cursor: pointer;
}

::-webkit-scrollbar{
    background: #050505;
    width: 10px;
    border-left: 1px solid #3D3D3D;
}

::-webkit-scrollbar-thumb{
    background: #F8C446;
}



.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 13rem;   
    height: 9.3rem;
    border-bottom: 1px solid #3D3D3D;

}

.main-nav-list{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav-link:link,.main-nav-link:visited{
    color: #fff;
    font-size: 1.5rem;
}


.header-cta{
    display: flex;
    gap: 2rem;
}

.search-box{
    width: 18rem;
    height: 5rem;
    background-color: #262626;
    border: 1px solid hsl(0, 0%, 24%);
    border-radius: 5px;
}

::placeholder{
    padding-left: 1rem;
}

.btnNav{
    padding: 1.5rem;
    font-size: 1.4rem;
    font-weight: 550;
    width: 12rem;
    background-color: #F8C446;
    border: none;
    border-radius: 3px;
}

.btn-mobile-nav{
    border: none;
    background: none;
    cursor: pointer;
    display: none;

}

.icon-mobile-nav{
    height: 4.8rem;
    width: 4.8rem;
    color: #ffff;
}

.icon-mobile-nav[name="close-outline"]{
    display: none;
    
}
.icon-mobile-nav[name="close-outline"]:hover{
    color: #F8C446;
    
}

.main-nav-link:hover{
    color: #F8C446;
}

/*******************/
/* HERO SECTION */
/*******************/

.section-hero{
    padding: 5rem 0;
}

.hero-container{
    max-width: 115rem;
    margin: 0 auto;
    padding: 3.2rem;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

.hero-text-box{
    display: flex;
    flex-direction: column;
    gap: 3rem;

}

.hero-heading{
    font-size: 5.7rem;
    font-weight: 550;
}

.hero-description{
    font-size: 1.8rem;
    text-align: left;
    line-height: 1.5;
    padding-right: 2rem;
}

.hero-heading span{
    color: #050505;
    -webkit-text-stroke: 1px #F8C446;
}

.hero-btns{
    display: flex;
    gap: 2rem;
}

.hero-fill-btn{
    font-size: 1.4rem;
    font-weight: 550;
    background-color: #F8C446;
    width: 15rem;
    height: 4.5rem;
    border: none;
    border-radius: 2px;
}

.hero-outline-btn{
    font-size: 1.3rem;
    font-weight: 550;
    color: #fff;
    background-color: #050505;
    width: 13rem;
    height: 4.5rem;
    border: 1px solid #F8C446;
    border-radius: 2px;

}

.hero-img-box{
    border: 20px solid #262626;
    border-radius: 50%;
    overflow: hidden;
}

.hero-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -2px;
}

/*******************/
/* ITEMS SECTION */
/*******************/

.section-items{
    padding: 5rem 0;
    background-color: #121212;
}

.items-container{
    max-width: 115rem;
    margin: 0 auto;
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.item-textBtn{
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
}

.item-text-heading{
    font-size: 3.5rem;
}

.view-btn{
    width: 13rem;
    height: 5rem;
    font-size: 1.7rem;
    font-weight: 550;
    background-color: #F8C446;
    border: none;
    border-radius: 5px;
}

.item-cards{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.item-card{
    max-width: 27rem;
    padding: 1.8rem;
    background-color: #262626;
    display: flex;
    flex-direction: column;
    border-radius: 7px;
    border: 1px solid hsl(0, 0%, 25%);
    cursor: pointer;
}

.item-img-container{
    height: 21rem;
    margin-bottom: 2.5rem;
    position: relative;

}

.item-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.items-icons{
    display: flex;
    justify-content: space-between;
    gap: 14rem;
    position: absolute;
    top: 10%;
    left: 11%;
}

.overlay-icon-1{
    width: 1.6rem;
    height: 1.6rem;
    padding: .4rem;
    background-color: #F8C446;
    color: #050505;
    border-radius: 50%;
}

.overlay-icon-2{
    width: 1.6rem;
    height: 1.6rem;
    padding: .4rem;
    background-color: #262626;
    border-radius: 50%;
}

.hover-bid-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8rem;
    height: 3rem;
    background-color: #F8C446;
    border: none;
    border-radius: 3px;
    transform: translate(-50%, 0);
    transition: 0.15s ease-in-out;
    opacity: 0;
    
}


.item-card:hover .item-description{
    color: #E24650;
}

.item-card:hover .hover-bid-btn{ 
    display: block;
    transform: translate(-50%, -50%);
    opacity: 1;
    
}

.item-description{
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: bold;
    color: #A1A1A1;
}

.item-user{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.user-details{
    display: flex;
    gap: 1rem;
    align-items: center;

}

.user-img{
    width: 3.5rem;
    height: 3.5rem;
    background-color: #050505;
    border-radius: 50%;
}



.name-heading{
    font-size: 1.5rem;
    font-weight: 450;
    color: #A1A1A1;
}

.user-name{
    font-size: 1.2rem;
    color: #A1A1A1;
}

.item-price{
    font-size: 1.5rem;
    font-weight: bold;
    color: #A1A1A1;
}

.bid-text{
    font-size: 1.2rem;
    color: #A1A1A1;
}

.item-bids{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bids-placed{
    font-size: 1.2rem;
    color: #A1A1A1;
}

.new-bid-btn{
    width: 5rem;
    height: 2.5rem;
    border: none;
    border-radius: 3px;
    background-color: #F8C446;
}

/*******************/
/* ABOUT SECTION */
/*******************/


.section-about{
    padding: 5rem 0;
}

.about-container{
    max-width: 115rem;
    margin: 0 auto;
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-cards{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.about-heading{
    font-size: 3.5rem;
    margin-bottom: 6rem;
}

.about-card-container{
    max-width: 35rem;
    padding: 20px;
    background-color: #121212; 
    border-radius: 10px;
    position: relative;
}

.about-card-box{
    position: relative;
    width: 22rem;
    height: 28rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    border: 1px solid #3D3D3D;
    background-color: #121212;
    border-radius: 2px;
}



.about-number{
    position: absolute;
    top: -6%;
    left: -8%;
    padding: .7rem 1.7rem;
    background-color: #262626;
    border-top-left-radius: 18px;
    border: 14px solid hsl(0, 0%, 7%);
    color: #3D3D3D;
    text-align: center;
    font-size: 2.1rem;
    font-weight: bold;
}

.about-imgs{
    width: 4rem;
}

.about-info-text{
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
}

.about-description{
    font-size: 1.5rem;
    color: #A1A1A1;
    width: 19rem;
    line-height: 2rem;
    text-align: center;
}

.about-card-box::before{
    width: 3px;
    height: 100px;
    background-color: #707070;
}

.about-card-box::after{
    height: 3px;
    width: 100px;
    background-color: #707070;
}

.about-card-box::before{
    content: "";
    position: absolute;
    top: 65.2%;
    left: 99.5%;
    border-radius: 10px;
    transition: .15s ease-in-out;
}

.about-card-box::after{
    content: "";
    position: absolute;
    top: 99.5%;
    left: 55%;
    border-radius: 10px;
    transition: .15s ease-in-out;
}

.about-card-container:hover .about-info-text{
    color: #F8C446;
}

.about-card-container:hover .about-card-box::before{
    background-color: #F8C446;
}
.about-card-container:hover .about-card-box::after{
    background-color: #F8C446;
}

/*******************/
/* PRODUCTS SECTION */
/*******************/


.section-products{
    padding: 5rem 0;
    background-color: #121212;
}

.items-container{
    max-width: 115rem;
    margin: 0 auto;
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.item-textBtn{
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
}

.item-text-heading{
    font-size: 3.5rem;
}

.view-btn{
    width: 13rem;
    height: 5rem;
    font-size: 1.7rem;
    font-weight: 550;
    background-color: #F8C446;
    border: none;
    border-radius: 5px;
}

.product-cards{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.product-card{
    max-width: 27rem;
    padding: 1.8rem;
    background-color: #262626;
    display: flex;
    flex-direction: column;
    border-radius: 7px;
    border: 1px solid hsl(0, 0%, 25%);
    cursor: pointer;
}

.item-img-container{
    height: 21rem;
    margin-bottom: 2.5rem;
    position: relative;

}

.item-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.items-icons{
    display: flex;
    justify-content: space-between;
    gap: 14rem;
    position: absolute;
    top: 10%;
    left: 11%;
}

.overlay-icon-1{
    width: 1.6rem;
    height: 1.6rem;
    padding: .4rem;
    background-color: #F8C446;
    color: #050505;
    border-radius: 50%;
}

.overlay-icon-2{
    width: 1.6rem;
    height: 1.6rem;
    padding: .4rem;
    background-color: #262626;
    border-radius: 50%;
}

.hover-bid-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8rem;
    height: 3rem;
    background-color: #F8C446;
    border: none;
    border-radius: 3px;
    transform: translate(-50%, 0);
    transition: 0.15s ease-in-out;
    opacity: 0;
    
}


.item-card:hover .item-description{
    color: #E24650;
}

.item-card:hover .hover-bid-btn{ 
    display: block;
    transform: translate(-50%, -50%);
    opacity: 1;
    
}

.item-description{
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: bold;
    color: #A1A1A1;
}

.item-user{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.user-details{
    display: flex;
    gap: 1rem;
    align-items: center;

}

.user-img{
    width: 3.5rem;
    height: 3.5rem;
    background-color: #050505;
    border-radius: 50%;
}



.name-heading{
    font-size: 1.5rem;
    font-weight: 450;
    color: #A1A1A1;
}

.user-name{
    font-size: 1.2rem;
    color: #A1A1A1;
}

.item-price{
    font-size: 1.5rem;
    font-weight: bold;
    color: #A1A1A1;
}

.bid-text{
    font-size: 1.2rem;
    color: #A1A1A1;
}

.item-bids{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bids-placed{
    font-size: 1.2rem;
    color: #A1A1A1;
}

.new-bid-btn{
    width: 5rem;
    height: 2.5rem;
    border: none;
    border-radius: 3px;
    background-color: #F8C446;
}

/*******************/
/* SELLERS SECTION */
/*******************/

.section-sellers{
    padding: 5rem 0;
}

.seller-container{
    max-width: 115rem;
    margin: 0 auto;
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.seller-heading{
    font-size: 3.5rem;
    margin-bottom: 6rem;
}

.down-arrow{
    font-size: 3.2rem;
}
.yellow-one{
    color: #F8C446;
}

.seller-card-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.seller-cards{
    max-width: 25rem;
    padding: 10px;
    background-color: #121212; 
    border-radius: 10px;
    position: relative;
}

.seller-card{
    position: relative;
    width: 23rem;
    height: 10rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid #3D3D3D;
    background-color: #121212;
    border-radius: 2px;
}


.seller-number{
    position: absolute;
    top: -10%;
    left: 83%;
    padding: .5rem .9rem;
    background-color: #262626;
    border-top-right-radius: 12px;
    border: 9px solid hsl(0, 0%, 7%);
    color: #3D3D3D;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
}

.seller-img{
    margin-left: 1.2rem;
    width: 6.6rem;
    background-color: #050505;
    border-radius: 50%;
}

.seller-name{
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #A1A1A1;
}

.seller-price{ 
    font-size: 1.1rem; 
    color: #A1A1A1;
}

.verified-badge{
    position: absolute;
    top: 65%;
    left: 25%;
    font-size: 1.4rem;
    color: #050505;
    background-color: #F8C446;
    border-radius: 50%;
}


.seller-card::before{
    width: 3px;
    height: 50px;
    background-color: #707070;
}

.seller-card::after{
    height: 3px;
    width: 50px;
    background-color: #707070;
}

.seller-card::before{
    content: "";
    position: absolute;
    top: 51%;
    left: 99.5%;
    border-radius: 10px;
    transition: .15s ease-in-out;
}

.seller-card::after{
    content: "";
    position: absolute;
    top: 99%;
    left: 79%;
    border-radius: 10px;
    transition: .15s ease-in-out;
}

.seller-cards:hover .seller-name{
    color: #F8C446;
}

.seller-cards:hover .seller-card::before{
    background-color: #F8C446;
}
.seller-cards:hover .seller-card::after{
    background-color: #F8C446;
}


/*******************/
/* FOOTER SECTION */
/*******************/

footer{
    background-color: #121212;
}

.section-footer{
    padding: 8rem 0;
    
}

.footer-container{
    max-width: 110rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-social{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.4rem;

}

.social-description{
    max-width: 30rem;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #A1A1A1;
}

.social-heading{
    font-size: 1.8rem;
    font-weight: bold;
}

.icons-list{
    display: flex;
    gap: 1rem;
}

.footer-icons{
    font-size: 1.9rem;
    padding: .7rem;
    color: #A1A1A1;
    background-color: #262626;
    border-radius: 50%;
}

.footer-about-box{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 12rem;
}

.footer-about-list{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-link-heading{
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 2.3rem;
}

.about-link{
    font-size: 1.5rem;
    margin-bottom: .8rem;
    color: #A1A1A1;
}

.about-link:hover{
    transform: translateX(10px);
    color: #F8C446;
    transition: 0.15s ease-in;
}

.copyright-box{
    padding: 2.5rem;
    display: flex;
    justify-content: space-around;
    gap: 20rem;
    color: #A1A1A1;
    background-color: #262626;
}

.terms-box{
    display: flex;
    gap: 2rem;
}
.copyright-text{
    font-size: 1.4rem;
}

.bottom-text{
    font-size: 1.5rem;
}

.top-icon{
    font-size: 2.5rem;
    background-color: #262626;
    color: #F8C446;
    padding: 1rem;
    border-radius: 50%;
    position: fixed;
    top: 90%;
    left: 95%;

}

.top-icon:hover{
    background-color: #707070;
}