*{
    margin: 0;
    padding: 0;
}
nav{
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
nav figure img{
    max-height: 50px;
}
ul{
    list-style: none;
    display: flex;
    flex-direction: row;
}
ul li a{
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    color: #000000;
    font-family: "Luckiest Guy", cursive;
    text-decoration: none;
}
ul li a.small-text{
    font-size: 12px;
}




.navbar-right-container{
    display: flex;
    align-items: center;
    gap: 16px;
}
.navbar-small-dropdown{
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    cursor: pointer;
}
.navbar-small-dropdown .selected-item,
.navbar-small-dropdown i{
    color: #2A2A2A;
    font-size: 12px;
}
.navbar-small-dropdown .selected-item{
    font-family: "Luckiest Guy", cursive;
    user-select: none;
}
.navbar-small-dropdown i{
    padding-bottom: 4px;
}
.navbar-small-dropdown i:nth-child(3){
    display: none;
}
.navbar-small-dropdown:hover > i:nth-child(2){
    display: none;
}
.navbar-small-dropdown:hover > i:nth-child(3){
    display: flex;
}
.navbar-small-dropdown .dropdown-options-container{
    background-color: white;
    min-width: 100%;
    padding: 4px 12px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform: translateY(100%);
    overflow: hidden;
}
.navbar-small-dropdown .dropdown-options-container .dropdown-option{
    width: 100%;
    display: none;
    cursor: pointer;
}
.navbar-small-dropdown:hover .dropdown-options-container .dropdown-option{
    display: flex;
}
.navbar-small-dropdown .dropdown-options-container .dropdown-option span{
    background-color: transparent;
    width: 100%;
    padding: 8px 0;
    padding-top: 12px;
    color: #2A2A2A;
    font-family: "Luckiest Guy", cursive;
    font-size: 12px;
    text-wrap: nowrap;
}
.navbar-small-dropdown .dropdown-options-container .dropdown-option:hover span{
    color: #3d85f0;
}
.navbar-buttons-container{
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}
.navbar-button{
    position: relative;
}
.navbar-button i{
    color: #2A2A2A;
    font-size: 20px;
}
.navbar-button:hover i{
    color: #3d85f0;
}
.navbar-button .counter{
    background-color: #F0D13D;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -8px;
    right: -6px;
    border-radius: 50%;
}
.navbar-button .counter span{
    padding-top: 4px;
    color: #2A2A2A;
    font-family: "Luckiest Guy", cursive;
    font-size: 12px;
}
.banner{
    background-image: url('https://m.media-amazon.com/images/S/aplus-media/sc/25373615-7046-4e7d-b21d-07f7e79366b7.__CR0,0,1464,600_PT0_SX1464_V1___.jpg');
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}
.banner-overlay{
    background: black;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    filter: blur(10px);
}




.products-list{
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 30px;
}
.product-card{
    display: flex;
    flex-direction: column;
}
.product-image-container{
    display: flex;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.product-image{
    width: 200px;
    aspect-ratio: 1/1;
}
.chip{
    background-color: #CECECE;
    padding: 4px 8px;
    color: #777777;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 12px;
}
.discount{
    background-color: #1694E9;
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: #FFFFFF;
}
.product-description-container{
    width: 200px;
    display: flex;
    flex-direction: column;
}
.product-details{
    width: 100%;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.product-name{
    color: #000000;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;;
}
.product-value{
    display: flex;
    flex-direction: row;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}
.current-value{
    color: #000000;
    font-weight: 400;
}
.previous-value{
    color: #777777;
    font-weight: 300;
    text-decoration: line-through;
}
.product-buttons-container{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-button{
    background: transparent;
    padding: 8px;
    color: #3386f1;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: solid 1px #3386f1;
    border-radius: 8px;
    cursor: pointer;
    transition: .2s;
}
.product-button:hover{
    background: #3386f1;
    padding: 8px;
    color: #FFFFFF;
    transition: .2s;
}
.add-to-cart{
    background: #3386f1;
    color: #FFFFFF;
}
.add-to-cart:hover{
    background: #2865b5;
}







.images-preview-container{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.images-preview-column{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.images-preview-column figure{
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background: orange;
}
.images-preview-container > figure{
    width: 460px;
    height: 460px;
    border-radius: 12px;
    background: orange;
}
#image-preview-1,
#image-preview-2,
#image-preview-3,
#image-preview-4{
    width: 100px;
    height: 100px;
}
#image-preview-5{
    width: 460px;
    height: 460px;
}