* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%);
  margin: 0;
  padding: 1.5rem;
  color: #1f2937;
  line-height: 1.5;
}

.container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 0.5rem;
}

h1 {
  margin: 0.2em 0;
  color: #0f766e;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

h2 {
  font-size: 1.2rem;
  color: #0f766e;
  margin-bottom: 0.8rem;
}

header p {
  margin: 0;
  color: #4b5563;
}

form {
  display: grid;
  gap: 1.5rem;
  grid-column: 1 / -1;
  order: 2;
}

section {
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  padding: 1.1rem;
  background: white;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

label {
  display: block;
  margin-bottom: 0.7rem;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="time"] {
  cursor: pointer;
  position: relative;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
}

input:invalid:not(:placeholder-shown):not(:focus),
select:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #dc2626;
  background-color: #fff5f5;
}

button {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  color: white;
  border: none;
  padding: 0.95rem 1rem;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.28);
}

button:hover {
  background: linear-gradient(135deg, #0d6b63 0%, #0b8278 100%);
}

small {
  color: #6b7280;
  font-size: 0.8rem;
}

.submit-area {
  margin-top: 0.2rem;
}

.bowl-image {
  grid-column: 1 / -1;
  order: 1;
  margin-bottom: 0.25rem;
}

.bowl-image img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  border: 1px solid #dbe4ef;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.bowl-image figcaption {
  text-align: center;
  color: #6b7280;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  section {
    padding: 0.8rem;
  }

  .bowl-image img {
    aspect-ratio: 16 / 8;
  }

}

/* Order confirmation */

.order-confirmation {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
  border: 1px solid #dbe4ef;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    line-height: 1.6;
}

.order-confirmation h1 {
  color: #0f766e;
    text-align: center;
    margin-bottom: 1.5rem;
}

.order-confirmation h2 {
  color: #0f766e;
    margin: 1.8rem 0 0.8rem;
    font-size: 1.4rem;
}

.order-confirmation p {
    margin: 0.6rem 0;
}

.order-confirmation strong {
    display: inline-block;
    width: 140px;
  color: #374151;
}

.order-confirmation hr {
    margin: 1.8rem 0;
    border: none;
    border-top: 1px solid #eee;
}

.total-price {
    font-size: 1.6rem;
    text-align: center;
    margin: 1.5rem 0;
  color: #0f766e;
}

.back-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
    color: white;
    text-decoration: none;
  border-radius: 8px;
    font-weight: 500;
}

.back-link:hover {
  background: linear-gradient(135deg, #0d6b63 0%, #0b8278 100%);
}
