/* Selector used to rmove lowercase rule from all defined headings */
h2, h3, h4 {
  text-transform: none !important;
}

.text--white {
  color: white !important;
}


/* Custom button settings */
.vlt-custom-button-group {
  display: flex;
  justify-content: center;
  gap: 28px; /* increased from 20px */
  margin-top: 30px;
  flex-wrap: wrap;
}

.vlt-btn--custom {
  background-color: #EF3466;
  color: #ffffff;
  padding: 14px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.vlt-btn--custom:hover {
  background-color: #00C0C7;
  color: #ffffff;
}

/* Find it for me contact form radio butons */
.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wpcf7-form-control.wpcf7-radio span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

/* Footer widget column1 split into two */
.footer-links-split {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  color: white;
  flex: 1 1 150px;
  margin: 0;
}

/* Optional: improve spacing on mobile */
@media (max-width: 600px) {
  .footer-links-split {
    flex-direction: column;
  }
}


/* Hide product social share */
.vlt-social-share {
    display: none !important;
}


/* Match theme's vlt-btn styling for WooCommerce "Proceed to Checkout" block */
.wp-block-woocommerce-proceed-to-checkout-block a.wc-block-cart__submit-button {
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  background-color: #000; /* Change to your primary button color */
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.wp-block-woocommerce-proceed-to-checkout-block a.wc-block-cart__submit-button:hover {
  background-color: #333; /* Or theme's hover color */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}