/* Custom Style */
:root {
  --wp--custom--colors--primary: #ffcb00;
  --wp--custom--colors--primary-hover: #ffe16a;
  --wp--custom--colors--site-foreground: #000000;
  --wp--preset--color--base: #ffffff;
  --plyr-color-main: var(--wp--custom--colors--primary);
  --wp--custom--colors--orange: #e77b29;
}

a:hover {
  color: #444;
}

/* Header Fixes */
/* removes mobile button that is not neeeded (used in the parent theme) */
.c-site-header__menu-button-container {
  display: none !important;
}

/* Branding (logo) */
@media (max-width: 1023px) {
  .c-site-header__branding {
    margin-top: -4px;
  }
}

/* Language Switcher */
.c-site-header__cta .flag-container li .active-flag .selection-arrow {
  margin-left: 12px;
}
.c-site-header__cta .flag-container li .active-flag .selection-arrow b {
  border-top-color: var(--wp--custom--colors--site-foreground);
}

@media (max-width: 1023px) {
  .c-site-header__cta .flag-container li .active-flag img {
    margin-right: 6px;
    width: 36px;
  }
  .c-site-header__cta .flag-container li .active-flag {
    font-size: 1rem;
  }
}

@media (max-width: 1023px) {
  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box,
  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
  #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    width: 32px;
  }
}

/* Search Button */
.c-site-header__cta .button.search {
  background-color: transparent;
  padding-inline: 12px;
  padding-block: 10px;
  color: var(--wp--custom--colors--site-foreground);
}

@media (max-width: 1023px) {
  .c-site-header__cta .button.search {
    margin-right: -6px;
  }
}

/* Header: Caret Icon */
@media (min-width: 1024px) {
  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
    font-size: 10px;
    margin-left: 4px;
    position: relative;
    top: -1px;
  }
}

/* Single Product */
.woocommerce .type-product {
}

@media (max-width: 1023px) {
  html body.single-product .product.type-product {
    grid-template-areas:
    "gallery gallery"
    "summary summary"
    "tabs tabs"
    "related related" !important;
  }
}

/* WC: Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
  position: relative;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0;
  padding: var(--wp--custom--spacings--s) 0;
  text-transform: uppercase;
  color: var(--wp--preset--color--contrast);
  margin-bottom: var(--wp--custom--spacings--l);
}
.woocommerce .woocommerce-breadcrumb::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: var(--wp--custom--colors--black-rgba-0125);
  width: 100vw;
  left: calc(-50vw + 50%);
}
.woocommerce .woocommerce-breadcrumb a {
  color: var(--wp--preset--color--contrast);
  text-decoration: none;
}
.woocommerce .woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}

/* WC: Product Title */
.woocommerce div.product .entry-summary .product_title {
  text-transform: none;
  margin-bottom: 0;
}

/* WC: Product Gallery */
.woocommerce-product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--spacings--l);
}
@media (min-width: 1024px) {
  .woocommerce-product-gallery {
    grid-template-columns: 108px 1fr;
    gap: var(--wp--custom--spacings--l);
  }
}

.woocommerce-product-gallery .flex-viewport {
    
}
@media (min-width: 1024px) {
  .woocommerce-product-gallery .flex-viewport {
    order: 2;
  }
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  gap: var(--wp--custom--spacings--xs);
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0;
}
@media (min-width: 1024px) {
  .woocommerce div.product div.images .flex-control-thumbs {
    order: 1;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto !important;
    flex-wrap: nowrap;
    max-height: 500px !important;
  }
}

.woocommerce div.product div.images .flex-control-thumbs li {
  margin: 0 !important;
  flex-basis: calc((100% - (var(--wp--custom--spacings--xs) * 3)) / 4);
}
.woocommerce div.product div.images .flex-control-thumbs li img {
  width: 100%;
  height: auto;
  margin: 0;
}

@media (min-width: 1024px) {
  .woocommerce div.product div.images .flex-control-thumbs li {
    width: 100% !important;
  }
}

/* Vertical thumbs wrapper */
.woocommerce div.product div.images .flex-control-thumbs {
  max-height: 400px;
  overflow: hidden;
  margin-right: 15px; /* space from main image */
}

