/* ===== MODAL BACKDROP ===== */
.order-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 15px;
  }
  
  /* ===== MODAL BOX ===== */
  .order-modal-content {
    background: #fff;
    width: 100%;
    max-width: 460px;
    border-radius: 14px;
    padding: 25px 22px;
    position: relative;
    animation: modalFadeIn .35s ease;
  }
  
  /* ===== ANIMATION ===== */
  @keyframes modalFadeIn {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* ===== CLOSE BUTTON ===== */
  .close-modal {
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 22px;
    cursor: pointer;
    color: #444;
  }
  
  /* ===== TITLE ===== */
  .order-modal-content h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
  }
  
  /* ===== FORM ===== */
  .order-modal-content .form-group {
    margin-bottom: 14px;
  }
  
  .order-modal-content label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .order-modal-content input,
  .order-modal-content textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
  }
  
  .order-modal-content textarea {
    resize: none;
    height: 90px;
  }
  
  /* ===== BUTTON ===== */
  .order-modal-content button {
    margin-top: 10px;
    padding: 12px;
    font-size: 15px;
    border-radius: 10px;
  }
  
  /* ===== MOBILE FIRST ===== */
  @media (max-width: 480px) {
    .order-modal-content {
      padding: 20px 16px;
    }
  
    .order-modal-content h3 {
      font-size: 18px;
    }
  }
  