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

/* navbar */

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

.nav-logo{
    height: 50px;
    width: 100px;
}


.logo {
    background-image: url("../images/amazon_logo.png");
    background-size: cover;
    height: 50px;
    width: 100%;
    color: white;
}

.border{
    border: 2px solid transparent;
    border-radius: 7px;
}

.border:hover{
    border: 2px solid white;
    transition: 0.1s ease-in-out 0s normal;
    transform: translateY(2px);
}

/* box 2 */

.nav-address{
    padding: 5px;
}

.add-icon{
    display: flex;
    align-items: center;
}

.deliver{
    color: #cccccc;
    font-size: 0.6rem;
    margin-left: 15px;
}

.place{
    font-size: 0.8rem;
    margin: 3px;
}

/* box 3 */

.nav-search{
    display: flex;
    justify-content: space-evenly;
    background-color: pink;
    width: 620px;
    height: 40px;
    border-radius: 3px;
}

.nav-search:hover{
    border: 3px rgb(255, 174, 1) solid;
    border-radius: 3px;
}

.search-select{
    background-color: rgba(243, 243, 243, 0.8);
    color: rgb(75, 74, 74);
    width: 50px;
    text-align: center;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: none;
}

.search-select:hover{
    background-color: rgba(243, 243, 243, 1);
    color: rgb(0, 0, 0);
}

.search-input{
    width: 100%;
    font-size: 1rem;
    border: none;
}

.search-icon{
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    background-color: rgb(230, 158, 50);
    color: #0f1111;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.search-icon:hover{
    background-color: rgb(255, 174, 1);
}



/* box 4 */

.language{
    padding: 8px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.flag{
    width: 20px;
    height: 15px;
}

.lang{
    margin-top: 8px;
    color: #cccccc;
    font-size: 0.8rem;
}

/* box 5 & 6*/

.nav-signin{
    padding: 8px;
}

.nav-first{
    font-size: 0.7rem;
}

.nav-second{
    font-size: 0.85rem;
    font-weight: 700;
}

.nav-return{
    padding: 8px;
}

/* box 7 */

.nav-cart i{
    font-size: 30px;
}

.nav-cart{
    font-size: 0.8rem;
    font-weight: 700px;
    padding: 8px;
}

/* panel */

.panel{
    height: 40px;
    background-color: #222f3d;
    display: flex;
    color: white;
    align-items: center;
    justify-content: space-evenly;
}

.panel-all{
    font-weight: 700;
    padding: 6px;
}

.panel-ops p{
    display: inline-block;
    margin-left: 15px;
    padding: 6px;
}

.panel-ops{
    width: 70%;
    font-size: 0.85rem;
    font-weight: 500;
}

.panel-deals{
    font-size: 0.9rem;
    font-weight: 450;
    padding: 6px;
}

/* main */

.main-container{
    height: 2rem;
    width: 100%;
}

.main-container-h2{
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 5px;
}

.main-container-content{
    margin-left: 20px;
    font-size: 0.8rem;
    color: #565959;
}

.shop-cards-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    margin-left: 20px;
}

