/* Label above buttons */
.wvb-label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 600;
}

/* Buttons container */
.wvb-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

/* Button style */
.wvb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid #ccc;
  background: #fff;
color: rgba(var(--pep-dark), 1);
  border-radius: 3px;
  cursor: pointer;
  user-select: none;
  line-height: 1;
  font-size: 14px;
font-weight: 600;
  transition: transform 0.06s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.wvb-btn:hover {
  border-color: rgba(var(--pep-main),1);
}

/* Selected state */
.wvb-btn.is-active {
	border-color: rgba(var(--pep-main),1);
	background: rgba(var(--pep-main),1);
	color:#fff;
	font-weight: 600;
}

/* Disabled state */
.wvb-btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Keep Woo selects for logic, hide visually */
.variations select.wvb-select--hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Hide Woo's original left-column labels (we render our own label above buttons) */
.woocommerce div.product form.cart .variations th.label {
  display: none;
}

/* Make the value column full width */
.woocommerce div.product form.cart .variations td.value {
  padding-left: 0;
}