/* === WC Direct Buy & Renew – layout helpers ================= */

/* Keep Add-to-Cart and Buy Now / Renew Now side-by-side */
form.cart .single_add_to_cart_button,
form.cart .wcbr-buy-now {
	display:inline-block;   /* prevent line-break */
	vertical-align:middle;
}

/* Space between quantity box and buttons */
form.cart .quantity {
	margin-right:8px;
}

.wcbr-buy-now,
.wcbr-renew-now,
.single_add_to_cart_button {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 6px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s ease;
}
.wcbr-buy-now,
.wcbr-renew-now,
.single_add_to_cart_button {
  margin-top: 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.wcbr-buy-now:focus,
.wcbr-renew-now:focus,
.single_add_to_cart_button:focus {
  outline: none;
  box-shadow: none;
}
.wcbr-buy-now,
.wcbr-renew-now {
  line-height: 20px;
  height: 40px;
}
