*{
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar{
    background-color: #0f1111;
    height: 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;

}
/* Nav bar - Logo */
.nav-logo{
    width: 150px;
    height: 50px;
    margin-right: 5px;
}
.border{
    border: 1px solid transparent;
}
.border:hover{
    border: 1px solid white;
}

.logo{
    background-image: url("amazon_logo.png");
    background-size: cover;
    width: 140px;
    height: 50px;
}

/* Nav bar - Address */
.nav-address{
   height: 50px;
   width: 80px;
   margin-right: 4px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}
.add-icon{
    display: flex;
   
}

.address-first{
    font-size: 0.75rem;
    color: #cccccc;
    margin-left: 12px;
}
.address-second{
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-left: 4px;
}
/*Nav bar - Search*/
.nav-search{
    display:flex;
    background-color: #febd68;
    width: 600px;
    height: 40px;
    border-radius: 5px;
}
.search-select{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #E6E6E6;
    border: none;
}
input{
    width: 100%;
    height: 40px;
    border:none;

}

.search-icon{
    display: flex; 
    align-items: center; 
    justify-content: center;
    width:40px;
    height: 40px;
}

/* Nav bar - Sign In */
.nav-signIn{
    width:130px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.signIn-first{
    font-size: 0.75rem;
    color: #ffffff;
}
.signIn-second{
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}
/* Nav bar - Return */
.nav-return{
    width: 80px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.return-first{
    font-size: 0.75rem;
    color: #ffffff;
}
.return-second{
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}
/* Nav bar - Cart */
.nav-cart{
    width: 80px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Panel */
.panel{
    height:40px;
    width:100%;
    background-color: #232f3e;
    color: white;
    display:flex;
    /* justify-content: space-between; */
    
}
.panel-all{
    display: flex;
    width: 50px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}
.panel-all p{
    margin-left: 4px;
}
.panel-items{
    display: flex;
    align-items: center;
    width:70%;

}
.panel-items p{
    margin-left: 12px;
    font-weight: 530;
}

/* Hero Section*/
.hero-section{
    background-image: url(hero_image.jpg);
    height: 350px;
    background-size: cover;
}

/* Hero Section box for products */
.product-section{
    display: flex;
    justify-content: space-between;
    background-color: lightgray;
    flex-wrap: wrap;
}
/*Each box of product section*/
.box{
    width:340px;
    height:420px;
    background-color: white;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-wrap:wrap;
}

.box1-images{
    display: flex;
    flex-wrap: wrap;
    height: 350px;
}
.img1-section, .img2-section, .img3-section, .img4-section{
    height: 170px;
    width: 170px;
    padding-left: 10px;
}
.box1-img1{
    background-image: url("box1_img1.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}
.box1-img2{
    background-image: url("box1_img2.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}
.box1-img3{
    background-image: url("box1_img3.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}
.box1-img4{
    background-image: url("box1_img4.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}

/* Box2 Images*/
.box2-img1{
    background-image: url("box2_img1.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}
.box2-img2{
    background-image: url("box2_img2.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}
.box2-img3{
    background-image: url("box2_img3.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}
.box2-img4{
    background-image: url("box2_img4.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}
/* Box3 Images*/
.box3-img1{
    background-image: url("box3_img1.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}
.box3-img2{
    background-image: url("box3_img2.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}.box3-img3{
    background-image: url("box3_img3.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}.box3-img4{
    background-image: url("box3_img4.jpg");
    background-size: cover;  /* Ensures the image covers the entire div */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;  /* Prevents image repetition */
    width: 150px;
    height: 150px;
}