.woocommerce div.product div.images .flex-control-thumbs .flex-direction-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.woocommerce div.product div.images .flex-control-thumbs .flex-direction-nav a {
  text-align: center;
  font-size: 18px;
  padding: 5px;
  cursor: pointer;
}

/* WC: Warranty Icon in Gallery */
.woocommerce-product-gallery {
  position: relative;
}
.ws-warranty-icon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100px;
  height: auto;
}

/* WC: Product Price */
.woocommerce div.product .entry-summary .price {
  margin-block: 0;
}
.woocommerce div.product .entry-summary .price .woocommerce-Price-amount {
  display: inline-block;
  font-size: var(--wp--preset--font-size--base);
  font-weight: 800;
  line-height: var(--wp--custom--typography--headings--h-1-line-height-mobile);
  margin-block: 0;
  color: var(--wp--custom--colors--black);
}

@media (min-width: 1024px) {
  .woocommerce div.product .entry-summary .price .woocommerce-Price-amount {
    font-size: clamp(2.1rem, 1.9154rem + 0.8205vw, 2.5rem);
    line-height: var(--wp--custom--typography--headings--h-1-line-height-desktop);
  }
}

/* WC: RRP */
.woocommerce div.product .entry-summary .price .rrp {
  margin-left: 0.3em;
  color: var(--wp--custom--colors--black);
  font-weight: 700;
  font-size: var(--wp--preset--font-size--xx-small);
}

@media (min-width: 1024px) {
  .woocommerce div.product .entry-summary .price .rrp {
    font-size: clamp(1rem, 0.9231rem + 0.4103vw, 1.25rem);
  }
}

/* WC: Price and Promotion Wrapper */
.ws-price-promotion-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--wp--custom--spacings--s);
  margin-block: var(--wp--custom--spacings--s);
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .ws-price-promotion-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--wp--custom--spacings--s);
  }
}

/* Reset price margin when inside wrapper */
.ws-price-promotion-wrapper .price {
  margin-block: 0;
  flex-shrink: 0;
}

/* WC: Product Promotion */
.ws-product-promotions-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--wp--custom--spacings--s);
  align-items: center;
}

@media (max-width: 767px) {
  .ws-product-promotions-wrapper {
    gap: var(--wp--custom--spacings--xs);
  }
}

.ws-product-promotion {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ws-product-promotion .ws-promotion-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.ws-product-promotion .ws-promotion-link:hover {
  opacity: 0.8;
}

.ws-product-promotion .ws-promotion-image {
  max-width: 120px;
  height: auto;
}

@media (max-width: 767px) {
  .ws-product-promotion .ws-promotion-image {
    max-width: 100px;
  }
}

@media (min-width: 768px) {
  .ws-product-promotion .ws-promotion-image {
    max-width: 140px;
  }
}

/* WC: SKU */
.ws-product-sku {
  margin-block: var(--wp--custom--spacings--s);
  font-size: var(--wp--preset--font-size--x-small);
  line-height: 1.29;
}

/* WC: Features (Description) */
.woocommerce-product-details__short-description {
  margin-top: 1.25rem;
}

/* WC: Features List Fixes */
.woocommerce-product-details__short-description ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.5;
}
.woocommerce-product-details__short-description ul li {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  margin-bottom: var(--wp--custom--spacings--s);
  padding-left: 0;
}
.woocommerce-product-details__short-description ul li::before {
  align-items: center;
  background-color: var(--wp--custom--colors--primary);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSI4IiBmaWxsPSJub25lIj48cGF0aCBmaWxsPSIjMDAwIiBkPSJNMTEuMzU0LjI0M2EuNzcuNzcgMCAwIDEgMCAxLjEyNGwtNi4zOSA2LjM5YS43Ny43NyAwIDAgMS0xLjEyMyAwTC42NDYgNC41NjJhLjc3Ljc3IDAgMCAxIDAtMS4xMjQuNzcuNzcgMCAwIDEgMS4xMjMgMEw0LjQxNSA2LjA2IDEwLjIzLjI0M2EuNzcuNzcgMCAwIDEgMS4xMjMgMFoiLz48L3N2Zz4=);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 60%;
  border-radius: 50%;
  content: "";
  display: flex;
  justify-content: center;
  margin-right: var(--wp--custom--spacings--xs);
  padding: var(--wp--custom--spacings--xs);
}

