body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #ffecd2, #fcb69f);
    color: #333;
  }

  .total-display {
    font-size: 1.2rem;
    text-align: right;
    margin: 10px 0 20px;
    color: #2c3e50;
  }
  
  .menu-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
  }
  
  .animated-title {
    text-align: center;
    font-family: 'Pacifico', cursive;
    color: #e74c3c;
    font-size: 2.5rem;
    margin-bottom: 30px;
    animation: bounceIn 1s ease;
  }
  
  .menu-section {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 15px;
    background: #f9f9f9;
    box-shadow: inset 0 0 10px #ddd;
  }
  
  .menu-section h2 {
    font-size: 1.7rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    animation: slideIn 0.8s ease;
  }
  
  .menu-section ul {
    list-style: none;
    padding-left: 0;
  }
  
  .menu-section li {
    font-size: 1.1rem;
    margin: 10px 0;
    justify-content: space-between;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 5px;
  }
  
  input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 10px;
  }
  
  #orderBtn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #orderBtn:hover {
    background-color: #1e8449;
  }
  
  .thankyou-message {
    display: none;
    text-align: center;
    margin-top: 30px;
    animation: fadeIn 1s ease-in-out;
  }
  
  .thankyou-message.show {
    display: block;
  }
  
  .thankyou-message h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: #27ae60;
    animation: pop 1s ease;
  }
  
  .thankyou-message p {
    font-size: 1.2rem;
    color: #555;
  }
  
  #backBtn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2980b9;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #backBtn:hover {
    background-color: #1c6690;
  }
  
  .footer {
    text-align: center;
    margin-top: 40px;
    background-color: #2c3e50;
    padding: 20px;
    border-top: 5px solid #e74c3c;
  }
  
  .footer-text {
    color: #f1c40f;
    font-size: 1.4rem;
    animation: blink 1s infinite alternate;
    font-family: 'Pacifico', cursive;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  @keyframes slideIn {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes pop {
    0% { transform: scale(0.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  @keyframes blink {
    from { opacity: 0.5; }
    to { opacity: 1; }
  }
  
  /* Left & Right Slide */
  .left-slide { animation: slideInLeft 0.8s ease; }
  .right-slide { animation: slideInRight 0.8s ease; }
  
  @keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  