.iboover-business-form {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin: 24px 0 48px;
}

.iboover-business-form h2 {
  font-size: 26px;
  margin-bottom: 22px;
  color: #121212;
  font-weight: 700;
}
.iboover-business-form a:link  {
  color: #000;
  text-decoration: underline;
}
.iboover-business-form a:hover  {
  text-decoration: unset;
}
.iboover-form-message {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 18px;
  font-size: 14px;
}

.iboover-form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.iboover-form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.iboover-form label {
  display: block;
  font-weight: 600;
  margin: 16px 0 6px;
  color: #1d1d1d;
  font-size: 14px;
}

.iboover-form input,
.iboover-form select {
  width: 100%;
  padding: 6px 12px;
  border: 1px solid #00000086;
  border-radius: 16px;
  background: #ffffff;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.iboover-form input::placeholder {
  color: #a4a4a4;
}

.iboover-form input:focus,
.iboover-form select:focus {
  outline: none;
  border-color: #000;
  box-shadow: unset
}

.iboover-product-options {
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background: #fafafa;
  position: sticky;
  top: 120px;
  z-index: 10;
}

.iboover-product-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e6e6e6;
}

.iboover-product-item:last-child {
  border-bottom: none;
}

.iboover-product-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 260px;
}

.iboover-product-choice input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.iboover-product-choice label {
  margin: 0;
  font-weight: 600;
}

.iboover-product-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 180px;
}

.iboover-product-qty label {
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}

.iboover-product-qty input[type="number"] {
  max-width: 120px;
}

.iboover-product-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #5a5a5a;
}


.iboover-form-submit {
  margin-top: 26px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.iboover-form-submit:hover {
  background: rgba(7, 6, 6, 0.82);
}

.iboover-pickup-fields {
  display: none;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background: #fafafa;
}

.iboover-pickup-fields.is-visible {
  display: block;
}

.iboover-hint {
  font-weight: 400;
  color: #6b6b6b;
  font-size: 12px;
}

.iboover-alt-address {
  display: none;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background: #fafafa;
}

.iboover-alt-address.is-visible {
  display: block;
}

.iboover-order-type {
  margin-bottom: 16px;
}

/* Tabs styling */
.iboover-tabs-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.iboover-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 30px;
}

.iboover-tab {
  position: relative;
}

.iboover-tab input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.iboover-tab label {
  display: block;
  padding: 12px 30px;
  cursor: pointer;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  margin-bottom: 0;
  position: relative;
  bottom: -2px;
}

.iboover-tab:first-child label {
  border-right: none;
}

.iboover-tab label:hover {
  color: #000;
}

.iboover-tab input[type="radio"]:checked + label {
  background: #fff;
  color: #000;
  border-bottom: 3px solid #000;
  z-index: 1;
}

@media (max-width: 767px) {
  .iboover-business-form {
    padding: 22px 18px;
    margin-top: 0px;
  }

  .iboover-form-submit {
    width: 100%;
  }

  .iboover-product-options {
    position: static;
  }
}
