/* FORCE Cover background video autoplay on mobile */
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Remove iOS / mobile play button */
.hero-video video::-webkit-media-controls {
  display: none !important;
}

.hero-video video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* Prevent Safari from hijacking the video */
.hero-video video {
  -webkit-transform: translateZ(0);
}
/* Make Quote button match Woo button styling */
.single-product a.yith-ywraq-add-to-quote,
.single-product a.add-request-quote-button,
.single-product a.request-quote-button,
.single-product a.ywraq-link,
.single-product .ywraq-quote-button a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  /* mimic Woo button feel */
  padding: 0.9em 1.6em !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;

  /* these usually match your theme’s button styles */
  border-radius: 0 !important;
  border: 1px solid currentColor !important;
}

/* Make it sit nicely next to Add to Cart */
.single-product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Optional: make Quote a “secondary” button */
.single-product a.yith-ywraq-add-to-quote,
.single-product a.add-request-quote-button,
.single-product a.request-quote-button,
.single-product a.ywraq-link,
.single-product .ywraq-quote-button a {
  background: transparent !important;
}

/* Optional hover */
.single-product a.yith-ywraq-add-to-quote:hover,
.single-product a.add-request-quote-button:hover,
.single-product a.request-quote-button:hover,
.single-product a.ywraq-link:hover,
.single-product .ywraq-quote-button a:hover {
  filter: brightness(0.95);
}
/* Catch text wrapped inside the submit element */
footer form button[type="submit"] *,
footer form [class*="submit"] *,
footer form [class*="button"] * {
  color: #c8102e !important;
  fill: #c8102e !important;
  -webkit-text-fill-color: #c8102e !important;
}
/* Mobile Hero Section Responsive Gutter Padding */
@media (max-width: 767px) {
  .pioneer-hero {
    padding-left: clamp(24px, 7vw, 42px) !important;
    padding-right: clamp(24px, 7vw, 42px) !important;
  }
}