@import url('https://fonts.googleapis.com/css2?family=Faster+One&family=Protest+Revolution&display=swap');

 .body{
    background-color:black;
 }

.container {
    max-width: 90%;
    margin: 0 auto;
    background: white;
    padding: 1%;
}

.title-1{
    font-family: "Faster One", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    text-align: center;
}

#content{
    text-align: center;
    border-radius: 95px;
    background: #e0e0e0;
    box-shadow: inset 35px 35px 69px #868686,
            inset -35px -35px 69px #ffffff;
}

#span-1{
    font-family: "Faster One", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    text-align: center;
}

#content p {
    font-family: "Protest Revolution", sans-serif;
    font-weight: 400;
    font-style: normal; 
    font-size: 30px;    
}

.d{
    width: 800px;
}

.card{
    border-radius: 91px;
background: #acbfd7;
box-shadow: inset 32px 32px 64px #7e8b9d,
            inset -32px -32px 64px #daf3ff;
}

footer{
    font-family: "Faster One", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    text-align: center;

}

.photos{
    width: 100px;
}

.input-order{
    width: 40px;
   box-sizing: border-box;
   border: 2px solid #ccc;
   border-radius: 4px;
   font-size: 16px;
}

.input-order-1{
    width: 200px;
   box-sizing: border-box;
   border: 2px solid #ccc;
   border-radius: 4px;
   font-size: 16px;
}

.i{
    width: 70%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
  }

  .cart-box {
    max-height: 70vh;
    overflow-y: auto;
}

/* Animation for cart updates */
@keyframes cartUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cart-update {
    animation: cartUpdate 0.5s ease;
}