.card1{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card1-img{
    background-image: url("../images/merch1.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card-caption{
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 550;
    font-style: normal;
}

.card-caption:hover{
    color: #c45500;
}

.fa-star{
    margin-top: 10px;
    color: rgb(255, 196, 0);
}

.rating{
    margin-left: 10px;
    font-size: 0.8rem;
}

.rating p{
    font-size: 0.8rem;
    display: inline;
    color: #007185;
}

.card2{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card2-img{
    background-image: url("../images/merch2.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card3{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card3-img{
    background-image: url("../images/merch3.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 20px;
    width: 200px;
    height: 220px;
}

.card4{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card4-img{
    background-image: url("../images/merch4.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card5{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card5-img{
    background-image: url("../images/merch5.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card6{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card6-img{
    background-image: url("../images/merch6.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card7{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card7-img{
    background-image: url("../images/merch7.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 15px;
    width: 200px;
    height: 220px;
}

.card8{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card8-img{
    background-image: url("../images/merch8.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card9{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card9-img{
    background-image: url("../images/merch9.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 45px;
    width: 200px;
    height: 220px;
}

.card10{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card10-img{
    background-image: url("../images/merch10.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card11{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card11-img{
    background-image: url("../images/merch11.jpg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card12{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card12-img{
    background-image: url("../images/merch12.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card13{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card13-img{
    background-image: url("../images/merch13.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card14{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card14-img{
    background-image: url("../images/merch14.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card15{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card15-img{
    background-image: url("../images/merch15.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 15px;
    width: 200px;
    height: 220px;
}

.card16{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card16-img{
    background-image: url("../images/merch16.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card17{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card17-img{
    background-image: url("../images/merch17.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card18{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card18-img{
    background-image: url("../images/merch18.jpg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card19{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card19-img{
    background-image: url("../images/merch19.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 25px;
    width: 200px;
    height: 220px;
}

.card20{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card20-img{
    background-image: url("../images/merch20.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 30px;
    width: 200px;
    height: 220px;
}

.card21{
    border-radius: 5px;
    width: 250px;
    height: 400px;
    background-color: #fffdfd;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card21-img{
    background-image: url("../images/sangram6.webp");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 30px;
    width: 200px;
    height: 220px;
}

marquee{
    color: #c45500; 
    font-size: 0.85rem; 
    margin-top: 5px;
}

/* footer */

.signin-box{
    display: flex;
    align-items: center;
    width: 100vw;
    height: 350px;
    background-color: white;
}

.sign-in-innerbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 50%;
    background-color: white;
    border: 1px #222f3d solid;
    border-radius: 5px;
}

.signin-button{
    margin-top: 15px;
    margin-bottom: 5px;
}

.sign_in{
    background-color: rgb(255, 212, 0);
    width: 125px;
    height: 35px;
    padding: 0px 10px 0px 11px;
    border-radius: 15px;
    border: none;
}

.sign_in:hover{
    background-color: rgb(255, 204, 0);
    transform: translateY(-3px);
}

.signin-text{
    font-size: 0.75rem;
}

.signin-text a{
    color: #007185;
}

.signin-text a:hover{
    color: #01323b;
}

footer{
    margin-top: -20px;
}

.foot-panel1{
    background-color: #37475a;
    color:white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}

.foot-panel2{
    background-color: #222f3d;
    color: white;
    height: 400px;
    display: flex;
    justify-content: space-evenly;
}

.foot-panel2 ul{
    margin-top: 50px;
    list-style: none;
    line-height: 1.6;
}

.foot-panel2 a{
    color: #dddddd;
    font-size: 0.85rem;
    text-decoration: none;
}

.foot-panel2 a:hover{
    text-decoration: underline;
}

/* footpanel 3 */

.foot-panel3{
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#222f3d;
    border-top: 1px #37475a solid;
}

.foot-logo{
    height: 50px;
    width: 100px;
    background-image: url("../images/amazon_logo.png");
    background-size: cover;
    background-position: center;
    margin-right: 90px;
}

.tripanel{
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    align-items: center;
    font-size: 0.8rem;
    color: #cccccc;
}

.globe{
    padding: 10px;
    padding-right: 50px;
    border:2px #848688 solid;
    border-radius: 3px;
}

.dollar{
    display: inline;
    padding: 10px;
    padding-right: 50px;
    border:2px #848688 solid;
    border-radius: 3px;
}

.nation{
    padding: 10px;
    padding-right: 50px;
    border:2px #848688 solid;
    border-radius: 3px;
}

.foots:hover{
    border:2px #dde2e7 solid;
    transform: translateY(-2px);
}

/* foot panel 4 */

.foot-panel4{
    width: 100%;
    height: 360px;
    background-image: url("../images/footpanel4.png");
    background-size: contain;
}

/* foot panel 5 */

.foot-panel5{
    height: 120px;
    width: 100%;
    background-color: #131a22;
    justify-content: center;
    align-items: center;
}

.foot-panel5-content1{
    font-size: 0.5rem;
    display: flex;
    margin-left: 300px;
    margin-right: 300px;
    padding-top: 50px;
    justify-content: space-evenly;
    align-items: center;
}

.foot-panel5-content1 a{
    color: #cccccc;
    font-size: 0.8rem;
    text-decoration: none;
}

.foot-panel5-content1 a:hover{
    text-decoration: underline #cccccc;
}

.foot-panel5-content2{
    display: flex;
    font-size: 0.8rem;
    color: #cccccc;
    justify-content: center;
}

.fa-toggle-on{
    font-size: 16px;
    color: white;
    margin-left: 5px;
}