/* Minimal romantic styling; extend as needed */
.valentines-booking-form,
.vb-menu-selection {
  max-width: 720px;
  margin: 20px auto;
  background: #fff7fb;
  border: 1px solid #f3d7e8;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(255, 0, 122, 0.08);
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.valentines-booking-form h3,
.vb-menu-selection h4 { color: #b31255; margin-top: 0; }
.valentines-booking-form label,
.vb-menu-selection label { display: block; margin-bottom: 12px; font-weight: 600; color: #5a2c41; }
.valentines-booking-form input,
.valentines-booking-form select,
.valentines-booking-form textarea,
.vb-menu-selection input,
.vb-menu-selection select,
.vb-menu-selection textarea {
  width: 100%;
  border: 1px solid #e6c9d9;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}
.vb-section { margin-bottom: 20px; }
.vb-guest { border: 1px dashed #e6c9d9; border-radius: 10px; padding: 12px; margin-bottom: 14px; background: #fff; }
.vb-guest-section { border: 1px solid #f0e1ea; border-radius: 10px; padding: 10px; margin-bottom: 10px; background: #fff; }
.vb-guest-section h5 { margin: 0 0 8px; color: #b31255; font-size: 14px; }
.vb-guest-info,
.vb-guest-meals { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 10px; }
.vb-actions { text-align: right; }
.vb-submit {
  background: linear-gradient(135deg, #ff5f9f, #b31255);
  color: #fff;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(179, 18, 85, 0.25);
}
.vb-submit:hover { opacity: 0.94; }
.vb-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 12px; }
.vb-card { background:#fff; border:1px solid #eee; padding:12px; border-radius:8px; }
.vb-kitchen-totals h3 { margin-bottom: 6px; }
.vb-addons { margin-top: 10px; padding: 10px; border: 1px solid #f3d7e8; border-radius: 10px; background: #fff9fc; }
.vb-addons-title { font-weight: 700; color: #b31255; margin-bottom: 8px; }
.vb-addon { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; border: 1px solid #f0e1ea; background: #fff; margin-bottom: 10px; cursor: pointer; }
.vb-addon input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #b31255;
}
.vb-addon-main { display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #5a2c41; width: 100%; }
.vb-addon-price { color: #b31255; font-weight: 700; margin-left: 10px; }
.vb-addon-note { display: block; margin-left: 2px; color: #8a6b7c; font-size: 12px; margin-top: 4px; }
@media print {
  .wrap, .vb-kitchen-totals, table { background: #fff; }
  button { display: none; }
}