/* WC: Tabs */
.woocommerce div.product .woocommerce-tabs .panel {
    display: block !important;
    visibility: visible !important;
    scroll-margin-top: 82px;
    padding-top: var(--wp--custom--spacings--xl);
}

.admin-bar.woocommerce div.product .woocommerce-tabs .panel {
  scroll-margin-top: 114px;
}

.wc-tabs-wrapper:has(.wc-tabs:not(:in-view)) {
  background-color: red !important; 
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  position: sticky;
  top: 82px;
  z-index: 2;
  padding: 0 var(--wp--custom--spacings--s);
  margin: 0;
  background-color: var(--wp--custom--colors--site-foreground);
  border: none !important;
  display: none;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-around;
  gap: var(--wp--custom--spacings--s);
}

.woocommerce div.product .woocommerce-tabs ul.tabs.is-stuck {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}


@media (min-width: 1024px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
  }
  .admin-bar.woocommerce div.product .woocommerce-tabs ul.tabs {
    top: 114px;
  }
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  height: 100%;
  border-bottom: none !important;
  display: inline-block;
  position: relative;
  color: var(--wp--preset--color--base) !important;
  margin-block: var(--wp--custom--spacings--s) !important;
  margin-inline: var(--wp--custom--spacings--s);
  padding: 0 !important;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a::before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  bottom: -2px;
  inset-inline: 0;
  background-color: var(--wp--custom--colors--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: bottom right;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* WC: Tab Panels */
.woocommerce-Tabs-panel {

}
.woocommerce-Tabs-panel h2 {
  margin-bottom: 0.5em;
}


/* WC: Split Tabs (Features & Details, Specifications & Material Recommendations) */
.ws-tab-split {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: var(--wp--custom--spacings--m);
  row-gap: 40px;
}

@media (min-width: 782px) {
  .ws-tab-split {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* WC: Table inside Tabs */
.ws-tab-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 0;
  table-layout: fixed;
}
.ws-tab-table tr th,
.ws-tab-table tr td {
  padding: 0.5em;
  border-style: solid;
  font-size: var(--wp--preset--font-size--x-small);
  line-height: 1.5;
}

@media (min-width: 782px) {
  .ws-tab-table tr th,
  .ws-tab-table tr td {
    font-size: 1.125rem;
  }
}

.ws-tab-table tr th {
  border-width: 1px;
}
.ws-tab-table tr td {
  border-width: 2px;
  border-color: var(--wp--custom--colors--gray-200);
  vertical-align: middle !important;
}
.ws-tab-table thead {
  background-color: var(--wp--custom--colors--site-foreground);
  border: none;
}
.ws-tab-table thead tr th {
  background-color: var(--wp--custom--colors--site-foreground);
  color: var(--wp--preset--color--base);
  border-top: none;
  border-color: var(--wp--custom--colors--gray-200);
}

.ws-table__cell--has-icon {

}
.ws-table__cell--has-icon::before {
  content: "";
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  margin-right: var(--wp--custom--spacings--xxs);
  height: var(--wp--custom--spacings--m);
  width: var(--wp--custom--spacings--m);
}

@media (min-width: 782px) {
  .ws-table__cell--has-icon::before {
    height: var(--wp--custom--spacings--l);
    width: var(--wp--custom--spacings--l);
    margin-right: var(--wp--custom--spacings--xs);
  }
}

.ws-table__cell--has-icon-acceptable::before {
  background-color: var(--wp--custom--colors--yellow);
  content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSI4IiBmaWxsPSJub25lIj48cGF0aCBmaWxsPSIjMDAwIiBkPSJNMTEuMzU0LjI0M2EuNzcuNzcgMCAwIDEgMCAxLjEyNGwtNi4zOSA2LjM5YS43Ny43NyAwIDAgMS0xLjEyMyAwTC42NDYgNC41NjJhLjc3Ljc3IDAgMCAxIDAtMS4xMjQuNzcuNzcgMCAwIDEgMS4xMjMgMEw0LjQxNSA2LjA2IDEwLjIzLjI0M2EuNzcuNzcgMCAwIDEgMS4xMjMgMFoiLz48L3N2Zz4=);
}
.ws-table__cell--has-icon-ideal::before {
  background-color: var(--wp--custom--colors--green);
  content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSI4IiBmaWxsPSJub25lIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTEuMzU0LjI0M2EuNzcuNzcgMCAwIDEgMCAxLjEyNGwtNi4zOSA2LjM5YS43Ny43NyAwIDAgMS0xLjEyMyAwTC42NDYgNC41NjJhLjc3Ljc3IDAgMCAxIDAtMS4xMjQuNzcuNzcgMCAwIDEgMS4xMjMgMEw0LjQxNSA2LjA2IDEwLjIzLjI0M2EuNzcuNzcgMCAwIDEgMS4xMjMgMFoiLz48L3N2Zz4=);
}
.ws-table__cell--has-icon-not-possible::before {
  content: "X";
  background-color: var(--wp--custom--colors--red);
  color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='14' viewBox='0 0 24 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.19471 1.2116C6.31954 1.0871 6.48876 1.01717 6.66519 1.01717C6.84162 1.01717 7.01084 1.0871 7.13567 1.2116L11.9914 6.06038L16.8471 1.2116C16.9081 1.14628 16.9816 1.09389 17.0633 1.05755C17.1449 1.02122 17.2331 1.00168 17.3225 1.0001C17.4119 0.998528 17.5007 1.01495 17.5836 1.04839C17.6665 1.08182 17.7418 1.13159 17.805 1.19472C17.8682 1.25785 17.9181 1.33305 17.9515 1.41583C17.985 1.49862 18.0015 1.58729 17.9999 1.67655C17.9983 1.76582 17.9788 1.85385 17.9424 1.9354C17.906 2.01696 17.8535 2.09035 17.7881 2.15122L12.9324 7L17.7881 11.8488C17.8535 11.9096 17.906 11.983 17.9424 12.0646C17.9788 12.1461 17.9983 12.2342 17.9999 12.3234C18.0015 12.4127 17.985 12.5014 17.9515 12.5842C17.9181 12.6669 17.8682 12.7421 17.805 12.8053C17.7418 12.8684 17.6665 12.9182 17.5836 12.9516C17.5007 12.9851 17.4119 13.0015 17.3225 12.9999C17.2331 12.9983 17.1449 12.9788 17.0633 12.9424C16.9816 12.9061 16.9081 12.8537 16.8471 12.7884L11.9914 7.93962L7.13567 12.7884C7.00946 12.9058 6.84253 12.9698 6.67005 12.9667C6.49757 12.9637 6.333 12.8939 6.21102 12.7721C6.08904 12.6503 6.01917 12.486 6.01613 12.3137C6.01308 12.1415 6.07711 11.9748 6.19471 11.8488L11.0504 7L6.19471 2.15122C6.07003 2.02656 6 1.85759 6 1.68141C6 1.50523 6.07003 1.33625 6.19471 1.2116Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: 50%;
  background-repeat: no-repeat;
}
.ws-table__cell--has-icon-additional-required::before {
  background-color: var(--wp--custom--colors--orange);
  content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSI4IiBmaWxsPSJub25lIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTEuMzU0LjI0M2EuNzcuNzcgMCAwIDEgMCAxLjEyNGwtNi4zOSA2LjM5YS43Ny43NyAwIDAgMS0xLjEyMyAwTC42NDYgNC41NjJhLjc3Ljc3IDAgMCAxIDAtMS4xMjQuNzcuNzcgMCAwIDEgMS4xMjMgMEw0LjQxNSA2LjA2IDEwLjIzLjI0M2EuNzcuNzcgMCAwIDEgMS4xMjMgMFoiLz48L3N2Zz4=);
}


