body{
    color: #141414;
    font-family: 'Kumbh Sans', sans-serif;
}

.container{
    padding: 24px 96px;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0px;
}

.nav_left{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    gap: 24px;
}

.nav_right{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.cart{
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.user{
    width: 48px;
    height: 48px;
}

.user img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.content{
    display: flex;
}

.content_left{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 48px;
    width: 50%;
}

.main_img{
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;  
}

.main_img img{
    width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
}

.image_show{
    width: 100%;
    height: 90px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.image_show .img{
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.image_show .img:hover{
    border: 1px solid hsl(26, 100%, 55%);
}


.content_right{
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 24px 72px;
}

.company{
    color: hsl(26, 100%, 55%);
    font-size: 16px;
    font-weight: 700;
}

.title{
    font-weight: 700;
    font-size: 48px;
}

.desc{
    color: hsl(219, 9%, 45%);
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
}

.price_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;    
}

.current_price{
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.price{
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    padding: 12px 0;
}

.discount{
    color: hsl(26, 100%, 55%);
    font-size: 16px;
    background-color: hsl(25, 100%, 94%);
    padding: 4px;
    font-weight: 700;
    border-radius: 8px;
}

.prev_price{
    color: hsl(220, 14%, 75%);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.buy{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

.process{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(223, 64%, 98%);
    padding: 16px 48px;
    gap: 32px;
    border-radius: 12px;
    margin-top: 12px;
}

.number{
    font-weight: 700;
    font-size: 16px;
}

.add{
    background-color: hsl(26, 100%, 55%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 16px 56px;
    gap: 12px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0px 12px 16px hsla(26, 100%, 55%, 0.418);
}

.modal{
    display: none;
    position: fixed; 
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

.modal_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 48px 96px;
}

.top{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: relative;
}

.arrow{
    height: 24px;
    width: 24px;
    cursor: pointer;
    background-color: white;
    border-radius: 50%;
    object-fit: contain;
    padding: 12px;
}

.frame{
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 4px 8px 8px rgba(138, 138, 138, 0.493);
}

.slider{
    display: flex;
    transition: all 1s ease;
}

.image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.bottom img{
    width: 72px;
    height: 72px;
    border-radius: 12px;
}

.button{
    border-radius: 50%;
    border: 1px solid white;
    width: 15px;
    height: 15px;
    cursor: pointer;
}



/* The Close Button */
.close {
    position: absolute;
    right: 3rem;
    top: -25px;
    z-index: 2;
    width: 24px;
    height: 24px;
    
}

.close img{
    width: 100%;
    height: 100%;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}