.variations_form  .woocommerce-select,
article .added_to_cart.wc-forward {
  display: none;
}

.vosc-add-to-cart-wrapper,
.vosc-variation-options {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.vosc-add-to-cart-wrapper {
  display: grid;
  gap: 0.80rem;
}

.vosc-variation-attribute-label {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.vosc-variation-options li {
  margin: 0;
}

.vosc-variation-options {
  display: flex;
  gap: 0.5rem;
}

.vosc-variation-option {
  padding: 0.3rem 1.2rem;
  border: 0.1rem solid var(--color-alt-content-primary);
  border-radius: 20rem;
  font-size: 0.95rem;
  cursor: pointer;
  background-color: #fff;
  color: var(--color-alt-content-heading);
}

.vosc-variation-option.selected {
  background-color: var(--color-alt-content-bg);
}

article .single_add_to_cart_button.button {
  margin-top: 1.5rem;
  display: grid;
  place-items: center;
  width: 100%;
}

.vosc-out-of-stocks.stock.out-of-stock,
.vosc-product-is-out-of-stocks {
  margin: 0.7rem 0;
  color: red;
  font-weight: 600;
}

.vosc-variation-price,
.vosc-price {
  margin: 1.2rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-alt-content-heading);
}

.spinner {
  display: block;
  border: 0.1rem solid #fff; /* Light grey */
  border-top: 0.1rem #0ea5e9; /* Blue */
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
  animation: spin 500ms linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.vosc-view-product-wrapper {
  margin-top: 1rem;
}

.vosc-view-product {
  display: grid;
  place-items: center;
  text-align: center;
  background-color: var(--color-content-bg-alt-grad);
  padding: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.90rem;
  min-height: 3rem;
  color: var(--color-alt-content-heading);
  border-radius: 0.3rem;
  border: 1px solid #e1d9d9;
  transition: all ease 200ms;
}

.vosc-view-product:hover {
  background-color: var(--color-alt-content-bg);
}