.ws-material-recommendations-info {
  font-size: var(--wp--preset--font-size--x-small);
  line-height: 1.5;
  margin-top: var(--wp--custom--spacings--m);
}

/* WC: Product Documents Tab */
.ws-tab-product-documents {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--spacings--m);
}

@media (min-width: 782px) {
  .ws-tab-product-documents {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ws-tab-product-documents {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ws-tab-product-documents__item {
  position: relative;
  align-items: center;
  border: 2px solid var(--wp--custom--colors--site-foreground);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--wp--custom--spacings--l) var(--wp--custom--spacings--m);
  text-align: center;
  gap: var(--wp--custom--spacings--m);
}

.ws-tab-product-documents__item-title {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.29;
  margin-bottom: 0;
}
.ws-tab-product-documents__item-subtitle {
  display: block;
  text-align: center;
}

.ws-tab-product-documents__item-subtitle em {
  background-color: var(--wp--custom--colors--site-foreground);
  color: var(--wp--preset--color--base);
  font-size: var(--wp--preset--font-size--xxx-small);
  font-style: normal;
  padding: var(--wp--custom--spacings--xxs) calc(var(--wp--custom--spacings--xxs)/2);
  position: relative;
  text-decoration: none;
  top: -3px;
}

.ws-tab-product-documents__item-subtitle a em {
  text-decoration: none;
  margin-left: 0.5em;
}
.ws-tab-product-documents__item-subtitle a:hover {
  color: var(--wp--custom--colors--primary);
}
.ws-tab-product-documents__item-subtitle a:hover em {
  text-decoration: none;
  background-color: var(--wp--custom--colors--primary);
  color: var(--wp--custom--colors--site-foreground);
}

/* WC: ACF-based Related Products and Accessories */
.ws-products-wrapper {
  position: relative;
  padding-bottom: 44px;
}
@media (min-width: 782px) {
  .ws-products-wrapper {
    padding-bottom: 0;
  }
}
.ws-products .product {
  height: 100%;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}
.ws-products .product a {
  text-decoration: none;
  color: var(--wp--custom--colors--foreground);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  gap: var(--wp--custom--spacings--s);
}

.ws-products .product a:hover {
  color: var(--wp--custom--colors--foreground);
}

.ws-products .product .woocommerce-loop-product__title {
  font-size: 1.125rem;
  line-height: 1.29;
  margin: 0;
  text-transform: uppercase;
  padding-block: 0;
  font-weight: 700;
  flex-grow: 1;
}
.ws-products .product .product-thumbnail-wrapper {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin: 0;
}
.ws-products .product .product-thumbnail-wrapper img {
  margin: 0 !important;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.ws-products .product:hover .product-thumbnail-wrapper img {
  
}

.ws-products .product .woocommerce-Price-amount {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
}
.ws-products .product .product-footer .product-footer__btn {
  display: block;
  background-color: var(--wp--custom--colors--primary);
  color: var(--wp--custom--colors--site-foreground);
  text-align: center;
  padding: var(--wp--custom--spacings--s) var(--wp--custom--spacings--l);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease;
}
.ws-products .product .product-footer .product-footer__btn:hover {
  background-color: var(--wp--custom--colors--primary-hover);
}

/* Video */
.ws-products .product.product--video {
  background-color: var(--wp--custom--colors--site-foreground);
  gap: 0;
}
.ws-products .product.product--video a {
  color: var(--wp--preset--color--base);
  gap: 0;
}
.ws-products .product.product--video .product-thumbnail-wrapper {
  position: relative;
}
.ws-products .product.product--video .product-thumbnail-wrapper .product-thumbnail__play-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--wp--custom--colors--primary);
  color: var(--wp--custom--colors--site-foreground);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.ws-products .product.product--video .product-thumbnail-wrapper .product-thumbnail__play-icon svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 782px) {
  .ws-products .product.product--video .product-thumbnail-wrapper .product-thumbnail__play-icon {
    width: 64px;
    height: 64px;
  }
}
.ws-products .product.product--video .product-thumbnail-wrapper img {
  aspect-ratio: 365 / 300;
}
.ws-products .product.product--video .product-details {
  padding: 1.25rem;
}
.ws-products .product.product--video .woocommerce-loop-product__title {
  color: var(--wp--preset--color--base);
  text-transform: none;
  transition: color 0.3s ease;
}
.ws-products .product.product--video a:hover .woocommerce-loop-product__title {
  color: var(--wp--custom--colors--primary);
}
.ws-products .product.product--video a:hover .product-thumbnail-wrapper img {
  
}
.ws-products .product.product--video a:hover .product-thumbnail-wrapper .product-thumbnail__play-icon {
  background-color: var(--wp--custom--colors--primary-hover);
}

/* Plyr Video Player */
.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  
}
.plyr--full-ui.plyr--video .plyr__control--overlaid {
  padding: 28px;
  opacity: 1;
  color: var(--wp--custom--colors--site-foreground);
}
.plyr--full-ui.plyr--video .plyr__control--overlaid svg {
  width: 24px;
  height: 24px;
}

