* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  flex-direction: column;
}

.menu {
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  align-items: center;
  height: 85px;
}

.left-side.menu {
  display: flex;
}

nav ul {
  display: flex;
  padding: 50px;
}

nav ul li {
  margin-left: 30px;
  font-size: 25px;
  list-style-type: none;
}

nav ul li a {
  text-decoration: none;
  color:hsl(219, 9%, 45%)
}

.right-side-menu {
  display: flex;
  align-items: center;
}

.line {
  height: 1px;
  background-color: #ddd;
  width: 90%;
  align-self: center;
}

.logo {
  display: flex;
  width: 120px;
  height: 120px;
  border-radius: 10px;
}

.container img{
    justify-content: center;
}

.container{
    margin-top: 15px;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    height: calc(100vh - 85px);
    gap: 100px;
}

.left-side{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.items{
  align-items: flex-end;
}

.select-image{
    max-width: 400px;
    border-radius: 10px;
}

.select-image img{
    width: 100%;
}

.images{
    display: flex;
    width: 100%;
    max-width: 400px;
    gap: 10px;
}

.images img{
    object-fit: cover; 
    width: 100%;
    border-radius: 5px;
}

.right-side{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.right-side h6{
    color:dimgrey;
}

.right-side p{
    color:hsl(219, 9%, 45%)
}

.prices{
    display: flex;
    flex-direction: column;
}

.content{
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price{
    font-size: 16px;
    font-weight: 700;
}

.off{
    font-size: 12px;
    color: #ccc;
}

.options{
    display: flex;
    gap: 20px;
}

.amount{
    display: flex;
    align-items: center;
    gap: 30px;
    background-color:hsl(223, 64%, 98%) ;
    padding: 10px 20px;
    width: fit-content;
    border-radius: 10px;
}

.amount span{
    font-weight: 700;
    font-size: 12px;
}

.minus, .plus{
    cursor: pointer;
}

.button{
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: hsl(193, 100%, 55%);
    padding: 10px 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
}

.button img{
    width: 30px;
}