.order-form-box {
    background: white;
    max-width: 600px;
  margin: auto;
  }
  
  .order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .order-form label {
    font-weight: 500;
  }
  
  .order-form input,
  .order-form textarea,
  .order-form button {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
  }

  .order-form textarea {
    min-height: 80px;
    resize: vertical;
  }
  
  .order-form button {
    background: #181f2d;
    color: white;
    cursor: pointer;
    border: none;
  }
  
  .order-form button:hover {
    background: #222;
  }

  .row {
    display: flex;
    flex-direction: row;
    margin-bottom: 0.5rem;
  }

.row > *:nth-child(1) { flex: 0 0 35%; }  /* Label */
.row > *:nth-child(2) { flex: 0 0 20%; }  /* Price */
.row > *:nth-child(3) { flex: 0 0 10%; }  /* Minus */
.row > *:nth-child(4) { flex: 0 0 15%; }  /* Input */
.row > *:nth-child(5) { flex: 0 0 10%; }  /* Plus */

.delivery-toggle{
  border:0;
  display:flex;
  flex-direction: column;
  gap:.8rem;
  margin:1.2rem 0;
}

.delivery-toggle legend{
  font-weight:600;
  margin-right:.8rem;
}

.delivery-toggle input{
  display:none;
}

.delivery-toggle .toggle{
  padding:.6rem 1.2rem;
  border:2px solid #181f2d;
  border-radius:.4rem;
  cursor:pointer;
  user-select:none;
}

.delivery-toggle input:checked + .toggle{
  background:#181f2d;
  color:#fff;
}

.delivery-toggle input{
  position:absolute;   /* flytt ut av synsfeltet */
  opacity:0;           /* usynlig, men fortsatt fokus- og tastbar */
  width:0;
  height:0;
}

.toggle{
  max-width: 8rem;
}

.bold{
  font-weight:bold;  
}

.frame{
  padding:.6rem 1.2rem;
  border:2px solid #181f2d;
  border-radius:.4rem;
}

.order-title {
  display: flex;
  justify-content: center;
  align-items: center;
}


@media (max-width: 768px){
  .order-form-box{ padding: 0;}
  .order-form input,
  .order-form textarea,
  .order-form button {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
  }
}