/* Swiper */
.swiper-slide {
  height: auto !important;
}

.swiper-button-prev,
.swiper-button-next {
  appearance: none;
  background-color: var(--wp--custom--colors--gray-200);
  color: var(--wp--custom--colors--site-foreground);
  border: none;
  border-radius: 50% 50%;
  cursor: pointer;
  display: none !important;
  height: 50px !important;
  width: 50px !important;
  place-content: center;
  position: absolute;
  top: 50%;
  z-index: 1 !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.swiper-button-prev--sm,
.swiper-button-next--sm {
  height: 32px !important;
  width: 32px !important;
}

.swiper-button-prev--sm svg,
.swiper-button-next--sm svg {
  width: 16px !important;
  height: 16px !important;
  fill: none !important;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0 !important;
}

@media (min-width: 782px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: grid !important;
  }
}
.swiper-button-prev {
  left: 0;
  transform: translate(-50%,-50%);
}
.swiper-button-next {
  right: 0;
  transform: translate(50%,-50%);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--wp--custom--colors--site-foreground);
}
.swiper-button-prev:hover .icon::after,
.swiper-button-next:hover .icon::after {
  background-color: var(--wp--custom--colors--white);
}

.swiper-navigation-icon {
  display: none;
}

/* Pagination */
.ws-product-swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  bottom: 0;
}
@media (min-width: 782px) {
  .ws-product-swiper-pagination {
    display: none;
  }
}
.ws-product-swiper-pagination .swiper-pagination-bullet {
  flex: 1;
  border-radius: 0;
  padding: 0;
  margin: 0 !important;
  opacity: 1;
  background-color: transparent;
  padding-block: var(--wp--custom--spacings--s);
}
.ws-product-swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  height: 2px;
  background-color: var(--wp--custom--colors--gray-200);
}

