body {
  background: linear-gradient(to right, #2e2e2e, #1c1c1c);
  color: var(--text-color);
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

.order-container {
  max-width: 600px;
  margin: 5rem auto;
  background: rgba(255, 255, 255, 0.07);
  padding: 4rem;
  border-radius: 2.5rem;
  border: 2px solid var(--main-color);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.order-container h2 {
  text-align: center;
  font-size: 3.8rem;
  margin-bottom: 3rem;
  color: var(--main-color);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.order-form label {
  font-size: 1.7rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-form input,
.order-form select {
  padding: 1.2rem;
  font-size: 1.6rem;
  border-radius: 1rem;
  border: 1px solid var(--main-color);
  background: rgba(255,255,255,0.1);
  color: white;
  transition: all 0.3s ease;
}

.order-form select {
  background-color: #1f1f1f;
  color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='white' d='M2 0L0 2h4L2 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
}

.order-form input:focus,
.order-form select:focus {
  outline: none;
  border-color: white;
  background-color: rgba(255,255,255,0.2);
}

.order-form .btn {
  padding: 1.3rem;
  font-size: 1.6rem;
  background-color: var(--main-color);
  color: white;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 10px var(--main-color);
}

.order-form .btn:hover {
  background-color: white;
  color: var(--main-color);
  box-shadow: 0 0 15px white;
}
.menu-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 1.5rem;
  margin-bottom: 2.5rem;
  background-color: rgba(255, 255, 255, 0.05);
}
textarea {
  padding: 1.2rem;
  font-size: 1.6rem;
  border-radius: 1rem;
  border: 1px solid var(--main-color);
  background: rgba(255,255,255,0.1);
  color: white;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
}

textarea:focus {
  outline: none;
  border-color: white;
  background-color: rgba(255,255,255,0.2);
}


@media (max-width: 768px) {
  .order-container {
    margin: 2rem;
    padding: 2rem;
  }

  .order-container h2 {
    font-size: 2.8rem;
  }

  .order-form label,
  .order-form input,
  .order-form select,
  .order-form .btn {
    font-size: 1.4rem;
  }
}