.ws-product-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--wp--custom--colors--site-foreground);
}


/* WC: Product Support */
.ws-support-center {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--spacings--m);
}

@media (min-width: 782px) {
  .ws-support-center {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ws-support-center__card {
  background-color: #f5f5f5;
  border-radius: 0.25rem;
  border: 2px solid var(--wp--custom--colors--site-foreground);
  display: grid;
  column-gap: var(--wp--custom--spacings--xs);
  grid-template-columns: 1fr auto;
  grid-template-rows: min-content 1fr min-content;
  padding: var(--wp--custom--spacings--m);
  padding-bottom: 0;
}
.ws-support-center__card > * {
  grid-column: auto / span 2;
}
.ws-support-center__card-title {
  font-size: 1.25rem;
  line-height: 1.29;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .ws-support-center__card-title {
    font-size: 2.25rem;
  }
}

.ws-support-center__card-content {
  padding-bottom: var(--wp--custom--spacings--l);
}
.ws-support-center__card-content p:last-child {
  margin-bottom: 0;
}
.ws-support-center__card-link {
  grid-column-start: 1;
  grid-column-end: span 1;
}
@media (min-width: 1024px) {
  .ws-support-center__card-link {
    grid-column-start: 1;
    grid-column-end: span 1;
  }
}

.ws-support-center__card-link a {
  display: inline-flex;
  align-items: center;
  gap: var(--wp--custom--spacings--xs);
  color: var(--wp--custom--colors--site-foreground);
  text-decoration: none;
  font-weight: 700;
  margin-top: 0.75rem;
  transition: text-decoration 0.3s ease, gap 0.3s ease;
}
.ws-support-center__card-link a:hover {
  text-decoration: underline;
  gap: var(--wp--custom--spacings--s);
}
.ws-support-center__card-link a::after {
  align-items: center;
  background-image: url("../img/icon-button-arrow.4f02c1f0.png");
  background-position-x: left;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: 54px 19px;
  content: "";
  display: flex;
  height: 22px;
  width: 27px;
}
.ws-support-center__card-icon {
  margin-bottom: 0;
  grid-column-start: 2;
  grid-column-end: span 1;
}

@media (min-width: 1024px) {
  .ws-support-center__card-icon {
    grid-column-start: 2;
    grid-column-end: span 1;
  }
}


/* Homepage: Products Carousel */
.ws-product-carousel {

}
.ws-product-carousel .wp-block-post-title a {
  color: var(--wp--custom--colors--site-foreground);
  transition: opacity 0.2s ease;
}
.ws-product-carousel .wp-block-post-title a:hover {
  opacity: 0.5;
  text-decoration: none;
}
.ws-product-carousel-navigation {

}
.ws-product-carousel-navigation__prev,
.ws-product-carousel-navigation__next {
  @apply -translate-y-1/2;
}


@media (max-width: 1599px) {
  .ws-product-carousel-navigation__prev {
    left: -24px !important;
  }
}

@media (max-width: 1599px) {
  .ws-product-carousel-navigation__next {
    right: -24px !important;
  }
}

.ws-product-carousel-navigation__prev .wp-block-outermost-icon-block .icon-container svg,
.ws-product-carousel-navigation__next .wp-block-outermost-icon-block .icon-container svg {
  fill: #EFEFEF;
  transition: fill 0.3s ease;
  opacity: 0.9;
}

.ws-product-carousel-navigation__prev:hover .wp-block-outermost-icon-block .icon-container svg,
.ws-product-carousel-navigation__next:hover .wp-block-outermost-icon-block .icon-container svg {
  fill: var(--wp--custom--colors--site-foreground);
}


/* Homepage: Features */
.ws-features-columns {

}
.ws-features-columns .wp-block-cover {
  width: 100%;
}

@media (max-width: 1023px) {
  .ws-features-columns .wp-block-cover {
    min-height: 360px !important;
  }
}

@media (min-width: 782px ) and (max-width: 1023px) {
  .ws-features-columns .wp-block-cover .wp-block-heading {
    font-size: 1.5rem !important;
  }
}

@media (min-width: 1024px ) and (max-width: 1159px) {
  .ws-features-columns .wp-block-cover .wp-block-heading {
    font-size: 2rem !important;
  }
}

@media (min-width: 1160px ) and (max-width: 1299px) {
  .ws-features-columns .wp-block-cover .wp-block-heading {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 767px) {
  .ws-features-columns .wp-block-cover {
    min-height: 280px !important;
  }
}
.ws-features-columns .wp-block-cover .wp-block-cover__image-background {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
}

/* Homepage: Hero Slider */
.eb-slider-wrapper .slick-next,
.eb-slider-wrapper .slick-prev {
  z-index: 9;
}

/* Press, Tips & Tricks and Projects */
@media (min-width: 782px) and (max-width: 1199px) {
  .search-filter-results .grid-posts__3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Press, Tips & Tricks */
.search-filter-results .grid-posts__3 .grid-col .wst-blocks-how-to-card {
  width: 100%;
}

.search-filter-results .grid-posts__3 .wst-blocks-how-to-card__image img {
  object-fit: cover !important;
  height: 100% !important;
  width: 100% !important;
}

/* FAQs */
.search-filter-results .grid-posts__3 .grid-col .wst-blocks-faq-card {
  padding-inline: 1.25em;
}

/* Categories Select */
.searchandfilter .sf-field-category label {
  display: block;
}
.searchandfilter .sf-field-category .sf-input-select {
  width: 100%;
}
.searchandfilter .sf-field-category {
  font-size: var(--wp--preset--font-size--small);
}

/* Projects */
.search-filter-results .grid-posts__3 .grid-col .wst-blocks-project-card {
  width: 100%;
}
.search-filter-results .grid-posts__3 .wst-blocks-project-card__image img {
  object-fit: cover !important;
  height: 100% !important;
  width: 100% !important;
}

/* Single Project */
.ws-wst-blocks-projects-grid {
  row-gap: var(--wp--custom--spacings--xxl);
}
.wp-block-wst-blocks-project-step .wp-block-image {
  border: 3px solid var(--wp--custom--colors--black);
}
.wp-block-wst-blocks-project-step__content {
  padding: var(--wp--custom--spacings--m) !important;
}
.wp-block-wst-blocks-project-step__number .wp-block-image {

}
.wp-block-column .wp-block-wst-blocks-project-step {
  height: 100%;
}

@media (min-width: 782px) and (max-width: 1023px) {
  .wp-block-column .wp-block-wst-blocks-project-step {
    flex-direction: row;
  }
}


/* WP Block Button */
.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:active {
  color: var(--wp--custom--colors--black);
  text-decoration: none;
}


/* WST: Suppoert Center Card */
.wst-support-center__card .wp-block-heading a {
  text-decoration: none;
}

/* Sprayer Selector */
.product-grid-section .product-grid__single .product-grid__item-btn .btn {
  text-decoration: none;
  padding-block: 10px;
}
.product-grid__container .product-grid__item .product-grid__item-title {
  font-size: var(--wp--preset--font-size--m);
  line-height: 1.29;
  margin-bottom: 0.5rem;
}
.product-grid__container .product-grid__item a {
  text-decoration: none;
}

/* Products */
.grid-card.c-card-product {
  
}
.grid-card.c-card-product .wst-blocks-product-card__image {
  margin-bottom: var(--wp--custom--spacings--s);
}
.wst-blocks-product-card__button {
  margin-top: var(--wp--custom--spacings--s) !important;
}
.grid-card.c-card-product a {
  text-decoration: none;
}


/* 404 Page */
body.error404 .error-404 {
  padding-block: 3rem;
  max-width: 820px;
  margin-inline: auto;
}

@media (min-width: 782px) {
  body.error404 .error-404 {
    padding-block: 6rem;
  }
}

@media (min-width: 1024px) {
  body.error404 .error-404 {
    padding-block: 8rem;
  }
}

body.error404 .error-404 .error-404-digits {
  font-size: 6rem;
  line-height: 1;
  font-family: var(--wp--custom--typography--font-body);
  font-weight: 800;
  color: var(--wp--custom--colors--primary);
  text-align: center;
  margin-bottom: 0.05em;
}

@media (min-width: 782px) {
  body.error404 .error-404 .error-404-digits {
    font-size: 10rem;
  }
}

@media (min-width: 1024px) {
  body.error404 .error-404 .error-404-digits {
    font-size: 14rem;
  }
}
body.error404 .error-404 .page-title {
  text-align: center;
  margin-bottom: 0.2em;
}

body.error404 .error-404 .page-content {
  text-align: center;
}

body.error404 .error-404 .c-search-form {
  max-width: 480px;
  margin-inline: auto;
  padding-top: 1rem;
}

@media (min-width: 782px) {
  body.error404 .error-404 .c-search-form {
    padding-top: 2rem;
  }
}
body.error404 .error-404 .c-search-form label {
  flex-grow: 1;
  margin-bottom: 0;
  display: flex;
  gap: 0;
  align-items: stretch;
}
body.error404 .error-404 .c-search-form input[type="search"] {
  border: 1px solid var(--wp--custom--colors--gray-300);
  font-size: 1rem;
  line-height: 1.2;
  padding: 1em 1.25em;
}
body.error404 .error-404 .c-search-form input[type="search"]::placeholder {
  color: #b1b1b1;
}
body.error404 .error-404 .c-search-form .search-submit {
  height: auto;
}

/* Search: Page Card */
.wst-blocks-page-card .wst-blocks-how-to-card__link {
  grid-template-rows: 1fr;
}

/* WC: Product Category Page */
.woocommerce .woocommerce-breadcrumb + .wst-product-category-hero {
  
}

/* Remove margin below breadcrumbs on product category pages */
.tax-product_cat .woocommerce-breadcrumb {
  margin-bottom: 0;
}

/* Hide breadcrumbs on product category pages */
.tax-product_cat .c-breadcrumbs {
  display: none;
}


/* Search and Filter */
.searchandfilter ul li.sf-field-taxonomy-product_category_tax {
  display: none;
}

.term-parts-accessories .searchandfilter ul li.sf-field-taxonomy-product_category_tax,
.page-id-63 .searchandfilter ul li.sf-field-taxonomy-product_category_tax {
  display: block;
}
