/*
 * WooCommerce stilovi teme.
 *
 * Ovaj fajl je namerno uveden kao poseban sloj kako bi Woo ekrani
 * rasli odvojeno od globalnog foundation-a iz main.css.
 */

/* Shared Woo foundation */
.woocommerce-page__layout--single-product {
  padding-top: 2.25rem;
  padding-bottom: 0;
}

.single-product .woocommerce-page__main-inner {
  max-width: 100%;
}

.single-product .woocommerce-notices-wrapper {
  margin-bottom: 1.5rem;
}

.single-product .woocommerce-notices-wrapper:empty {
  display: none;
  margin-bottom: 0;
}

.single-product .spytech-product {
  color: var(--black);
}

.single-product .spytech-product__lower {
  margin-top: 3rem;
}

.single-product .spytech-product__lower > :first-child {
  margin-top: 0;
}

.spytech-product-related {
  width: 100vw;
  margin-top: 5rem;
  margin-inline: calc(50% - 50vw);
  padding: 0 0 5rem;
  background: var(--white);
}

.spytech-product-related__surface {
  width: min(var(--page-shell-width-fluid), var(--page-shell-max-width));
  margin-inline: auto;
}

.spytech-product-related__title {
  margin: 0 0 1.875rem;
  font-size: 1.5625rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--black);
}

.spytech-product-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.spytech-product-related__card {
  min-width: 0;
}

.spytech-product-related__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--soft-gray);
  border-radius: 0.625rem;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.spytech-product-related__link:hover,
.spytech-product-related__link:focus-visible {
  border-color: var(--medium-gray);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.spytech-product-related__image-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
  border-radius: 0.625rem;
  background: var(--light-gray);
  overflow: hidden;
}

.spytech-product-related__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spytech-product-related__card-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 600;
  color: var(--black);
}

.spytech-product-related__price {
  margin-top: auto;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: var(--black);
}

.spytech-product-related__price .price {
  color: inherit;
}

.spytech-product-related__cta {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.spytech-product-disclaimer {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: var(--white);
  padding: 0.625rem 0;
}

.spytech-product-disclaimer__inner {
  width: min(var(--page-shell-width-fluid), var(--page-shell-max-width));
  margin-inline: auto;
}

.spytech-product-disclaimer__text {
  max-width: 68rem;
  margin: 0 auto;
  color: var(--dark-gray);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
  text-align: center;
}

.spytech-product-disclaimer__text strong,
.spytech-product-disclaimer__text b {
  font-weight: 700;
}

.spytech-product-sections {
  color: var(--black);
}

@media (max-width: 1024px) {
  .spytech-product-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.spytech-product-sections__nav-band {
  position: sticky;
  top: calc(var(--wp-admin-bar-offset) + var(--header-sticky-current-height));
  z-index: 20;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: var(--light-gray);
 /* border-top: 1px solid var(--soft-gray);*/
  border-bottom: 0.5px solid var(--black);
      box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.1);
}

.spytech-product-sections__nav-shell {
  width: min(var(--page-shell-width-fluid), var(--page-shell-max-width));
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .spytech-product-sections__nav-shell {
    width: unset;
  }
}

.spytech-product-sections__nav {
  display: flex;
  align-items: stretch;
}

.spytech-product-sections__nav-link {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8125rem;
  padding: 0;
  border-right: 4px solid var(--white);
  color: var(--black);
  background-color: var(--soft-gray);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.spytech-product-sections__nav-link:first-child {
  border-left: 4px solid var(--white);
}

.spytech-product-sections__nav-link:hover,
.spytech-product-sections__nav-link:focus-visible {
  background: var(--light-gray);
  color: var(--black);
}

.spytech-product-sections__nav-link.is-active,
.spytech-product-sections__nav-link[aria-current="true"] {
  background: var(--yellow);
  color: var(--black);
}

.spytech-product-sections__content {
  padding-top: 3.5rem;
}

.spytech-product-section {
  scroll-margin-top: calc(
    var(--wp-admin-bar-offset) +
    var(--header-sticky-current-height) +
    var(--st-sticky-sections-nav-height, var(--spytech-single-sections-nav-height, 0px)) +
    4rem
  );
}

.spytech-product-section + .spytech-product-section {
  margin-top: 5rem;
}

.spytech-product-section__surface {
  /*width: min(var(--page-shell-width-fluid), var(--page-shell-max-width));*/
  margin-inline: auto;
}

.spytech-product-section__header {
  margin-bottom: 1.875rem;
}

.spytech-product-section--legacy .spytech-product-section__header {
  display: block;
}

.spytech-product-section__title {
  margin: 0;
  color: var(--black);
  font-size: var(--heading-h2-font-size);
  line-height: var(--heading-h2-line-height);
  font-weight: var(--heading-h2-font-weight);
}

.spytech-product-section__content {
  color: var(--dark-gray);
}

.spytech-product-legacy-content {
  color: var(--dark-gray);
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.spytech-product-legacy-content > :first-child {
  margin-top: 0;
}

.spytech-product-legacy-content > :last-child {
  margin-bottom: 0;
}

.spytech-product-legacy-content p,
.spytech-product-legacy-content ul,
.spytech-product-legacy-content ol,
.spytech-product-legacy-content blockquote,
.spytech-product-legacy-content table {
  margin: 0 0 1.125rem;
}

.spytech-product-legacy-content h3,
.spytech-product-legacy-content h4,
.spytech-product-legacy-content h5,
.spytech-product-legacy-content h6 {
  margin: 0 0 1rem;
  color: var(--black);
}

.spytech-product-legacy-content ul,
.spytech-product-legacy-content ol {
  padding-left: 1.25rem;
}

.spytech-product-legacy-content li + li {
  margin-top: 0.5rem;
}

.spytech-product-legacy-content strong,
.spytech-product-legacy-content b {
  color: var(--black);
  font-weight: 700;
}

.spytech-product-legacy-content code,
.spytech-product-legacy-content pre,
.spytech-product-legacy-content kbd,
.spytech-product-legacy-content samp {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.spytech-product-legacy-content code {
  padding: 0;
  background: transparent;
}

.spytech-product-legacy-content img,
.spytech-product-legacy-content iframe,
.spytech-product-legacy-content video {
  display: block;
  max-width: 100%;
}

.spytech-product-legacy-content img,
.spytech-product-legacy-content video {
  height: auto;
}

.spytech-product-legacy-content iframe {
  width: 100%;
}

.spytech-product-legacy-content table {
  width: min(100%, 36.75rem);
  border-collapse: separate;
  border-spacing: 0 0.3125rem;
}

.spytech-product-legacy-content table tr > th,
.spytech-product-legacy-content table tr > td {
  padding: 0.625rem 1.25rem;
  vertical-align: top;
  text-align: left;
  word-break: break-word;
}

.spytech-product-legacy-content table tr > th:not([colspan]) {
  background: var(--soft-gray);
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}

.spytech-product-legacy-content table tr > td {
  background: var(--white);
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.spytech-product-legacy-content table tr > th:first-child,
.spytech-product-legacy-content table tr > td:first-child {
  border-top-left-radius: 0.3125rem;
  border-bottom-left-radius: 0.3125rem;
}

.spytech-product-legacy-content table tr > th:last-child,
.spytech-product-legacy-content table tr > td:last-child {
  border-top-right-radius: 0.3125rem;
  border-bottom-right-radius: 0.3125rem;
}

.spytech-product-legacy-content table tr > th[colspan],
.spytech-product-legacy-content table tr > td[colspan] {
  padding: 0 0 0.75rem;
  background: transparent;
  border-radius: 0;
 /* border-bottom: 1px solid var(--medium-gray);*/
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.spytech-product-legacy-content table td:empty {
  display: none;
}

.spytech-product-section--legacy-specification,
.spytech-product-section--legacy-includes {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: var(--light-gray);
}
.spytech-product-section--legacy-includes {
  background: var(--white);
}

.spytech-product-section--legacy-specification .spytech-product-section__surface,
.spytech-product-section--legacy-includes .spytech-product-section__surface {
  width: min(var(--page-shell-width-fluid), var(--page-shell-max-width));
  margin-inline: auto;
  padding-top: 1.875rem;
  padding-bottom: 3.125rem;
}

.spytech-product-section--legacy-specification .spytech-product-section__title,
.spytech-product-section--legacy-includes .spytech-product-section__title {
  font-size: 1.5625rem;
  line-height: 1.875rem;
  font-weight: 600;
}

.spytech-product-section--legacy-specification .spytech-product-section__content,
.spytech-product-section--legacy-includes .spytech-product-section__content,
.spytech-product-section--legacy-usage .spytech-product-section__content {
  color: var(--black);
}

.spytech-product-section--legacy-specification .spytech-product-legacy-content table {
  margin-bottom: 0;
}

.spytech-product-section--legacy-includes .spytech-product-legacy-content ul {
  width: min(100%, 21.25rem);
  display: grid;
  gap: 0.3125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spytech-product-section--legacy-includes .spytech-product-legacy-content li {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 2.5rem;
  padding: 0.625rem 1.25rem 0.625rem 2rem;
  border-radius: 0.3125rem;
  background: var(--light-gray);
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.spytech-product-section--legacy-includes .spytech-product-legacy-content li::before {
  content: "\2022";
  position: absolute;
  top: 50%;
  left: 1rem;
  color: currentColor;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%);
}

.spytech-product-section--legacy-includes .spytech-product-legacy-content li + li {
  margin-top: 0;
}

.spytech-product-section--legacy-specification + .spytech-product-section--legacy-includes,
.spytech-product-section--legacy-includes + .spytech-product-section--legacy-usage {
  margin-top: 0;
}

.spytech-product-section--legacy-usage {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: var(--light-gray);
}
.spytech-product-section--legacy-usage + #spytech-product-section-faq {
  margin-top: 2rem;
}

.spytech-product-section--legacy-usage .spytech-product-section__surface {
  width: min(var(--page-shell-width-fluid), var(--page-shell-max-width));
  margin-inline: auto;
  padding-top: 1.875rem;
  padding-bottom: 3.125rem;
}

.spytech-product-section--legacy-usage .spytech-product-section__header {
  margin-bottom: 1.25rem;
}

.spytech-product-legacy-manuals {
  width: min(100%, 36.75rem);
  display: grid;
  gap: 1rem;
  color: var(--black);
}

.spytech-product-legacy-manuals__intro {
  margin: 0;
  color: var(--dark-gray);
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.spytech-product-legacy-manuals__list {
  display: grid;
  gap: 0.75rem;
}

.spytech-product-legacy-manuals__link {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  box-sizing: border-box;
  max-width: 100%;
  min-height: 3.25rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--soft-gray);
  border-radius: 0.625rem;
  background: var(--light-gray);
  color: var(--black);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.spytech-product-legacy-manuals__link:hover,
.spytech-product-legacy-manuals__link:focus-visible {
  background: var(--white);
  border-color: var(--black);
  transform: translateY(-0.0625rem);
}

.spytech-product-legacy-manuals__icon {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--soft-gray);
  color: var(--error-red);
}

.spytech-product-legacy-manuals__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  fill: currentColor;
}

.spytech-product-legacy-manuals__label {
  min-width: 0;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  word-break: break-word;
}

.spytech-product-description {
  display: grid;
  gap: 0;
  color: var(--black);
}

.spytech-product-description__item {
  display: grid;
  gap: 2rem;
}

.spytech-product-description__item.has-divider {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--soft-gray);
}

.spytech-product-description__top {
  display: grid;
  grid-template-columns: minmax(0, 36.75rem) minmax(0, 36.75rem);
  gap: 1.5rem;
  align-items: start;
  justify-content: space-between;
}

.spytech-product-description__top--video-right {
  grid-template-areas:
    "main video";
}

.spytech-product-description__top--video-left {
  grid-template-areas:
    "video main";
}

.spytech-product-description__main {
  grid-area: main;
  min-width: 0;
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.spytech-product-description__main-header {
  min-width: 0;
}

.spytech-product-description__main-title {
  margin: 0;
  color: var(--black);
  font-size: 1.5625rem;
  line-height: 1.28;
  font-weight: 600;
}

.spytech-product-description__video {
  grid-area: video;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.spytech-product-description__main-body {
  min-width: 0;
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.spytech-product-description__pair-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 17.625rem));
  gap: 1.5rem;
  justify-content: space-between;
}

.spytech-product-description__pair-item,
.spytech-product-description__bottom-item {
  min-width: 0;
}

.spytech-product-description__bottom {
  display: grid;
  gap: 1.5rem;
}

.spytech-product-description__subtitle {
  margin: 0;
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 600;
}

.spytech-product-description__bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 17.625rem));
  gap: 1.5rem;
  justify-content: space-between;
}

.spytech-product-description__richtext {
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.spytech-product-description__richtext > :first-child {
  margin-top: 0;
}

.spytech-product-description__richtext > :last-child {
  margin-bottom: 0;
}

.spytech-product-description__richtext p,
.spytech-product-description__richtext ul,
.spytech-product-description__richtext ol {
  margin: 0 0 1.125rem;
}

.spytech-product-description__richtext strong,
.spytech-product-description__richtext b {
  font-weight: 600;
}

.spytech-product-description__richtext ul,
.spytech-product-description__richtext ol {
  padding-left: 1.25rem;
}

.spytech-product-description__richtext li + li {
  margin-top: 0.375rem;
}

.spytech-product-description__richtext img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 0.625rem;
}

.spytech-product-description__video-shell {
  display: flex;
  justify-content: center;
  width: 100%;
}

.spytech-product-description__video-trigger,
.spytech-product-description__video-placeholder,
.spytech-product-description__video-embed {
  position: relative;
  display: block;
  width: min(100%, var(--st-single-desc-video-display-width, 28.125rem));
  aspect-ratio: var(--st-single-desc-video-aspect-ratio, 1 / 1);
  border-radius: 0.625rem;
  overflow: hidden;
  background: var(--black);
}

.spytech-product-description__video-trigger {
  padding: 0;
  border: 0;
  cursor: pointer;
}

.spytech-product-description__video-trigger:focus-visible {
  outline: 0.125rem solid var(--yellow);
  outline-offset: 0.1875rem;
}

.spytech-product-description__video-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--black);
}

.spytech-product-description__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  border: 0.09375rem solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.35);
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.spytech-product-description__video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1.125rem solid var(--white);
  transform: translate(-35%, -50%);
}

.spytech-product-description__video-trigger:hover .spytech-product-description__video-play,
.spytech-product-description__video-trigger:focus-visible .spytech-product-description__video-play {
  background: rgba(30, 30, 30, 0.55);
  transform: translate(-50%, -50%) scale(1.03);
}

.spytech-product-description__video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.spytech-product-section--specification {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: var(--light-gray);
}

.spytech-product-section--specification .spytech-product-section__surface {
  width: min(var(--page-shell-width-fluid), var(--page-shell-max-width));
  margin-inline: auto;
  padding-top: 1.875rem;
  padding-bottom: 3.125rem;
}

.spytech-product-section--specification .spytech-product-section__content {
  color: var(--black);
}

.spytech-product-specification {
  display: grid;
  gap: 0;
}

.spytech-product-specification__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9375rem;
}

.spytech-product-specification__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9375rem;
  min-width: 0;
}

.spytech-product-specification__badge-icon {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
}

.spytech-product-specification__badge-image {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.spytech-product-specification__badge-text {
  min-width: 0;
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}

.spytech-product-specification__section-divider {
  margin: 1.875rem 0;
  border-top: 1px solid var(--medium-gray);
}

.spytech-product-specification__title {
  margin: 0 0 1.875rem;
  color: var(--black);
  font-size: 1.5625rem;
  line-height: 1.875rem;
  font-weight: 600;
}

.spytech-product-specification__groups {
  display: grid;
  gap: 1.875rem;
}

.spytech-product-specification__group {
  display: grid;
  gap: 0;
}

.spytech-product-specification__group-title {
  margin: 0;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.spytech-product-specification__group-divider {
  margin-top: 0.5rem;
  border-top: 0.5px solid var(--medium-gray);
}

.spytech-product-specification__rows {
  width: min(100%, 36.75rem);
  margin-top: 0.9375rem;
  display: grid;
  gap: 0.3125rem;
}

.spytech-product-specification__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.spytech-product-specification__cell {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-width: 0;
  min-height: 1.875rem;
  padding: 0.3125rem 1.25rem;
  border-radius: 0.3125rem;
  color: var(--black);
  word-break: break-word;
}

.spytech-product-specification__cell--label {
  background: var(--soft-gray);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}

.spytech-product-specification__cell--value {
  background: var(--white);
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.spytech-product-section--usage {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: var(--white);
}

.spytech-product-section--usage .spytech-product-section__surface {
  width: min(var(--page-shell-width-fluid), var(--page-shell-max-width));
  margin-inline: auto;
}

.spytech-product-usage {
  display: grid;
  grid-template-columns: minmax(0, 36.75rem) minmax(0, 36.75rem);
  grid-template-areas:
    "title video"
    "content video";
  gap: 1.5rem;
  align-items: start;
  justify-content: space-between;
  color: var(--black);
}

.spytech-product-usage--without-video {
  grid-template-columns: minmax(0, 36.75rem);
  grid-template-areas:
    "title"
    "content";
}

.spytech-product-usage__title {
  grid-area: title;
  min-width: 0;
  margin: 0;
  color: var(--black);
  font-size: 1.5625rem;
  line-height: 1.2;
  font-weight: 600;
}

.spytech-product-usage__video {
  grid-area: video;
  min-width: 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 48rem) {
  .spytech-product-usage__video {
    position: sticky;
    top: 220px;
  }
}

.spytech-product-usage__content {
  grid-area: content;
  min-width: 0;
}

.spytech-product-usage__richtext {
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.spytech-product-usage__richtext > :first-child {
  margin-top: 0;
}

.spytech-product-usage__richtext > :last-child {
  margin-bottom: 0;
}

.spytech-product-usage__richtext p,
.spytech-product-usage__richtext ul,
.spytech-product-usage__richtext ol {
  margin: 0 0 1.5rem;
}

.spytech-product-usage__richtext strong,
.spytech-product-usage__richtext b {
  font-weight: 600;
}

.spytech-product-usage__richtext ul,
.spytech-product-usage__richtext ol {
  padding-left: 1.25rem;
}

.spytech-product-usage__richtext li + li {
  margin-top: 0.375rem;
}

.spytech-product-usage__richtext a:not(.st-button) {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.spytech-product-usage__richtext .st-button {
  margin-top: 0.25rem;
}

.spytech-product-usage__richtext img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 0.625rem;
}

.spytech-product-section--includes {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: var(--light-gray);
}

.spytech-product-section--includes .spytech-product-section__surface {
  width: min(var(--page-shell-width-fluid), var(--page-shell-max-width));
  margin-inline: auto;
  padding-top: 1.875rem;
  padding-bottom: 3.125rem;
}

.spytech-product-section--includes .spytech-product-section__content {
  color: var(--black);
}

.spytech-product-section--includes .spytech-product-section__title {
  font-size: 1.5625rem;
  line-height: 1.875rem;
  font-weight: 600;
}

.spytech-product-includes__list {
  width: min(100%, 21.25rem);
  display: grid;
  gap: 0.3125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spytech-product-includes__item {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 2.5rem;
  padding: 0.625rem 1.25rem 0.625rem 2rem;
  border-radius: 0.3125rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.spytech-product-includes__item::before {
  content: "\2022";
  position: absolute;
  top: 50%;
  left: 1rem;
  color: currentColor;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%);
}

@media (max-width: 79.9375rem) {
  .spytech-product-description__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spytech-product-description__pair-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spytech-product-description__bottom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spytech-product-specification__rows {
    width: min(100%, 100%);
  }

  .spytech-product-legacy-content table tr > th,
  .spytech-product-legacy-content table tr > td {
    padding-inline: 1rem;
  }

  .spytech-product-usage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spytech-product-usage--without-video {
    grid-template-columns: 1fr;
  }

  .spytech-product-legacy-manuals__link {
    width: 100%;
  }
}

@media (max-width: 47.9375rem) {
  .spytech-product-sections__nav-shell {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .spytech-product-sections__nav-shell::-webkit-scrollbar {
    display: none;
  }

  .spytech-product-sections__nav {
    flex-wrap: nowrap;
    width: max-content;
  }

  .spytech-product-sections__nav-link {
    flex: 0 0 auto;
    min-width: 6rem;
    width: 8.75rem;
    min-height: 2.5rem;
    border-right: 3px solid var(--white);
  }
  .spytech-product-sections__nav-link:first-child {
    border-left: 3px solid var(--white);
  }

  .spytech-product-sections__content {
    padding-top: 2.5rem;
  }

  .spytech-product-section + .spytech-product-section {
    margin-top: 3.5rem;
  }

  .spytech-product-description__item {
    gap: 1.5rem;
  }

  .spytech-product-description__item.has-divider {
    margin-top: 3rem;
    padding-top: 3rem;
  }

  .spytech-product-description__top,
  .spytech-product-description__top--video-right,
  .spytech-product-description__top--video-left {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "video"
      "body";
  }

  .spytech-product-description__main {
    display: contents;
  }

  .spytech-product-description__main-header {
    grid-area: header;
  }

  .spytech-product-description__video {
    justify-content: flex-start;
  }

  .spytech-product-description__main-body {
    grid-area: body;
  }

  .spytech-product-description__video-shell {
    justify-content: center;
  }

  .spytech-product-description__pair-row,
  .spytech-product-description__bottom-grid {
    grid-template-columns: 1fr;
  }

  .spytech-product-section--specification .spytech-product-section__surface {
    padding-top: 1.875rem;
    padding-bottom: 3.125rem;
  }

  .spytech-product-specification__badges {
    align-items: stretch;
  }

  .spytech-product-specification__badge {
    flex: 1 1 calc(50% - 0.46875rem);
    align-items: flex-start;
  }

  .spytech-product-specification__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spytech-product-specification__cell {
    padding-inline: 1rem;
  }

  .spytech-product-usage,
  .spytech-product-usage--without-video {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "video";
  }

  .spytech-product-usage {
    grid-template-areas:
      "title"
      "video"
      "content";
  }

  .spytech-product-usage--without-video {
    grid-template-areas:
      "title"
      "content";
  }

  .spytech-product-usage__video {
    justify-content: flex-start;
  }

  .spytech-product-usage__content {
    margin-top: 0;
  }
}

.woocommerce-page__layout--product-cat.default-page__layout {
  padding-top: 0;
  padding-bottom: 0;
}

.woocommerce-cart-page__layout {
  padding-top: 0;
  padding-bottom: 6.25rem;
}

.spytech-cart-page {
  color: var(--black);
  overflow: hidden;
}

.spytech-order-progress {
  margin-top: 3.125rem;
}

.spytech-order-progress__line {
  width: 100%;
  height: 1px;
  background-color: var(--soft-gray);
}

.spytech-order-progress__inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spytech-order-progress__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spytech-order-progress__item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.spytech-order-progress__link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.spytech-order-progress__link:hover,
.spytech-order-progress__link:focus-visible {
  text-decoration: none;
}

.spytech-order-progress__badge {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--soft-gray);
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.spytech-order-progress__label {
  margin-left: 1.25rem;
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.spytech-order-progress__link .spytech-order-progress__label {
  margin-left: 0;
}

.spytech-order-progress__link {
  gap: 1.25rem;
}

.spytech-order-progress__item.is-current .spytech-order-progress__badge,
.spytech-order-progress__item.is-active .spytech-order-progress__badge {
  background-color: var(--yellow);
  color: var(--black);
}

.spytech-order-progress__item.is-current .spytech-order-progress__label,
.spytech-order-progress__item.is-active .spytech-order-progress__label {
  color: var(--black);
}

.spytech-order-progress__item.is-active .spytech-order-progress__link:hover .spytech-order-progress__badge,
.spytech-order-progress__item.is-active .spytech-order-progress__link:focus-visible .spytech-order-progress__badge {
  background-color: var(--light-yellow);
}

.spytech-order-progress__link:hover .spytech-order-progress__label,
.spytech-order-progress__link:focus-visible .spytech-order-progress__label {
  color: var(--medium-gray);
}

.spytech-cart-page__content {
  margin-top: 1.875rem;
}

.spytech-cart__notices--global {
  margin-bottom: 1rem;
}

.spytech-cart-card {
  border-radius: 0.625rem;
  background-color: var(--white);
  padding: 2.9375rem 3.75rem 1.25rem;
}

.spytech-cart-form__items {
  color: var(--black);
}

.spytech-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.875rem;
}

.spytech-cart-item + .spytech-cart-item {
  padding-top: 1.875rem;
  border-top: 1px solid var(--soft-gray);
}

.spytech-cart-item__main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1.5625rem;
}

.spytech-cart-item__media {
  flex: 0 0 auto;
}

.spytech-cart-item__image-link {
  position: relative;
  display: block;
  width: 3.75rem;
  text-decoration: none;
}

.spytech-cart-item__image {
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.625rem;
  object-fit: cover;
  background-color: var(--light-gray);
}

.spytech-cart-item__badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.4375rem;
  height: 1.4375rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  color: var(--light-gray);
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
}

.spytech-cart-item__content {
  min-width: 0;
}

.spytech-cart-item__title {
  display: block;
  margin: 0;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
}

.spytech-cart-item__title:hover,
.spytech-cart-item__title:focus-visible {
  color: var(--black);
  text-decoration: none;
}

.spytech-cart-item__sku {
  margin: 0;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
}

.spytech-cart-item__meta {
  margin-top: 0.375rem;
  color: var(--dark-gray);
  font-size: 0.75rem;
  line-height: 1.5;
}

.spytech-cart-item__meta p,
.spytech-cart-item__meta dl,
.spytech-cart-item__meta dd,
.spytech-cart-item__meta dt {
  margin: 0;
}

.spytech-cart-item__meta dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}

.spytech-cart-item__meta dd {
  margin-left: 0;
}

.spytech-cart-item__meta--backorder {
  margin-top: 0.5rem;
}

.spytech-cart-item__price {
  margin: 0;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

.spytech-cart-item__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.spytech-cart-item__quantity {
  display: grid;
  grid-template-columns: 2.8125rem 3rem 2.8125rem;
  align-items: center;
  justify-items: center;
}

.spytech-cart-item__quantity-button {
  width: 2.8125rem;
  height: 2.8125rem;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: var(--light-gray);
  color: var(--black);
  font-family: var(--font-family-base);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.spytech-cart-item__quantity-button:hover,
.spytech-cart-item__quantity-button:focus-visible {
  background-color: var(--soft-gray);
  color: var(--black);
}

.spytech-cart-item__quantity-button:disabled {
  background-color: var(--soft-gray);
  color: var(--medium-gray);
  cursor: not-allowed;
}

.spytech-cart-item__quantity-input {
  width: 3rem;
  min-width: 3rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  font-family: var(--font-family-base);
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  appearance: textfield;
}

.spytech-cart-item__quantity-input::-webkit-outer-spin-button,
.spytech-cart-item__quantity-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.spytech-cart-item__remove {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2.8125rem;
  margin-left: 3.375rem;
  text-decoration: none;
}

.spytech-cart-item__remove:hover,
.spytech-cart-item__remove:focus-visible {
  text-decoration: none;
}

.spytech-cart-item__remove-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-cart-summary {
  border-top: 1px solid var(--soft-gray);
  border-bottom: 1px solid var(--soft-gray);
}

.spytech-cart-summary__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content 9.375rem;
  align-items: center;
  column-gap: 1.5rem;
  padding: 1.6875rem 0;
}

.spytech-cart-summary__row + .spytech-cart-summary__row {
  border-top: 1px solid var(--soft-gray);
}

.spytech-cart-summary__label {
  grid-column: 2;
  text-align: right;
  color: var(--black);
  font-weight: 400;
}

.spytech-cart-summary__value {
  grid-column: 3;
  text-align: right;
  color: var(--black);
}

.spytech-cart-summary__row--adjustment .spytech-cart-summary__value {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.spytech-cart-summary__row--subtotal .spytech-cart-summary__label,
.spytech-cart-summary__row--subtotal .spytech-cart-summary__value,
.spytech-cart-summary__row--adjustment .spytech-cart-summary__label,
.spytech-cart-summary__row--adjustment .spytech-cart-summary__value {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.spytech-cart-summary__row--total .spytech-cart-summary__label {
  font-size: 1rem;
  line-height: 1.5;
}

.spytech-cart-summary__row--total .spytech-cart-summary__value {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
}

.spytech-cart-summary__value .woocommerce-Price-amount,
.spytech-cart-summary__value .amount {
  color: currentColor;
}

.spytech-cart-summary__value .woocommerce-remove-coupon {
  margin-left: 0.5rem;
  color: var(--dark-gray);
  font-size: 0.75rem;
  line-height: 1.25rem;
}

.spytech-cart-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.875rem;
}

.spytech-cart-coupon {
  flex: 0 0 23.875rem;
  max-width: 100%;
}

.spytech-cart-coupon__notices {
  margin-bottom: 0.75rem;
}

.spytech-cart-coupon__control {
  display: flex;
  align-items: center;
  width: 23.875rem;
  max-width: 100%;
  min-height: 2.8125rem;
  border: 0.5px solid var(--black);
  border-radius: 3.125rem;
  overflow: hidden;
  background-color: var(--white);
}

.spytech-cart-coupon__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 2.8125rem;
  padding: 0 1.875rem;
  border: 0;
  background: transparent;
  color: var(--black);
  font-family: var(--font-family-base);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
}

.spytech-cart-coupon__input:focus,
.spytech-cart-coupon__input:focus-visible {
  outline: none;
  box-shadow: none;
}

.spytech-cart-coupon__input::placeholder {
  color: var(--medium-gray);
  opacity: 1;
}

.spytech-cart-coupon__submit.st-button {
  flex: 0 0 9.125rem;
  width: 9.125rem;
  padding-right: 1rem;
  padding-left: 1rem;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  white-space: nowrap;
}

.spytech-cart-coupon__hint {
  margin: 0.625rem 0 0;
  color: var(--dark-gray);
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
}

.spytech-cart-actions__checkout {
  flex: 0 0 auto;
  margin-left: auto;
}

.spytech-cart-actions__checkout-button.st-button {
  width: 21.375rem;
}

.spytech-cart-form__noscript-actions {
  margin-top: 1rem;
}

.spytech-cart__notices .woocommerce-notices-wrapper {
  margin: 0;
}

.spytech-cart__notices .woocommerce-error,
.spytech-cart__notices .woocommerce-info,
.spytech-cart__notices .woocommerce-message,
.spytech-cart__notices .wc-empty-cart-message {
  margin: 0;
  padding: 0.75rem 1rem;
  border: 1px solid var(--soft-gray);
  border-radius: 0.625rem;
  list-style: none;
  background-color: var(--light-gray);
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.spytech-cart__notices .woocommerce-error + .woocommerce-error,
.spytech-cart__notices .woocommerce-info + .woocommerce-info,
.spytech-cart__notices .woocommerce-message + .woocommerce-message {
  margin-top: 0.5rem;
}

.spytech-cart__notices .button,
.spytech-cart__notices a {
  color: var(--black);
}

.spytech-cart-card--empty {
  padding-bottom: 2.5rem;
}

.spytech-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.spytech-cart-empty__notices {
  width: min(100%, 32rem);
}

.spytech-cart-empty__message .cart-empty,
.spytech-cart-empty__message .wc-empty-cart-message {
  margin: 0;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.spytech-cart-empty__actions {
  margin: 0;
}

.spytech-cart-empty__button.st-button {
  min-width: 21.375rem;
}

.woocommerce-checkout-page__layout {
  padding-top: 0;
  padding-bottom: 6.25rem;
}

.spytech-checkout-page {
  color: var(--black);
  overflow: hidden;
}

.spytech-checkout-page__content {
  margin-top: 1.875rem;
}

.spytech-checkout-page .woocommerce-notices-wrapper:empty {
  display: none;
  margin-bottom: 0;
}

.spytech-checkout-page .woocommerce-notices-wrapper {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.spytech-checkout-page .woocommerce-NoticeGroup {
  margin: 0 0 1.5rem;
}

.spytech-checkout-page .woocommerce-error,
.spytech-checkout-page .woocommerce-info,
.spytech-checkout-page .woocommerce-message {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 1rem 1.5rem 1rem 1.625rem;
  border: 1px solid var(--soft-gray);
  border-radius: 0.625rem;
  list-style: none;
  background-color: var(--white);
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  box-shadow: none;
}

.spytech-checkout-page .woocommerce-error::before,
.spytech-checkout-page .woocommerce-info::before,
.spytech-checkout-page .woocommerce-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.3125rem;
  background-color: var(--soft-gray);
}

.spytech-checkout-page .woocommerce-error {
  border-color: var(--orange);
}

.spytech-checkout-page .woocommerce-error::before {
  background-color: var(--orange);
}

.spytech-checkout-page .woocommerce-info::before {
  background-color: var(--medium-gray);
}

.spytech-checkout-page .woocommerce-message {
  border-color: var(--yellow);
}

.spytech-checkout-page .woocommerce-message::before {
  background-color: var(--yellow);
}

.spytech-checkout-page .woocommerce-error li,
.spytech-checkout-page .woocommerce-info li,
.spytech-checkout-page .woocommerce-message li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spytech-checkout-page .woocommerce-error li + li,
.spytech-checkout-page .woocommerce-info li + li,
.spytech-checkout-page .woocommerce-message li + li {
  margin-top: 0.5rem;
}

.spytech-checkout-page .woocommerce-error strong,
.spytech-checkout-page .woocommerce-info strong,
.spytech-checkout-page .woocommerce-message strong {
  font-weight: 600;
}

.spytech-checkout-page .woocommerce-error a,
.spytech-checkout-page .woocommerce-info a,
.spytech-checkout-page .woocommerce-message a {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.spytech-checkout-page .woocommerce-error + .woocommerce-error,
.spytech-checkout-page .woocommerce-info + .woocommerce-info,
.spytech-checkout-page .woocommerce-message + .woocommerce-message {
  margin-top: 0.5rem;
}

.spytech-checkout {
  margin: 0;
  color: var(--black);
}

.spytech-checkout__layout {
  display: grid;
  grid-template-columns: 44.375rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.spytech-checkout__main,
.spytech-checkout__sidebar {
  min-width: 0;
}

.spytech-checkout__sidebar {
  padding-top: 1.5625rem;
}

.spytech-checkout-card {
  overflow: hidden;
  border-radius: 0.625rem;
  background-color: var(--white);
}

.spytech-checkout-card__header {
  min-height: 2.1875rem;
  padding: 0.34375rem 1.5rem;
  background-color: var(--medium-gray);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}

.spytech-checkout-card__body {
  padding: 1.875rem 2.25rem 3.125rem;
}

.spytech-checkout-section + .spytech-checkout-section,
.spytech-checkout__after-shipping > .spytech-checkout-section + .spytech-checkout-section {
  margin-top: 1rem;
}

.spytech-checkout-section__title {
  margin: 0 0 1.5rem;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.spytech-checkout-buyer-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.875rem;
}

.spytech-checkout-buyer-option {
  position: relative;
}

.spytech-checkout-buyer-option__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.spytech-checkout-buyer-option__card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  min-height: 5.875rem;
  padding: 0.75rem 1.0625rem;
  border: 1px solid var(--soft-gray);
  border-radius: 0.625rem;
  background-color: var(--light-gray);
  color: var(--black);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.spytech-checkout-buyer-option__input:checked + .spytech-checkout-buyer-option__card {
  border-color: var(--orange);
  background-color: var(--yellow);
}

.spytech-checkout-buyer-option__icon {
  position: relative;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
}

.spytech-checkout-buyer-option__icon-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.spytech-checkout-buyer-option__icon-image--active {
  opacity: 0;
}

.spytech-checkout-buyer-option__icon-image--inactive {
  opacity: 1;
}

.spytech-checkout-buyer-option__input:checked + .spytech-checkout-buyer-option__card .spytech-checkout-buyer-option__icon-image--active {
  opacity: 1;
}

.spytech-checkout-buyer-option__input:checked + .spytech-checkout-buyer-option__card .spytech-checkout-buyer-option__icon-image--inactive {
  opacity: 0;
}

.spytech-checkout-buyer-option__content {
  min-width: 0;
}

.spytech-checkout-buyer-option__title {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.spytech-checkout-buyer-option__arrow {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.spytech-checkout-buyer-option__arrow-image {
  display: block;
  width: auto;
  height: 0.6875rem;
  transform: translateY(1px);
}

.spytech-checkout-buyer-option__description {
  display: block;
  margin-top: 0.5rem;
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1.66;
  font-weight: 400;
}

.spytech-checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 0;
}

.spytech-checkout-fields--delivery,
.spytech-checkout-fields--notes,
.spytech-checkout-fields--consents {
  /*margin-top: 1.875rem;*/
}
.spytech-checkout-fields--delivery {
  margin-top: 1.875rem;
}
.spytech-checkout-section.spytech-checkout-section--notes,
.spytech-checkout-section.spytech-checkout-section--payment {
  margin-top: 0.875rem;
}

.spytech-checkout-fields--notes,
.spytech-checkout-fields--consents {
  grid-template-columns: minmax(0, 1fr);
}

.spytech-checkout-fields > .form-row {
  width: 100%;
  float: none;
  margin: 0 0 1.25rem;
}

.spytech-checkout-fields > .form-row.form-row-wide,
.spytech-checkout-fields > .form-row.notes {
  grid-column: 1 / -1;
}

.spytech-checkout label,
.spytech-checkout .woocommerce-form__label,
.spytech-checkout .wc_payment_method > label {
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.spytech-checkout .form-row > label:not(.woocommerce-form__label) {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
}

.spytech-checkout input[type="text"],
.spytech-checkout input[type="email"],
.spytech-checkout input[type="tel"],
.spytech-checkout input[type="password"],
.spytech-checkout input[type="search"],
.spytech-checkout textarea,
.spytech-checkout select {
  width: 100%;
  border: 1px solid var(--soft-gray);
  border-radius: 0.625rem;
  background-color: var(--light-gray);
  color: var(--black);
  font-family: var(--font-family-base);
  font-size: 0.75rem;
  line-height: 1.3333333333;
  font-weight: 500;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.spytech-checkout input[type="text"],
.spytech-checkout input[type="email"],
.spytech-checkout input[type="tel"],
.spytech-checkout input[type="password"],
.spytech-checkout input[type="search"],
.spytech-checkout select {
  height: 2.5rem;
  padding: 0 0.875rem;
}

.spytech-checkout textarea {
  min-height: 15rem;
  padding: 0.9375rem 0.875rem;
  resize: vertical;
}

.spytech-checkout input::placeholder,
.spytech-checkout textarea::placeholder {
  color: var(--medium-gray);
  opacity: 1;
}

.spytech-checkout input:focus,
.spytech-checkout textarea:focus,
.spytech-checkout select:focus {
  border-color: var(--medium-gray);
  outline: none;
  box-shadow: 0 0 0 3px var(--light-gray);
}

.spytech-checkout .input-radio,
.spytech-checkout .input-checkbox {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  background-color: var(--white);
  border: 1.5px solid var(--medium-gray);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.spytech-checkout .input-radio {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
}

.spytech-checkout .input-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  transform: translateY(5px);
}

.spytech-checkout .input-radio:checked {
  border-color: var(--yellow);
  background: radial-gradient(circle at center, var(--black) 0 0.3125rem, var(--yellow) 0.3125rem 100%);
}

.spytech-checkout .input-checkbox:checked {
  border-color: var(--yellow);
  background-color: var(--yellow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%231e1e1e' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M2 6.2 4.5 8.7 10 3.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem 0.75rem;
}

.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="text"],
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="email"],
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="tel"],
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="password"],
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="search"],
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid textarea,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid select,
.spytech-checkout.spytech-checkout--show-validation .form-row input[aria-invalid="true"],
.spytech-checkout.spytech-checkout--show-validation .form-row textarea[aria-invalid="true"],
.spytech-checkout.spytech-checkout--show-validation .form-row select[aria-invalid="true"] {
  border-color: var(--error-red);
}

.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="text"]::placeholder,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="email"]::placeholder,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="tel"]::placeholder,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="password"]::placeholder,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="search"]::placeholder,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid textarea::placeholder,
.spytech-checkout.spytech-checkout--show-validation .form-row input[aria-invalid="true"]::placeholder,
.spytech-checkout.spytech-checkout--show-validation .form-row textarea[aria-invalid="true"]::placeholder {
  color: var(--error-red);
}

.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="text"]:focus,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="email"]:focus,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="tel"]:focus,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="password"]:focus,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid input[type="search"]:focus,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid textarea:focus,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid select:focus,
.spytech-checkout.spytech-checkout--show-validation .form-row input[aria-invalid="true"]:focus,
.spytech-checkout.spytech-checkout--show-validation .form-row textarea[aria-invalid="true"]:focus,
.spytech-checkout.spytech-checkout--show-validation .form-row select[aria-invalid="true"]:focus {
  border-color: var(--error-red);
}

.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid .input-radio,
.spytech-checkout.spytech-checkout--show-validation .form-row.woocommerce-invalid .input-checkbox,
.spytech-checkout.spytech-checkout--show-validation .form-row .input-radio[aria-invalid="true"],
.spytech-checkout.spytech-checkout--show-validation .form-row .input-checkbox[aria-invalid="true"] {
  border-color: var(--error-red);
}

.spytech-checkout .checkout-inline-error-message {
  display: none;
  margin: 0.5rem 0 0;
  color: var(--error-red);
  font-size: 0.75rem;
  line-height: 1.3333333333;
  font-weight: 500;
}

.spytech-checkout.spytech-checkout--show-validation .checkout-inline-error-message {
  display: block;
  margin: 0.5rem 0 0;
  color: var(--error-red);
  font-size: 0.75rem;
  line-height: 1.3333333333;
  font-weight: 500;
}

.spytech-checkout-radio {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  column-gap: 0.875rem;
  align-items: start;
  width: 100%;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
  cursor: pointer;
}

.spytech-checkout-radio__input {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0.1875rem;
}

.spytech-checkout-radio__label {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.spytech-checkout-shipping-options {
  display: grid;
  gap: 1.125rem;
}

.spytech-checkout-choice-field--shipping.is-disabled .spytech-checkout-radio {
  color: var(--medium-gray);
  cursor: not-allowed;
}

.spytech-checkout-choice-field--shipping.is-disabled .spytech-checkout-radio__input {
  cursor: not-allowed;
}

.spytech-checkout-shipping-options__notice {
  margin: 0.875rem 0 0;
  color: var(--dark-gray);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
}

.spytech-checkout .woocommerce-form__label-for-checkbox {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  column-gap: 0.875rem;
  align-items: start;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
}

.spytech-checkout .woocommerce-form__label-for-checkbox .input-checkbox {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0.1875rem;
  transform: none;
}

.spytech-checkout .woocommerce-form__label-for-checkbox .optional,
.spytech-checkout .woocommerce-form__label-for-checkbox .required {
  display: none;
}

.spytech-checkout .woocommerce-form__label-for-checkbox a {
  color: currentColor;
}

.spytech-checkout .woocommerce-form__label-for-checkbox span {
  grid-column: 2;
  grid-row: 1;
  display: block;
  min-width: 0;
}

.spytech-checkout-fields--consents .woocommerce-input-wrapper {
  display: block;
}

.spytech-checkout-fields--consents .woocommerce-input-wrapper > label.checkbox {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 2.125rem;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
  cursor: pointer;
}

.spytech-checkout-fields--consents .woocommerce-input-wrapper > label.checkbox .input-checkbox {
  position: absolute;
  top: /*0.1875rem*/ 0;
  left: 0;
  margin: 0;
  transform: none;
}

.spytech-checkout-fields--consents .woocommerce-input-wrapper > label.checkbox a {
  color: currentColor;
}

.spytech-checkout-hidden-fields {
  display: none;
}

.spytech-checkout-payment__methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spytech-checkout-payment__methods > .wc_payment_method + .wc_payment_method {
  margin-top: 1.5rem;
}

.spytech-checkout-payment .wc_payment_method {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  column-gap: 0.875rem;
  row-gap: 0.4375rem;
  align-items: start;
}

.spytech-checkout-payment .wc_payment_method > label {
  grid-column: 2;
  grid-row: 1;
  display: block;
  min-width: 0;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 600;
  cursor: pointer;
}

.spytech-checkout-payment .wc_payment_method > input.input-radio {
  grid-column: 1;
  grid-row: 1;
  margin-top: /*0.1875rem*/ 0;
  margin-right: 0;
}

.spytech-checkout-payment .wc_payment_method > label img {
  width: auto;
  max-height: 1.875rem;
  margin-left: 0.75rem;
}

.spytech-checkout-payment .wc_payment_method.payment_method_ecommerceconnect > label {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.spytech-checkout-payment .wc_payment_method.payment_method_ecommerceconnect .spytech-gateway-title__text {
  display: inline-block;
  white-space: nowrap;
}

.spytech-checkout-payment .wc_payment_method.payment_method_ecommerceconnect .spytech-gateway-title__icon {
  display: inline-flex;
  align-items: center;
}

.spytech-checkout-payment .payment_box {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.spytech-checkout-payment .payment_box::before {
  display: none;
}

.spytech-checkout-payment__actions {
  margin: 2rem 0 0;
}

.spytech-checkout-payment__submit.st-button {
  width: 21.375rem;
  max-width: 100%;
}

.spytech-checkout-summary {
  color: var(--black);
}

#ecommerceconnect_payment_form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

#ecommerceconnect_payment_form .button,
#ecommerceconnect_payment_form .button-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height-default);
  padding: 0 2rem;
  border: var(--button-border-width) solid transparent;
  border-radius: var(--button-border-radius);
  font-family: var(--font-family-base);
  font-size: var(--button-font-size);
  line-height: var(--button-line-height);
  font-weight: var(--button-font-weight);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

#ecommerceconnect_payment_form .button {
  margin-right: 0 !important;
  background-color: var(--button-secondary-background);
  color: var(--button-text-color);
}

#ecommerceconnect_payment_form .button:hover,
#ecommerceconnect_payment_form .button:focus-visible {
  background-color: var(--button-secondary-background-hover);
  color: var(--button-text-color);
  text-decoration: none;
}

#ecommerceconnect_payment_form .button-alt {
  background-color: var(--button-primary-background);
  color: var(--button-text-color);
}

#ecommerceconnect_payment_form .button-alt:hover,
#ecommerceconnect_payment_form .button-alt:focus-visible {
  background-color: var(--button-primary-background-hover);
  color: var(--button-text-color);
  text-decoration: none;
}

#ecommerceconnect_payment_form .button:focus-visible,
#ecommerceconnect_payment_form .button-alt:focus-visible {
  outline: none;
}

#ecommerceconnect_payment_form .button:active,
#ecommerceconnect_payment_form .button-alt:active {
  box-shadow: 0 0 0 var(--button-outline-size) var(--button-active-outline-color);
}

.spytech-checkout-summary__title {
  margin: 0 0 1.5rem;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.spytech-checkout-summary__item {
  display: grid;
  grid-template-columns: 3.75rem minmax(0, 1fr) auto;
  gap: 0 1.25rem;
  align-items: start;
  padding-bottom: 1.875rem;
}

.spytech-checkout-summary__item + .spytech-checkout-summary__item {
  padding-top: 1.875rem;
  border-top: 1px solid var(--soft-gray);
}

.spytech-checkout-summary__image-shell {
  position: relative;
  width: 3.75rem;
}

.spytech-checkout-summary__image {
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.625rem;
  object-fit: cover;
  background-color: var(--light-gray);
}

.spytech-checkout-summary__badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.4375rem;
  height: 1.4375rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  color: var(--light-gray);
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
}

.spytech-checkout-summary__content {
  min-width: 0;
}

.spytech-checkout-summary__item-title,
.spytech-checkout-summary__item-sku,
.spytech-checkout-summary__item-unit-price,
.spytech-checkout-summary__total-value {
  margin: 0;
}

.spytech-checkout-summary__item-title {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.spytech-checkout-summary__item-sku {
  margin-top: 0.125rem;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
}

.spytech-checkout-summary__item-unit-price {
  margin-top: 0.125rem;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

.spytech-checkout-summary__item-meta {
  margin-top: 0.375rem;
  color: var(--dark-gray);
  font-size: 0.75rem;
  line-height: 1.5;
}

.spytech-checkout-summary__item-meta p,
.spytech-checkout-summary__item-meta dl,
.spytech-checkout-summary__item-meta dt,
.spytech-checkout-summary__item-meta dd {
  margin: 0;
}

.spytech-checkout-summary__item-meta dd {
  margin-left: 0;
}

.spytech-checkout-summary__total-value {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.spytech-checkout-summary__adjustments {
  margin-top: 1.875rem;
  padding-top: 1.875rem;
  border-top: 1px solid var(--soft-gray);
}

.spytech-checkout-summary__adjustment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--dark-gray);
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.spytech-checkout-summary__adjustment-row + .spytech-checkout-summary__adjustment-row {
  margin-top: 0.875rem;
}

.spytech-checkout-summary__adjustment-value {
  text-align: right;
}

.spytech-checkout-summary__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.875rem;
  padding-top: 1.875rem;
  border-top: 1px solid var(--soft-gray);
}

.spytech-checkout-summary__footer-label {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

.spytech-checkout-summary__footer-value {
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: right;
}

.spytech-checkout-summary__native-shipping {
  display: none;
}

.spytech-checkout-summary,
.spytech-checkout-payment {
  position: relative;
}

.spytech-checkout-summary > .blockUI.blockOverlay,
.spytech-checkout-payment > .blockUI.blockOverlay {
  top: -0.5rem !important;
  right: -0.75rem !important;
  bottom: -0.5rem !important;
  left: -0.75rem !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0.625rem;
}

.spytech-confirmation-page {
  color: var(--black);
  overflow: hidden;
}

.spytech-confirmation-page__content {
  margin-top: 1.875rem;
}

.spytech-confirmation-card {
  border-radius: 0.625rem;
  background-color: var(--white);
  padding: 3.125rem 2.9375rem 3.25rem;
}

.spytech-confirmation-card__hero {
  display: grid;
  grid-template-columns: 4.0625rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.spytech-confirmation-card__hero-icon {
  display: block;
  width: 4.0625rem;
  height: 4.0625rem;
}

.spytech-confirmation-card__hero-title {
  margin: 0;
  color: var(--black);
  font-size: 1.5625rem;
  line-height: 1.2;
  font-weight: 600;
}

.spytech-confirmation-card__rows--intro {
  margin-top: 2.625rem;
}

.spytech-confirmation-card__rows {
  display: grid;
  gap: 1rem;
}

.spytech-confirmation-card__row {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  column-gap: 2rem;
  align-items: start;
}

.spytech-confirmation-card__label {
  min-width: 0;
  color: var(--medium-gray);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
}

.spytech-confirmation-card__value {
  min-width: 0;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.spytech-confirmation-card__group {
  margin-top: 2.625rem;
}

.spytech-confirmation-card__group-title {
  margin: 0;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.spytech-confirmation-card__divider {
  width: 100%;
  height: 1px;
  margin: 1.5625rem 0;
  background-color: var(--soft-gray);
}

.spytech-confirmation-card__muted {
  margin: 0;
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

.spytech-confirmation-card__richtext {
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.spytech-confirmation-card__richtext > :first-child {
  margin-top: 0;
}

.spytech-confirmation-card__richtext > :last-child {
  margin-bottom: 0;
}

.spytech-confirmation-card__richtext h2,
.spytech-confirmation-card__richtext h3,
.spytech-confirmation-card__richtext h4 {
  margin: 0 0 1rem;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.spytech-confirmation-card__richtext p {
  margin: 0 0 1rem;
}

.spytech-confirmation-card__richtext ul,
.spytech-confirmation-card__richtext ol {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.spytech-confirmation-card__richtext li + li {
  margin-top: 0.75rem;
}

.spytech-confirmation-card__richtext .wc-bacs-bank-details-account-name {
  margin-top: 1.5rem;
}

.spytech-confirmation-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.spytech-confirmation-summary .spytech-checkout-summary__title {
  margin-bottom: 2.625rem;
}

.spytech-confirmation-summary .spytech-checkout-summary__item {
  padding-bottom: 2.625rem;
}

.spytech-confirmation-summary .spytech-checkout-summary__item + .spytech-checkout-summary__item {
  padding-top: 2.625rem;
}

.spytech-confirmation-summary__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.625rem;
  padding-top: 2.625rem;
  border-top: 1px solid var(--soft-gray);
}

.spytech-confirmation-summary__total-label,
.spytech-confirmation-summary__total-value {
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
}

.spytech-confirmation-summary__total-value {
  text-align: right;
}

.spytech-confirmation__fallback {
  width: min(100%, 44.375rem);
}

@media (max-width: 63.9375rem) {
  .woocommerce-cart-page__layout {
    padding-bottom: 5rem;
  }

  .woocommerce-checkout-page__layout {
    padding-bottom: 5rem;
  }

  .spytech-order-progress__list {
    gap: 2.5rem;
  }

  .spytech-order-progress__label {
    white-space: normal;
  }

  .spytech-cart-card {
    padding: 2.5rem 2rem 1.5rem;
  }

  .spytech-cart-item__remove {
    margin-left: 2rem;
  }

  .spytech-cart-summary__row {
    grid-template-columns: minmax(0, 1fr) max-content 8rem;
  }

  .spytech-checkout__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .spytech-checkout__sidebar {
    padding-top: 0;
  }

  .spytech-confirmation-summary {
    margin-top: 2.625rem;
  }
}

@media (max-width: 47.9375rem) {
  .woocommerce-cart-page__layout {
    padding-bottom: 6.25rem;
  }

  .woocommerce-checkout-page__layout {
    padding-bottom: 6.25rem;
  }

  .spytech-order-progress {
    margin-top: 1.875rem;
  }

  .spytech-order-progress__line {
    display: none;
  }

  .spytech-order-progress__inner {
    min-height: 0;
  }

  .spytech-order-progress__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.875rem;
    width: 100%;
  }

  .spytech-order-progress__item {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .spytech-order-progress__label {
    margin-left: 0;
    font-size: 1rem;
    line-height: 1.25;
    white-space: normal;
  }

  .spytech-order-progress__link {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .spytech-confirmation-card {
    padding: 2.1875rem 2rem 2.5rem;
  }

  .spytech-confirmation-card__hero {
    align-items: start;
  }

  .spytech-confirmation-card__row {
    grid-template-columns: 8.75rem minmax(0, 1fr);
    column-gap: 1.25rem;
  }

  .spytech-confirmation-summary .spytech-checkout-summary__title {
    margin-bottom: 1.875rem;
  }

  .spytech-confirmation-summary__footer {
    margin-top: 1.875rem;
    padding-top: 1.875rem;
  }

  .spytech-confirmation-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .spytech-checkout-page .woocommerce-error,
  .spytech-checkout-page .woocommerce-info,
  .spytech-checkout-page .woocommerce-message {
    padding: 0.875rem 1rem 0.875rem 1.125rem;
  }

  .spytech-cart-page__content {
    margin-top: 1.875rem;
  }

  .spytech-cart-card {
    padding: 2.9375rem 1.25rem 1.875rem;
  }

  .spytech-cart-item {
    align-items: flex-start;
    gap: 1rem;
  }

  .spytech-cart-item__main {
    display: block;
  }

  .spytech-cart-item__content {
    padding-top: 0;
  }

  .spytech-cart-item__media {
    margin-bottom: 1.25rem;
  }

  .spytech-cart-item__actions {
    display: grid;
    grid-template-rows: auto 1fr;
    justify-items: end;
    align-self: stretch;
    gap: 1.25rem;
  }

  .spytech-cart-item__remove {
    grid-row: 1;
    margin-left: 0;
  }

  .spytech-cart-item__quantity {
    grid-row: 2;
    align-self: start;
    margin-top: 0.9375rem;
  }

  .spytech-cart-summary__row {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1rem;
  }

  .spytech-cart-summary__label {
    grid-column: 1;
    text-align: left;
  }

  .spytech-cart-summary__value {
    grid-column: 2;
  }

  .spytech-cart-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.875rem;
  }

  .spytech-cart-coupon {
    flex-basis: auto;
    width: 100%;
  }

  .spytech-cart-coupon__control {
    width: 100%;
  }

  .spytech-cart-actions__checkout {
    width: 100%;
    margin-left: 0;
  }

  .spytech-cart-actions__checkout-button.st-button,
  .spytech-cart-empty__button.st-button {
    width: 100%;
    min-width: 0;
  }

  .spytech-checkout-page__content {
    margin-top: 1.875rem;
  }

  .spytech-checkout-card__body {
    padding: 1.875rem 1.75rem 2.5rem;
  }

  .spytech-checkout-buyer-options,
  .spytech-checkout-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .spytech-checkout-buyer-option__card {
    min-height: 0;
  }

  .spytech-checkout-payment__submit.st-button {
    width: 100%;
  }

  .spytech-checkout-payment .wc_payment_method.payment_method_ecommerceconnect .spytech-gateway-title__icon {
    flex-basis: 100%;
    margin-top: 0.25rem;
  }

  .spytech-checkout-payment .wc_payment_method.payment_method_ecommerceconnect > label img {
    margin-left: 0;
  }

  .spytech-checkout-summary__title {
    margin-bottom: 1.875rem;
  }

  .spytech-checkout-summary__item {
    grid-template-columns: 3.75rem minmax(0, 1fr) auto;
    gap: 0 1rem;
  }

  .spytech-checkout-summary__footer {
    align-items: center;
  }

  .spytech-checkout-summary__footer-value {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Product category intro */
.spytech-category-intro {
  color: var(--black);
}

.spytech-category-intro__surface {
  padding-top: calc(5rem - var(--breadcrumbs-offset-top) - var(--breadcrumbs-line-height));
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--soft-gray);
  margin-bottom: 2.5rem;
}

.spytech-category-intro__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: space-between;
  column-gap: 1.5rem;
  align-items: start;
}

.spytech-category-intro__content,
.spytech-category-intro__media {
  min-width: 0;
  width: 100%;
}

.spytech-category-intro__content {
  max-width: 36.75rem;
}

.spytech-category-intro__heading {
  margin: 0 0 1.375rem;
  color: var(--black);
  font-size: 1.875rem;
  line-height: 1.1666666667;
  font-weight: 600;
}

.spytech-category-intro__desktop-copy {
  display: block;
}

.spytech-category-intro__mobile-copy {
  display: none;
}

.spytech-category-intro__richtext,
.spytech-category-intro__video-copy {
  color: var(--dark-gray);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
}

.spytech-category-intro__richtext > :first-child,
.spytech-category-intro__video-copy > :first-child {
  margin-top: 0;
}

.spytech-category-intro__richtext > :last-child,
.spytech-category-intro__video-copy > :last-child {
  margin-bottom: 0;
}

.spytech-category-intro__richtext p,
.spytech-category-intro__video-copy p {
  margin: 0 0 1.125rem;
}

.spytech-category-intro__richtext ul,
.spytech-category-intro__richtext ol {
  margin: 0 0 1.125rem;
  padding-left: 1.25rem;
}

.spytech-category-intro__richtext strong,
.spytech-category-intro__richtext b,
.spytech-category-intro__video-copy strong,
.spytech-category-intro__video-copy b {
  color: var(--black);
  font-weight: 600;
}

.spytech-category-intro__video-copy--desktop {
  margin-top: 1.125rem;
}

.spytech-category-intro__media {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.spytech-category-intro__media--mobile {
  display: none;
}

.spytech-category-intro__media[hidden] {
  display: none;
}

.spytech-category-intro__video-shell {
  width: 100%;
}

.spytech-category-intro__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0;
  margin: 0.75rem 0 1.25rem;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

.spytech-category-intro__toggle:focus-visible {
  outline: 0.125rem solid currentColor;
  outline-offset: 0.1875rem;
}

.spytech-category-intro__toggle-chevron {
  width: 0.625rem;
  height: 0.625rem;
  border-right: 0.078125rem solid currentColor;
  border-bottom: 0.078125rem solid currentColor;
  transform: translateY(-0.0625rem) rotate(45deg);
  transition: transform 0.25s ease;
}

.spytech-category-intro__toggle[aria-expanded="true"] .spytech-category-intro__toggle-chevron {
  transform: translateY(0.125rem) rotate(-135deg);
}

@media (min-width: 48rem) {
  .spytech-category-intro--desktop-condensed .spytech-category-intro__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .spytech-category-intro--desktop-condensed .spytech-category-intro__content {
    max-width: none;
  }

  .spytech-category-intro--desktop-condensed .spytech-category-intro__heading {
    margin-bottom: 0;
  }

  .spytech-category-intro--desktop-condensed .spytech-category-intro__desktop-copy,
  .spytech-category-intro--desktop-condensed .spytech-category-intro__media--desktop {
    display: none;
  }
}

@media (max-width: 47.9375rem) {
  .spytech-category-intro__surface {
    padding-top: calc(3.125rem - var(--breadcrumbs-offset-top) - var(--breadcrumbs-line-height));
    padding-bottom: 1.375rem;
    border-bottom: 0;
    margin-bottom: 0;
  }

  .spytech-category-intro__layout {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
  }

  .spytech-category-intro__content {
    max-width: none;
  }

  .spytech-category-intro__heading {
    margin-bottom: 0.75rem;
  }

  .spytech-category-intro__desktop-copy {
    display: none;
  }

  .spytech-category-intro__mobile-copy {
    display: block;
  }

  .spytech-category-intro__media--desktop {
    display: none;
  }

  .spytech-category-intro__video-copy--mobile,
  .spytech-category-intro__video-button,
  .spytech-category-intro__media--mobile {
    display: none;
  }

  .spytech-category-intro__mobile-summary,
  .spytech-category-intro__mobile-full,
  .spytech-category-intro__video-copy--mobile {
    color: var(--dark-gray);
    font-size: /*0.875rem*/ 0.78rem;
    line-height: 1.4285714286;
    font-weight: 400;
  }

  .spytech-category-intro__mobile-summary strong,
  .spytech-category-intro__mobile-summary b,
  .spytech-category-intro__mobile-full strong,
  .spytech-category-intro__mobile-full b,
  .spytech-category-intro__video-copy--mobile strong,
  .spytech-category-intro__video-copy--mobile b {
    color: var(--black);
    font-weight: 600;
  }

  .spytech-category-intro__mobile-summary em,
  .spytech-category-intro__mobile-summary i,
  .spytech-category-intro__mobile-full em,
  .spytech-category-intro__mobile-full i,
  .spytech-category-intro__video-copy--mobile em,
  .spytech-category-intro__video-copy--mobile i {
    font-style: italic;
  }

  .spytech-category-intro__mobile-summary[hidden],
  .spytech-category-intro__mobile-full[hidden] {
    display: none;
  }

  .spytech-category-intro__media--mobile[hidden] {
    display: none;
  }
}

.spytech-search-page__main-inner {
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
}

.spytech-search-page__header {
  display: grid;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.spytech-search-page__eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spytech-search-page__title {
  margin: 0;
  color: var(--black);
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
}

.spytech-search-page__summary {
  max-width: 42rem;
  margin: 0;
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 400;
}

.spytech-search-page__form-wrap {
  margin-top: 0.25rem;
}

.spytech-search-page__form {
  width: min(100%, 35rem);
}

.spytech-search-page__form .search-form {
  width: 100%;
}

.spytech-search-results__toolbar {
  margin-bottom: 1.25rem;
}

.spytech-search-results__toolbar .spytech-category-catalog__result-count {
  margin: 0;
}

.spytech-search-page__empty {
  display: grid;
  justify-items: center;
  gap: 0.875rem;
  padding: 2.5rem 1.5rem;
  border-radius: 0.625rem;
  background: var(--white);
  text-align: center;
}

.spytech-search-page__empty-title {
  margin: 0;
  color: var(--black);
  font-size: 1.75rem;
  line-height: 1.1428571429;
  font-weight: 700;
}

.spytech-search-page__empty-text {
  max-width: 34rem;
  margin: 0;
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.625;
}

.spytech-search-page__empty-action {
  min-width: 15rem;
  margin-top: 0.375rem;
}

/* Product category catalog */
.spytech-category-catalog {
  margin-bottom: 5rem;
  color: var(--black);
}

.spytech-category-catalog__layout {
  display: grid;
  grid-template-columns: var(--page-sidebar-width) minmax(0, 1fr);
  column-gap: var(--page-sidebar-gap);
  align-items: start;
}

.spytech-category-catalog__sidebar,
.spytech-category-catalog__main {
  min-width: 0;
}

.spytech-category-catalog__sidebar {
  display: block;
}

.spytech-category-catalog__sidebar-inner {
  display: flex;
  flex-direction: column;
}

.spytech-category-catalog__sidebar-header {
  display: none;
}

.spytech-category-catalog__sidebar-title {
  margin: 0;
}

.spytech-category-catalog__sidebar-close {
  display: none;
}

.spytech-category-catalog__filters-form {
  --spytech-category-sidebar-actions-bottom-gap: 2.5rem;
  --spytech-category-sidebar-actions-viewport-gap: 0px;
  position: relative;
  display: block;
  padding-bottom: calc(
    var(--spytech-category-sidebar-actions-height, 0px) +
    var(--spytech-category-sidebar-actions-bottom-gap)
  );
}

.spytech-category-catalog__sidebar-panel {
  padding: 0.875rem;
  background: var(--white);
  /*border: 1px solid var(--soft-gray);*/
  border-radius: 0.625rem;
}

.spytech-category-filters__price,
.spytech-category-filters__group {
  margin: 0;
}

.spytech-category-filters__group-title {
  margin: 0 0 0.625rem;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 700;
}

.spytech-category-filters__price-bounds {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.375rem;
  color: var(--medium-gray);
  font-size: 0.75rem;
  line-height: 1.3333333333;
  font-weight: 700;
}

.spytech-category-filters__price-slider {
  position: relative;
  height: 1.125rem;
  margin-bottom: 0.625rem;
}

.spytech-category-filters__price-slider-track,
.spytech-category-filters__price-slider-fill {
  position: absolute;
  top: 50%;
  height: 0.25rem;
  border-radius: 999px;
  transform: translateY(-50%);
}

.spytech-category-filters__price-slider-track {
  left: 0;
  right: 0;
  background: var(--dark-gray);
}

.spytech-category-filters__price-slider-fill {
  background: var(--dark-gray);
}

.spytech-category-filters__price-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: transparent;
  appearance: none;
  pointer-events: none;
}

.spytech-category-filters__price-range::-webkit-slider-runnable-track {
  height: 0.25rem;
  background: transparent;
}

.spytech-category-filters__price-range::-moz-range-track {
  height: 0.25rem;
  background: transparent;
}

.spytech-category-filters__price-range::-webkit-slider-thumb {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: -0.4375rem;
  border: 0;
  border-radius: 50%;
  background: var(--dark-gray);
  pointer-events: auto;
  appearance: none;
  cursor: pointer;
}

.spytech-category-filters__price-range::-moz-range-thumb {
  width: 1.125rem;
  height: 1.125rem;
  border: 0;
  border-radius: 50%;
  background: var(--dark-gray);
  pointer-events: auto;
  cursor: pointer;
}

.spytech-category-filters__price-range[disabled]::-webkit-slider-thumb,
.spytech-category-filters__price-range[disabled]::-moz-range-thumb {
  background: var(--soft-gray);
  cursor: default;
}

.spytech-category-filters__price-inputs {
  display: grid;
  grid-template-columns: 4.375rem 2.125rem 4.375rem;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.375rem;
}

.spytech-category-filters__price-input {
  width: 4.375rem;
  height: 1.875rem;
  min-height: 1.875rem;
  padding: 0 0.5rem;
  border: 1px solid var(--soft-gray);
  border-radius: 0.625rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
  text-align: center;
}

.spytech-category-filters__price-input::placeholder {
  color: var(--medium-gray);
}

.spytech-category-filters__price-separator {
  color: var(--medium-gray);
  font-size: 0.75rem;
  line-height: 1.6666666667;
  text-align: center;
}

.spytech-category-filters__price-summary {
  margin: 0;
  color: var(--dark-gray);
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
  text-align: center;
}

.spytech-category-filters__price {
  margin-bottom: 0.125rem;
}

.spytech-category-filters__group + .spytech-category-filters__group {
  margin-top: 0.625rem;
}

.spytech-category-filters__options {
  display: grid;
  gap: 0.125rem;
}

.spytech-category-filters__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  color: var(--black);
  cursor: pointer;
}

.spytech-category-filters__option.is-disabled {
  color: var(--soft-gray);
  cursor: not-allowed;
}

.spytech-category-filters__option-main {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.spytech-category-filters__checkbox {
  flex: 0 0 auto;
  width: 0.875rem;
  height: 0.875rem;
  margin: 0;
  border: 1.5px solid var(--medium-gray);
  border-radius: 5px;
  background-color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.5rem 0.5rem;
  appearance: none;
  cursor: pointer;
  outline: none;
}

.spytech-category-filters__checkbox[disabled] {
  cursor: not-allowed;
  border-color: var(--soft-gray);
}

.spytech-category-filters__checkbox:checked {
  border-color: var(--black);
  background-color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5.2 4 7.2 8 2.8' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7'/%3E%3C/svg%3E");
}

.spytech-category-filters__checkbox:checked[disabled] {
  border-color: var(--soft-gray);
  background-color: var(--soft-gray);
}

.spytech-category-filters__checkbox:focus-visible {
  box-shadow: 0 0 0 2px rgba(30, 30, 30, 0.12);
}

.spytech-category-filters__option-label,
.spytech-category-filters__option-count {
  color: currentColor;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
  transform: translateY(-1px);
}

.spytech-category-filters__option-label {
  min-width: 0;
}

.spytech-category-filters__option-count {
  flex: 0 0 auto;
  white-space: nowrap;
}

.spytech-category-filters__options--extra {
  margin-top: 0.125rem;
}

.spytech-category-filters__options--extra[hidden] {
  display: none;
}

.spytech-category-filters__group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: /*1.5625rem*/ 2rem;
  height: /*1.5625rem*/ 2rem;
  margin-top: 0.625rem;
  padding: 0 0.875rem 0 1.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--light-gray);
  color: var(--black);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.spytech-category-filters__group-toggle:hover,
.spytech-category-filters__group-toggle:focus-visible {
  background: var(--soft-gray);
  outline: none;
}

.spytech-category-filters__group-toggle.is-expanded {
  background: var(--soft-gray);
}

.spytech-category-filters__group-toggle-label {
  color: currentColor;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  font-weight: 500;
  /*transform: translateY(-1px);*/
}

.spytech-category-filters__group-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.875rem;
  height: 0.875rem;
  color: currentColor;
  transform: rotate(90deg);
  transition: transform 0.24s ease;
}

.spytech-category-filters__group-toggle.is-expanded .spytech-category-filters__group-toggle-icon {
  transform: rotate(-90deg);
}

.spytech-category-filters__group-toggle-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-category-catalog__sidebar-actions {
  position: fixed;
  left: 0;
  bottom: var(--spytech-category-sidebar-actions-viewport-gap, 0px);
  z-index: 20;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  height: 3.4375rem;
  padding: 0.625rem 0.875rem 0.9375rem;
  border-radius: 0.625rem 0.625rem 0 0;
  background: var(--light-gray);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.625rem);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.spytech-category-catalog__sidebar-actions.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.spytech-category-catalog__sidebar-actions.is-anchored {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--spytech-category-sidebar-actions-bottom-gap, 2.5rem);
  width: auto;
}

.spytech-category-catalog__sidebar-action {
  width: 100%;
  min-height: 1.875rem;
  height: 1.875rem;
  padding: 0 0.875rem;
  border-radius: 999px;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 700;
}

.spytech-category-catalog__sidebar-action.st-button--secondary {
  background: var(--soft-gray);
}

.spytech-category-catalog__sidebar-action.st-button--secondary:hover,
.spytech-category-catalog__sidebar-action.st-button--secondary:focus-visible {
  background: var(--medium-gray);
}

.spytech-category-catalog__sidebar-action.st-button--primary {
  background: var(--yellow);
}

.spytech-category-catalog__sidebar-action.st-button--primary:hover,
.spytech-category-catalog__sidebar-action.st-button--primary:focus-visible {
  background: var(--light-yellow);
}

.spytech-category-catalog__subcategories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
}

.spytech-category-catalog__subcategory {
  display: grid;
  grid-template-columns: 2.1875rem minmax(0, 1fr) 1.125rem;
  align-items: center;
  column-gap: 0.25rem;
  padding: 0.5625rem 0.75rem 0.5625rem 0.3125rem;
  border: 1px solid var(--soft-gray);
  border-radius: 0.625rem;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  transition: 
    box-shadow 0.2s ease;
}

.spytech-category-catalog__subcategory:hover,
.spytech-category-catalog__subcategory:focus-visible {
  outline: 1px solid var(--soft-gray);
  color: var(--black);
  text-decoration: none;
  box-shadow: 0 0 0.625rem 0 rgba(0,0,0,0.1);
}
.spytech-category-catalog__subcategory:active {
  outline: 1px solid var(--black);
  border: 1px solid var(--black);
  box-shadow: none;
}

.spytech-category-catalog__subcategory-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.1875rem;
  height: 2.1875rem;
  overflow: hidden;
}

.spytech-category-catalog__subcategory-icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spytech-category-catalog__subcategory-label {
  min-width: 0;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spytech-category-catalog__subcategory-arrow {
  display: block;
  flex: 0 0 auto;
  width: 1.125rem;
  height: 0.6875rem;
  align-self: end;
  margin-bottom: 0.1875rem;
  color: var(--black);
  background-color: currentColor;
  -webkit-mask: url("../st-images-woo/sub-cat-arrow.svg") center / contain no-repeat;
  mask: url("../st-images-woo/sub-cat-arrow.svg") center / contain no-repeat;
}

.spytech-category-catalog__toolbar {
  margin: 1.5625rem 0;
}

.spytech-category-catalog__filters-trigger {
  display: none;
}

.spytech-category-catalog__toolbar-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.spytech-category-catalog__ordering {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.spytech-category-catalog__ordering-label,
.spytech-category-catalog__result-count {
  margin: 0;
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
}

.spytech-category-catalog__ordering-control {
  position: relative;
  margin-right: 1.5rem;
}

.spytech-category-catalog__ordering-control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  width: 0.375rem;
  height: 0.375rem;
  border-right: 0.09375rem solid currentColor;
  border-bottom: 0.09375rem solid currentColor;
  color: var(--black);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.spytech-category-catalog__ordering-control .woocommerce-ordering {
  margin: 0;
  display: flex;
  align-items: center;
}

.spytech-category-catalog__ordering-control .orderby {
  min-width: 13rem;
  height: 1.5625rem;
  padding: 0 2.0625rem 0 0.9375rem;
  border: 0;
  border-radius: 999px;
  background: var(--soft-gray);
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
  appearance: none;
}

.spytech-category-catalog__view-toggle {
  display: none;
}

.spytech-category-catalog__result-count {
  margin-left: auto;
}

.spytech-category-catalog__products-wrap {
  min-width: 0;
}

.spytech-category-catalog__products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spytech-category-card {
  margin: 0;
  height: 100%;
}

.spytech-category-card__article {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0.625rem;
  box-shadow: 0 0 0 1px transparent, 0 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
  border-radius: 0.625rem;
  background: var(--white);
  overflow: hidden;
}

.spytech-category-card__article:hover,
.spytech-category-card__article:focus-within {
  box-shadow: 0 0 0 1px var(--light-gray), 0 0 10px rgba(0, 0, 0, 0.1);
}

.spytech-category-card__media-wrap {
  position: relative;
}

.spytech-category-card__badges {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  max-width: calc(100% - 4.5rem);
}

.spytech-category-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 1.375rem;
  padding-inline: 0.75rem;
  border-radius: 2.1875rem;
  color: var(--white);
  font-size: 0.75rem;
  line-height: 2.1666666667;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 100%;
  white-space: nowrap;
}

.spytech-category-card__badge strong {
  font-weight: 700;
}

.spytech-category-card__badge--sale {
  background: #d80000;
}

.spytech-category-card__badge--bestseller {
  background: var(--orange);
}

.spytech-category-card__badge--new {
  background: #63cf60;
}

.spytech-category-card__badge--recommended {
  background: #00a5ca;
}

.spytech-category-card__media-link {
  display: block;
  aspect-ratio: 1 / 1;
  background: /*var(--light-gray)*/ var(--white);
}

.spytech-category-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 10px 10px;
}

.spytech-category-card__controls {
  position: absolute;
  top: 0.75rem;
  right: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.spytech-category-card__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--black);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.spytech-category-card__control:hover,
.spytech-category-card__control:focus-visible {
  background: var(--soft-gray);
  outline: none;
}

.spytech-category-card__control:active,
.spytech-category-card__control.is-active,
.spytech-category-card__control[aria-pressed="true"] {
  background: var(--yellow);
}

.spytech-category-card__control-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.spytech-category-card__control-icon--wishlist {
  width: 1.1875rem;
  height: 1rem;
}

.spytech-category-card__control-icon--compare {
  width: 1.1875rem;
  height: 0.875rem;
}

.spytech-category-card__control-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-category-card__control-icon path,
.spytech-category-card__control-icon rect,
.spytech-category-card__control-icon circle,
.spytech-category-card__control-icon line {
  stroke: currentColor;
  fill: transparent;
}

.spytech-category-card__control--wishlist:active .spytech-category-card__control-icon path,
.spytech-category-card__control--wishlist.is-active .spytech-category-card__control-icon path,
.spytech-category-card__control--wishlist[aria-pressed="true"] .spytech-category-card__control-icon path {
  fill: currentColor;
  stroke: currentColor;
}

.spytech-category-card__footer {
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
  gap: 0.75rem;
  min-height: 5.875rem;
  margin-top: 0;
  padding: 0.625rem 0.625rem 0.875rem;
}

.spytech-category-card__content {
  flex: 1 1 auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 0.625rem;
  color: var(--black);
  text-decoration: none;
}

.spytech-category-card__content:hover,
.spytech-category-card__content:focus-visible {
  color: var(--black);
  text-decoration: none;
  outline: none;
}

.spytech-category-card__title {
  margin: 0;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
}

.spytech-category-card__price {
  margin: auto 0 0;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

.spytech-category-card__cart-button {
  position: relative;
  flex: 0 0 auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 0 0 transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.spytech-category-card__cart-button:hover,
.spytech-category-card__cart-button:focus-visible {
  background: var(--light-yellow);
  color: var(--black);
  text-decoration: none;
  outline: none;
}

.spytech-category-card__cart-button:active,
.spytech-category-card__cart-button.is-active {
  background: var(--yellow);
  box-shadow: 0 0 0 3px var(--light-gray);
}

.spytech-category-card__cart-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

.spytech-category-card__cart-button-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-category-card__cart-button.is-loading {
  pointer-events: none;
}

.spytech-category-card__cart-button.is-loading .spytech-category-card__cart-button-icon {
  opacity: 0;
}

.spytech-category-card__cart-button.is-loading::after {
  content: "";
  position: absolute;
  inset: 0.625rem;
  border: 0.125rem solid rgba(30, 30, 30, 0.25);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spytech-category-card-spin 0.7s linear infinite;
}

.spytech-category-catalog__no-products {
  padding: 1.5rem;
  border-radius: 0.625rem;
  background: var(--white);
}

.spytech-category-pagination {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.spytech-category-pagination__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: auto;
  min-width: 0;
  min-height: 2.5rem;
  padding-inline: 0.75rem;
  border-radius: 2.8125rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
  letter-spacing: -0.5px;
  line-height: 1;
}

.spytech-category-pagination__nav:not(.is-disabled):hover,
.spytech-category-pagination__nav:not(.is-disabled):focus-visible {
  background: var(--light-yellow);
  color: var(--black);
  text-decoration: none;
}

.spytech-category-pagination__nav.is-disabled {
  background: var(--soft-gray);
}

.spytech-category-pagination__nav--prev {
  order: 1;
}

.spytech-category-pagination__list {
  order: 2;
}

.spytech-category-pagination__nav--next {
  order: 3;
}

.spytech-category-pagination__nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.875rem;
  height: 0.875rem;
}

.spytech-category-pagination__nav-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes spytech-category-card-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 64rem) {
  .spytech-search-page__main-inner {
    padding-top: 1.875rem;
    padding-bottom: 3.5rem;
  }

  .spytech-search-page__header {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .spytech-search-page__title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .spytech-search-page__summary {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }

  .spytech-search-page__form {
    width: 100%;
  }

  .spytech-search-page__empty {
    padding: 2rem 1rem;
  }

  .spytech-search-page__empty-title {
    font-size: 1.375rem;
    line-height: 1.2727272727;
  }

  .spytech-search-page__empty-text {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }

  .spytech-category-catalog {
    margin-bottom: 3.5rem;
  }

  .spytech-category-catalog__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .spytech-category-catalog__sidebar {
    position: fixed;
    inset: 0;
    z-index: calc(var(--header-overlay-z-index) + 1);
    display: block;
    padding: 4.375rem max(1rem, calc((100vw - min(var(--page-shell-width-fluid), var(--page-shell-max-width))) / 2));
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
  }

  .spytech-category-catalog__sidebar.is-mobile-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .spytech-category-catalog__sidebar-inner {
    width: 100%;
    height: 100%;
    border-radius: 0.625rem;
    background: var(--white);
    overflow: hidden;
  }

  .spytech-category-catalog__sidebar-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    min-height: 5rem;
    padding-inline: 1.5625rem;
  }

  .spytech-category-catalog__sidebar-title {
    color: var(--black);
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
  }

  .spytech-category-catalog__sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8125rem;
    height: 2.8125rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .spytech-category-catalog__sidebar-close-icon {
    display: block;
    width: 100%;
    height: 100%;
  }

  .spytech-category-catalog__sidebar-close-fallback {
    color: var(--black);
    font-size: 2rem;
    line-height: 1;
  }

  .spytech-category-catalog__filters-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 0;
  }

  .spytech-category-catalog__sidebar-panel {
    flex: 1 1 auto;
    min-height: 0;
    padding: 0 1.5625rem;
    border-radius: 0;
    background: transparent;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .spytech-category-catalog__sidebar-actions {
    position: static;
    left: auto;
    bottom: auto;
    z-index: auto;
    grid-template-columns: /*minmax(0, 1fr)*/ 1fr 1fr;
    align-content: center;
    gap: 0.9375rem;
    width: auto;
    height: 12.1875rem;
    padding: 1.5625rem;
    border-radius: 0;
    background: var(--white);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .spytech-category-catalog__sidebar-action {
    min-height: 3.75rem;
    height: 3.75rem;
    border-radius: 3.125rem;
  }

  .spytech-category-catalog__subcategories {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.625rem;
  }

  .spytech-category-catalog__subcategory {
    padding: 0.4375rem 1rem 0.4375rem 0.3125rem;
    column-gap: 0.5rem;
  }
  .spytech-category-catalog__subcategory-arrow {
    margin-bottom: 0.55rem;
  }

  .spytech-category-catalog__filters-trigger {
    display: inline-flex;
    position: sticky;
    top: calc(var(--wp-admin-bar-offset) + var(--header-sticky-current-height) + 10px);
    z-index: 30;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
    height: 3.125rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    padding: 0 1.5rem;
    border: 0;
    border-radius: 0.625rem;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.875rem;
    line-height: 1.4285714286;
    font-weight: 600;
    cursor: pointer;
    transition: top 0.28s ease, background-color 0.2s ease;
  }

  .spytech-category-catalog__filters-trigger:hover,
  .spytech-category-catalog__filters-trigger:focus-visible {
    background: var(--light-yellow);
    outline: none;
  }

  .spytech-category-catalog__filters-trigger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background-color: currentColor;
    -webkit-mask: url("../st-images-woo/mobile-filters.svg") center / contain no-repeat;
    mask: url("../st-images-woo/mobile-filters.svg") center / contain no-repeat;
  }

  .spytech-category-catalog__toolbar-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5625rem;
  }

  .spytech-category-catalog__toolbar {
    display: contents;
  }

  .spytech-category-catalog__ordering {
    gap: 0.625rem;
  }

  .spytech-category-catalog__ordering-control .orderby {
    min-width: 0;
    width: 100%;
    height: 2.5rem;
  }

  .spytech-category-catalog__view-toggle {
    display: inline-flex;
    gap: 1.25rem;
  }

  .spytech-category-catalog__view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1875rem;
    height: 2.5rem;
    padding: 0;
    border: 0;
    border-radius: 0.625rem;
    background: var(--soft-gray);
    color: var(--medium-gray);
    cursor: pointer;
  }

  .spytech-category-catalog__view-button.is-active {
    color: var(--black);
  }

  .spytech-category-catalog__view-icon {
    display: block;
    background-color: currentColor;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
  }

  .spytech-category-catalog__view-icon--grid {
    width: 1.5625rem;
    height: 1.625rem;
    -webkit-mask-image: url("../st-images-woo/cat-mobile-view-grid.svg");
    mask-image: url("../st-images-woo/cat-mobile-view-grid.svg");
  }

  .spytech-category-catalog__view-icon--linear {
    width: 0.75rem;
    height: 1.75rem;
    -webkit-mask-image: url("../st-images-woo/cat-mobile-view-linear.svg");
    mask-image: url("../st-images-woo/cat-mobile-view-linear.svg");
  }

  .spytech-category-catalog__result-count {
    margin-top: 1.25rem;
  }

  .spytech-category-catalog__subcategory-icon {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

html.is-spytech-category-filters-open,
body.is-spytech-category-filters-open {
  overflow: hidden;
}

@media (min-width: 64.0001rem) {
  .spytech-category-catalog__view-icon {
    display: block;
    background-color: currentColor;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
  }

  .spytech-category-catalog__view-icon--grid {
    width: 1.5625rem;
    height: 1.625rem;
    -webkit-mask-image: url("../st-images-woo/cat-mobile-view-grid.svg");
    mask-image: url("../st-images-woo/cat-mobile-view-grid.svg");
  }

  .spytech-category-catalog__view-icon--linear {
    width: 0.75rem;
    height: 1.75rem;
    -webkit-mask-image: url("../st-images-woo/cat-mobile-view-linear.svg");
    mask-image: url("../st-images-woo/cat-mobile-view-linear.svg");
  }
}

@media (max-width: 64rem) {
  .spytech-category-catalog__result-count {
    grid-column: 1 / -1;
    margin-left: 0;
    justify-self: center;
  }

  .spytech-category-catalog__products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }

  .spytech-category-catalog__products-grid[data-view-mode="single"] {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .spytech-category-card__controls {
    top: 0.5rem;
    right: 0.5rem;
  }

  .spytech-category-card__badges {
    left: 0.5rem;
    max-width: calc(100% - 3.875rem);
  }

  .spytech-category-card__footer {
    min-height: 0;
    padding: 0.5rem 0.5rem 0.875rem;
  }

  .spytech-category-card__content {
    padding-top: 0.5rem;
  }

  .spytech-category-pagination {
    margin-top: 2rem;
    display: flex;
    flex-direction: /*column*/ row;
    align-items: stretch;
    justify-content: space-around;
  }

  .spytech-category-pagination__nav {
    display: flex;
    /*width: 100%;*/
    width: 47%;
  }

  .spytech-category-pagination__nav.is-disabled {
    display: none;
  }
  .spytech-category-pagination__nav.is-disabled ~ .spytech-category-pagination__nav.spytech-category-pagination__nav--next,
  .spytech-category-pagination__nav.spytech-category-pagination__nav--prev:has(~ .spytech-category-pagination__nav.is-disabled) {
    width: 100%;
  } 



  .spytech-category-pagination__nav--next {
    order: 2;
    margin-bottom: 0.25rem;
    text-align: right;
  }

  .spytech-category-pagination__nav--prev {
    order: 1;
    margin-bottom: 0.25rem;
    background-color: var(--soft-gray);
  }

  .spytech-category-pagination__list {
    order: 3;
    justify-content: center;
  }
}

/* Product category detailed description */
.spytech-category-detail {
  display: grid;
  gap: 0;
  margin-top: 5rem;
  color: var(--black);
}

.spytech-category-detail__section {
  color: inherit;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.spytech-category-detail__section--yellow {
  background: var(--yellow);
}

.spytech-category-detail__section--white {
  background: var(--white);
}

.spytech-category-detail__section--light-gray {
  background: var(--light-gray);
}

.spytech-category-detail__section--black {
  background: var(--black);
}

.spytech-category-detail__section--negative {
  color: var(--white);
}

.spytech-category-detail__surface {
  width: min(var(--page-shell-width-fluid), var(--page-shell-max-width));
  margin-inline: auto;
  padding-block: 3.125rem;
}

.spytech-category-detail__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  align-items: start;
}

.spytech-category-detail__title-column,
.spytech-category-detail__title,
.spytech-category-detail__title-body-wrap,
.spytech-category-detail__secondary {
  min-width: 0;
}

.spytech-category-detail__title-column {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.spytech-category-detail__section--title-left .spytech-category-detail__title-column {
  grid-column: 1;
  grid-row: 1;
}

.spytech-category-detail__section--title-left .spytech-category-detail__secondary {
  grid-column: 2;
  grid-row: 1;
}

.spytech-category-detail__section--title-right .spytech-category-detail__title-column {
  grid-column: 2;
  grid-row: 1;
}

.spytech-category-detail__section--title-right .spytech-category-detail__secondary {
  grid-column: 1;
  grid-row: 1;
}

.spytech-category-detail__section--width-narrow.spytech-category-detail__section--title-left .spytech-category-detail__title-column {
  padding-left: 7.625rem;
}

.spytech-category-detail__section--width-narrow.spytech-category-detail__section--title-right .spytech-category-detail__title-column {
  padding-right: 7.625rem;
}

.spytech-category-detail__heading {
  margin: 0;
  color: inherit;
  font-size: var(--heading-h2-font-size);
  line-height: var(--heading-h2-line-height);
  font-weight: var(--heading-h2-font-weight);
}

.spytech-category-detail__title-body {
  color: inherit;
}

.spytech-category-detail__title-body--special {
  position: relative;
  padding-left: 2.25rem;
}

.spytech-category-detail__title-body--special::before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0;
  width: 1.5rem;
  height: 1.6875rem;
  background-color: var(--yellow);
  -webkit-mask: url("../st-images-woo/polygon-cat-txt.svg") center / contain no-repeat;
  mask: url("../st-images-woo/polygon-cat-txt.svg") center / contain no-repeat;
}

.spytech-category-detail__title-body--polygon-light::before {
  background-color: var(--white);
}

.spytech-category-detail__richtext {
  color: inherit;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
}

.spytech-category-detail__richtext > :first-child {
  margin-top: 0;
}

.spytech-category-detail__richtext > :last-child {
  margin-bottom: 0;
}

.spytech-category-detail__richtext p {
  margin: 0 0 1.125rem;
}

.spytech-category-detail__richtext ul,
.spytech-category-detail__richtext ol {
  margin: 0 0 1.125rem;
}

.spytech-category-detail__richtext ul,
.spytech-category-detail__richtext ol {
  padding-left: 1.25rem;
}

.spytech-category-detail__richtext img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.625rem;
}

.spytech-category-detail__richtext img.aligncenter {
  margin-inline: auto;
}

.spytech-category-detail__richtext img.alignleft {
  float: left;
  margin: 0.25rem 1rem 1rem 0;
}

.spytech-category-detail__richtext img.alignright {
  float: right;
  margin: 0.25rem 0 1rem 1rem;
}

.spytech-category-detail__secondary {
  color: inherit;
}

.spytech-category-detail__secondary--image,
.spytech-category-detail__secondary--video {
  display: flex;
  justify-content: center;
}

.spytech-category-detail__secondary--wysiwyg {
  display: block;
}

.spytech-category-detail__secondary-richtext {
  width: 100%;
}

.spytech-category-detail__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.625rem;
}

.spytech-category-detail__video-shell {
  display: flex;
  justify-content: center;
  width: 100%;
}

.spytech-category-detail__video-trigger,
.spytech-category-detail__video-placeholder,
.spytech-category-detail__video-embed {
  position: relative;
  display: block;
  width: min(100%, var(--st-video-display-width, 28.125rem));
  aspect-ratio: var(--st-video-aspect-ratio, 1 / 1);
  border-radius: 0.625rem;
  overflow: hidden;
  background: var(--black);
}

.spytech-category-detail__video-placeholder {
  transition: outline 0.2s ease, box-shadow 0.2s ease;
}
.spytech-category-detail__video-placeholder:hover {
  outline: 3px solid var(--white);
  box-shadow: 0 0 10px 3px rgba(0,0,0,0.35)
}

.spytech-category-detail__video-trigger {
  padding: 0;
  border: 0;
  cursor: pointer;
}

.spytech-category-detail__video-trigger:focus-visible {
  outline: 0.125rem solid var(--yellow);
  outline-offset: 0.1875rem;
}

.spytech-category-detail__video-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--black);
}

.spytech-category-detail__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  border: 0.09375rem solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.35);
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.spytech-category-detail__video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1.125rem solid var(--white);
  transform: translate(-35%, -50%);
}

.spytech-category-detail__video-trigger:hover .spytech-category-detail__video-play,
.spytech-category-detail__video-trigger:focus-visible .spytech-category-detail__video-play {
  background: rgba(30, 30, 30, 0.55);
  transform: translate(-50%, -50%) scale(1.03);
}

.spytech-category-detail__video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.spytech-category-detail__section--negative .spytech-category-detail__heading,
.spytech-category-detail__section--negative .spytech-category-detail__secondary {
  color: inherit;
}

.spytech-category-detail__section--yellow .spytech-category-detail__richtext {
  color: var(--black);
}

.spytech-category-detail__section--white .spytech-category-detail__richtext,
.spytech-category-detail__section--light-gray .spytech-category-detail__richtext {
  color: var(--dark-gray);
}

.spytech-category-detail__section--black .spytech-category-detail__richtext {
  color: var(--soft-gray);
}

/* Product category fixed benefits strip */
.spytech-category-benefits {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: var(--yellow);
  color: var(--black);
}

.spytech-category-benefits__surface {
  width: min(var(--page-shell-width-fluid), var(--page-shell-max-width));
  margin-inline: auto;
  padding-block: 3rem;
}

.spytech-category-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.4375rem, 7.4375rem));
  justify-content: center;
  gap: 1.5rem;
  max-width: calc(8 * 7.4375rem + 7 * 1.5rem);
  margin-inline: auto;
}

.spytech-category-benefits__item {
  width: 7.4375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.spytech-category-benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.9375rem;
  height: 4.9375rem;
  margin-bottom: 1rem;
  flex: 0 0 auto;
}

.spytech-category-benefits__icon img {
  display: block;
  width: 4.9375rem;
  height: 4.9375rem;
}

.spytech-category-benefits__label {
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1.3333333333;
  font-weight: 500;
}

@media (max-width: 64rem) {
  .spytech-category-detail {
    margin-top: 3.5rem;
  }

  .spytech-category-detail__section {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .spytech-category-detail__surface {
    padding-block: 3.125rem;
  }

  .spytech-category-detail__layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .spytech-category-detail__title-column {
    display: contents;
  }

  .spytech-category-detail__section--flow-title-body-secondary .spytech-category-detail__title {
    order: 1;
  }

  .spytech-category-detail__section--flow-title-body-secondary .spytech-category-detail__title-body-wrap {
    order: 2;
  }

  .spytech-category-detail__section--flow-title-body-secondary .spytech-category-detail__secondary {
    order: 3;
  }

  .spytech-category-detail__section--flow-title-secondary-body .spytech-category-detail__title {
    order: 1;
  }

  .spytech-category-detail__section--flow-title-secondary-body .spytech-category-detail__secondary {
    order: 2;
  }

  .spytech-category-detail__section--flow-title-secondary-body .spytech-category-detail__title-body-wrap {
    order: 3;
  }

  .spytech-category-detail__section--width-narrow.spytech-category-detail__section--title-left .spytech-category-detail__title-column,
  .spytech-category-detail__section--width-narrow.spytech-category-detail__section--title-right .spytech-category-detail__title-column {
    padding-left: 0;
    padding-right: 0;
  }

  .spytech-category-detail__secondary--image,
  .spytech-category-detail__secondary--video {
    width: 100%;
    justify-content: center;
  }

  .spytech-category-detail__image {
    width: auto;
    max-width: 100%;
    margin-inline: auto;
  }

  .spytech-category-detail__richtext img.alignleft,
  .spytech-category-detail__richtext img.alignright {
    float: none;
    margin: 0 auto 1rem;
  }
}

@media (max-width: 47.9375rem) {
  .spytech-category-benefits__surface {
    padding-block: 1.5625rem;
  }

  .spytech-category-benefits__grid {
    grid-template-columns: repeat(2, 7.4375rem);
  }
}

/* Single product hero */
.spytech-product-hero {
  display: grid;
  grid-template-columns: 6.125rem 29.125rem minmax(0, 1fr);
  grid-template-rows: 29.125rem 2.8125rem;
  grid-template-areas:
    "thumbs stage summary"
    "thumbs perks purchase";
  column-gap: 1.5rem;
  row-gap: 1.1875rem;
  align-items: stretch;
}

.spytech-product-hero__thumbs {
  grid-area: thumbs;
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  min-height: calc(29.125rem + 1.1875rem + 2.8125rem);
}

.spytech-product-hero__thumbs::before,
.spytech-product-hero__thumbs::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.spytech-product-hero__thumbs::before {
  top: 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.spytech-product-hero__thumbs::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.spytech-product-hero__thumbs.has-overflow-top::before,
.spytech-product-hero__thumbs.has-overflow-bottom::after {
  opacity: 1;
}

.spytech-product-gallery__viewport {
  flex: 1 1 auto;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  scrollbar-width: none;
}

.spytech-product-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.spytech-product-gallery__track {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: space-between;
  gap: 0.625rem;
}

.spytech-product-gallery__nav {
  position: absolute;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  transform: translateX(-50%);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.spytech-product-gallery__nav--prev {
  top: 0.25rem;
}

.spytech-product-gallery__nav--next {
  bottom: 0.25rem;
}

.spytech-product-gallery__nav[hidden] {
  display: none;
}

.spytech-product-hero__thumbs.has-overflow .spytech-product-gallery__nav:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.spytech-product-gallery__nav:disabled {
  opacity: 0.4;
  cursor: default;
}

.spytech-product-gallery__nav-icon,
.spytech-product-gallery__nav-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-product-gallery__thumb {
  display: block;
  width: 6.125rem;
  height: 6.125rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 0.625rem;
  background: var(--light-gray);
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
}

.spytech-product-gallery__thumb.is-active {
  border-color: var(--medium-gray);
}

.spytech-product-gallery__thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spytech-product-hero__stage {
  grid-area: stage;
  position: relative;
  height: 29.125rem;
}

.spytech-product-hero__badges {
  top: 0.875rem;
  left: 0.875rem;
  z-index: 2;
  max-width: calc(100% - 1.75rem);
  pointer-events: none;
}

.spytech-product-gallery__stage-surface {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.625rem;
  background: #f4f4f4;
  cursor: zoom-in;
}

.spytech-product-gallery__stage-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: var(--st-zoom-x, 50%) var(--st-zoom-y, 50%);
  transition: transform 0.18s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .spytech-product-gallery__stage-surface.is-zoomed .spytech-product-gallery__stage-image {
    transform: scale(2.15);
  }
}

html.is-spytech-product-lightbox-open,
body.is-spytech-product-lightbox-open {
  overflow: hidden;
}

html.is-spytech-product-cart-popup-open,
body.is-spytech-product-cart-popup-open {
  overflow: hidden;
}

html.is-spytech-product-video-popup-open,
body.is-spytech-product-video-popup-open {
  overflow: hidden;
}

.spytech-product-gallery__stage-surface[data-st-lightbox-open] {
  outline: none;
}

.spytech-product-gallery__stage-surface[data-st-lightbox-open]:focus-visible {
  box-shadow: 0 0 0 0.1875rem rgba(239, 239, 239, 0.9);
}

.spytech-product-lightbox[hidden] {
  display: none;
}

.spytech-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  box-sizing: border-box;
}

.spytech-product-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(0.75rem);
  -webkit-backdrop-filter: blur(0.75rem);
}

.spytech-product-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 1.5rem), 75rem);
  max-width: 75rem;
  max-height: calc(100vh - 1.5rem);
  padding: 2.25rem;
  border-radius: 0.625rem;
  box-sizing: border-box;
  overflow: auto;
  background: var(--white);
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.25);
}

.spytech-product-lightbox__content {
  display: flex;
  align-items: flex-start;
  gap: 1.5625rem;
}

.spytech-product-lightbox__stage {
  flex: 0 0 30.625rem;
  width: 30.625rem;
}

.spytech-product-lightbox__stage-image {
  display: block;
  width: 30.625rem;
  height: 30.625rem;
  border-radius: 0.625rem;
  background: #f4f4f4;
  object-fit: contain;
}

.spytech-product-lightbox__sidebar {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 5rem;
}

.spytech-product-lightbox__section + .spytech-product-lightbox__section {
  margin-top: 0.9375rem;
}

.spytech-product-lightbox__section-title {
  margin: 0 0 0.9375rem;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.spytech-product-lightbox__thumb-grid,
.spytech-product-lightbox__video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
}

.spytech-product-lightbox__thumb,
.spytech-product-lightbox__video-placeholder {
  width: 4.6875rem;
  height: 4.6875rem;
  border-radius: 0.625rem;
  box-sizing: border-box;
}

.spytech-product-lightbox__thumb {
  display: block;
  padding: 0;
  border: 1px solid transparent;
  background: var(--light-gray);
  overflow: hidden;
  cursor: pointer;
}

.spytech-product-lightbox__thumb.is-active {
  border-color: var(--medium-gray);
}

.spytech-product-lightbox__thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spytech-product-lightbox__video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c9c9c9;
}

.spytech-product-lightbox__video-placeholder-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--white);
}

.spytech-product-lightbox__video-placeholder-icon svg {
  display: block;
  width: 1rem;
  height: 1rem;
  margin-left: 0.125rem;
}

.spytech-product-lightbox__close {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.spytech-product-lightbox__close--main {
  top: 1.5625rem;
  right: 0.9375rem;
  width: 2.8125rem;
  height: 2.8125rem;
}

.spytech-product-lightbox__close--back {
  display: none;
}

.spytech-product-lightbox__close-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-product-cart-popup[hidden] {
  display: none;
}

.spytech-product-cart-popup {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 0.5rem;
  box-sizing: border-box;
}

.spytech-product-cart-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.spytech-product-cart-popup__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
  width: min(calc(100vw - 1rem), 43.75rem);
  max-height: min(70vh, calc(100vh - 1rem));
  padding: 1.875rem;
  border-radius: 1.25rem;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
}

.spytech-product-cart-popup__title {
  margin: 0;
  padding-right: 5.5rem;
  color: var(--black);
  font-size: 1.5625rem;
  line-height: normal;
  font-weight: 500;
}

.spytech-product-cart-popup__close {
  position: absolute;
  top: 1.25rem;
  right: 1.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.spytech-product-cart-popup__close-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-product-cart-popup__items {
  display: grid;
  flex: 1 1 auto;
  gap: 1.875rem;
  min-height: 0;
  margin-top: 1.125rem;
  padding-top: 0.75rem;
  padding-bottom: 1.875rem;
  overflow: auto;
}

.spytech-product-cart-popup__item {
  display: grid;
  grid-template-columns: 3.75rem minmax(0, 1fr);
  column-gap: 1.5625rem;
  align-items: start;
}

.spytech-product-cart-popup__item-media {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
}

.spytech-product-cart-popup__item-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
  background: var(--light-gray);
  object-fit: contain;
}

.spytech-product-cart-popup__item-quantity {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4375rem;
  height: 1.4375rem;
  padding: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--light-gray);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
}

.spytech-product-cart-popup__item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: 3.75rem;
}

.spytech-product-cart-popup__item-title,
.spytech-product-cart-popup__item-sku,
.spytech-product-cart-popup__item-price {
  margin: 0;
}

.spytech-product-cart-popup__item-title {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.spytech-product-cart-popup__item-sku {
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.spytech-product-cart-popup__item-price {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.spytech-product-cart-popup__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 0 0 auto;
  margin-top: 0;
  padding-top: 0.5rem;
  border-top: 0.0625rem solid var(--soft-gray);
}

.spytech-product-cart-popup__summary-label,
.spytech-product-cart-popup__summary-value {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5rem;
}

.spytech-product-cart-popup__summary-label {
  font-weight: 400;
}

.spytech-product-cart-popup__summary-value {
  font-weight: 700;
}

.spytech-product-cart-popup__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.375rem;
  flex: 0 0 auto;
  margin-top: 2.8125rem;
}

.spytech-product-cart-popup__action {
  width: 100%;
  min-width: 0;
  min-height: 3.75rem;
}

.spytech-product-video-popup[hidden] {
  display: none;
}

.spytech-product-video-popup {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 0.5rem;
  box-sizing: border-box;
}

.spytech-product-video-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.spytech-product-video-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 1rem), /*76rem*/ 52rem);
  max-height: min(86vh, calc(100vh - 1rem));
  padding: 2rem 3.125rem 2.75rem;
  border-radius: 1.25rem;
  box-sizing: border-box;
  overflow: auto;
  background: var(--white);
  box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.18);
}

.spytech-product-video-popup__title {
  margin: 0;
  padding-right: 5.5rem;
  color: var(--black);
  font-size: /*2.125rem*/ 1.25rem;
  line-height: 1.15;
  font-weight: 600;
}

.spytech-product-video-popup__close {
  position: absolute;
  top: 1.2rem;
  right: 3.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.spytech-product-video-popup__close-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-product-video-popup__body {
  margin-top: 1.75rem;
}

.spytech-product-video-popup__video-shell,
.spytech-product-video-popup__video-embed {
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background: #737373;
}

.spytech-product-video-popup__video-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.spytech-product-video-popup__video-media,
.spytech-product-video-popup__video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-product-video-popup__video-media {
  object-fit: cover;
}

.spytech-product-video-popup__video-embed iframe {
  border: 0;
}

.spytech-product-video-popup__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9rem;
  height: 9rem;
  border: 0.125rem solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.spytech-product-video-popup__video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 1.125rem solid transparent;
  border-bottom: 1.125rem solid transparent;
  border-left: 1.75rem solid var(--white);
  transform: translate(-30%, -50%);
}

.product-collection-page__article--compare .product-collection-page__content {
  margin-top: 2rem;
}

.spytech-compare-page {
  --spytech-compare-sticky-top: calc(var(--wp-admin-bar-offset) + var(--header-sticky-current-height));
  --spytech-compare-summary-height: 7.5rem;
  --spytech-compare-section-sticky-top: calc(var(--spytech-compare-sticky-top) + var(--spytech-compare-summary-height));
  --spytech-compare-scroll-offset: 0px;
  --spytech-compare-overflow-inline-gap: 1rem;
  --spytech-compare-mobile-sticky-offset: 0px;
}

.spytech-product-collection-page--compare .page-surface {
  overflow-x: visible;
}

.spytech-compare-page__page-title {
  display: none;
  margin: 0 0 2.25rem;
  color: var(--black);
  font-size: 1.875rem;
  line-height: 2.1875rem;
  font-weight: 600;
  text-align: center;
}

.spytech-compare-page__scroller[hidden],
.spytech-compare-page__empty[hidden] {
  display: none;
}

.spytech-compare-page__scroller {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.spytech-compare-page__scroller::-webkit-scrollbar {
  display: none;
}

.spytech-compare-page__stage {
  display: flex;
  justify-content: center;
  min-width: 100%;
}

.spytech-compare-page__canvas {
  width: 100%;
}

.spytech-compare-page.is-scroll-layout .spytech-compare-page__scroller {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: visible;
}

@media (min-width: 64.0001rem) {
  .spytech-compare-page.is-compact-layout .spytech-compare-page__scroller {
    overflow: visible;
  }
}

.spytech-compare-page.is-scroll-layout .spytech-compare-page__stage {
  justify-content: center;
}

.spytech-compare-page.is-scroll-layout.is-overflowing-view .spytech-compare-page__stage {
  justify-content: flex-start;
}

.spytech-compare-page.is-scroll-layout .spytech-compare-page__canvas {
  width: max-content;
  min-width: 0;
}

@media (min-width: 64.0001rem) {
  .spytech-compare-page.is-scroll-layout.is-overflowing-view .spytech-compare-page__canvas {
    position: relative;
    transform: translate3d(calc(var(--spytech-compare-scroll-offset) * -1), 0, 0);
    transition: transform 0.28s ease;
    will-change: transform;
    backface-visibility: hidden;
  }

  .spytech-compare-page.is-scroll-layout.is-overflowing-view .spytech-compare-page__intro,
  .spytech-compare-page.is-scroll-layout.is-overflowing-view .spytech-compare-page__summary,
  .spytech-compare-page.is-scroll-layout.is-overflowing-view .spytech-compare-page__attribute-row,
  .spytech-compare-page.is-scroll-layout.is-overflowing-view .spytech-compare-page__section-title {
    padding-inline: var(--spytech-compare-overflow-inline-gap);
  }

  .spytech-compare-page.is-scroll-layout.is-overflowing-view .spytech-compare-page__section {
    width: max-content;
    min-width: 100%;
    box-sizing: border-box;
  }

  .spytech-compare-page.is-scroll-layout.is-overflowing-view .spytech-compare-page__attribute-row,
  .spytech-compare-page.is-scroll-layout.is-overflowing-view .spytech-compare-page__section-title {
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
  }
}

.spytech-compare-page__intro,
.spytech-compare-page__summary,
.spytech-compare-page__attribute-row {
  display: grid;
  column-gap: 1.375rem;
}

.spytech-compare-page__lead-title {
  width: 17.5rem;
  color: var(--black);
  font-size: 1.875rem;
  line-height: 2.1875rem;
  font-weight: 600;
}

.spytech-compare-page__product {
  display: grid;
  align-content: start;
  align-items: center;
  min-width: 0;
  padding-bottom: 2.25rem;
}

.spytech-compare-page__product-image-link {
  display: block;
  width: 100%;
}

.spytech-compare-page__product-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.625rem;
  background: var(--light-gray);
  object-fit: cover;
}

.spytech-compare-page__product-title,
.spytech-compare-page__product-meta,
.spytech-compare-page__product-description {
  margin: 0;
}

.spytech-compare-page__product-title {
  width: 100%;
  margin-top: 0.9375rem;
  min-height: var(--spytech-compare-title-height, auto);
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 600;
  text-align: center;
  overflow-wrap: anywhere;
}

.spytech-compare-page__product-title-link {
  color: inherit;
  text-decoration: none;
}
.spytech-compare-page__product-title-link:hover {
  color: var(--medium-gray);
}

.spytech-compare-page__product-meta {
  width: 100%;
  margin-top: 0.625rem;
  min-height: var(--spytech-compare-sku-height, auto);
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.spytech-compare-page__product-meta--price {
  min-height: var(--spytech-compare-price-height, auto);
}

.spytech-compare-page__product-meta strong {
  display: block;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.spytech-compare-page__product-action {
  width: 11.8125rem;
  max-width: 100%;
  min-width: 0;
  min-height: 2.8125rem;
  margin-top: 1.5rem;
  margin-inline: auto;
}

.spytech-compare-page__product-action--secondary {
  width: 8.125rem;
  max-width: 100%;
  min-height: 2.8125rem;
  margin-top: 0.9375rem;
  border: 0;
  border-radius: 999px;
  background: var(--light-gray);
  color: var(--black);
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
}

.spytech-compare-page__product-action--secondary:hover,
.spytech-compare-page__product-action--secondary:focus-visible {
  background: var(--soft-gray);
}

.spytech-compare-page__product-action.is-loading {
  pointer-events: none;
}

.spytech-compare-page__product-description {
  width: 100%;
  margin-top: 1.5rem;
  min-height: var(--spytech-compare-description-height, auto);
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
  text-align: center;
  overflow-wrap: anywhere;
  text-align: left;
}

.spytech-compare-page__summary {
  position: -webkit-sticky;
  position: sticky;
  top: var(--spytech-compare-sticky-top);
  z-index: 20;
  align-items: stretch;
  min-height: 7.5rem;
  margin-bottom: 2.75rem;
  background: transparent;
}

.spytech-compare-page__summary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translate3d(calc(-50% + var(--spytech-compare-scroll-offset)), 0, 0);
  background: var(--light-gray);
  pointer-events: none;
  z-index: -1;
  transition: transform 0.28s ease;
  will-change: transform;
}

.spytech-compare-page__summary-lead {
  min-height: 7.5rem;
}

.spytech-compare-page__summary-cell {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
  padding: 0.9375rem 0 0.625rem;
  flex-direction: column;
  text-align: center;
}

.spytech-compare-page__summary-image-link {
  flex-shrink: 0;
  display: block;
  width: 4.125rem;
  height: 4.125rem;
}

.spytech-compare-page__summary-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
  background: var(--white);
  object-fit: cover;
}

.spytech-compare-page__summary-title {
  margin: 0;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.05rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.spytech-compare-page__summary-title-link {
  color: inherit;
  text-decoration: none;
}
.spytech-compare-page__summary-title-link:hover {
  color: var(--medium-gray);
}

.spytech-compare-page__section + .spytech-compare-page__section {
  margin-top: 2.8125rem;
}

.spytech-compare-page__section-title {
  position: relative;
  margin: 0 0 1rem;
  color: var(--black);
  font-size: 1.5625rem;
  font-weight: 600;
  border-bottom: 0.5px solid var(--medium-gray);
  padding-bottom: 0.625rem;
}

@media (min-width: 64.0001rem) {
  .spytech-compare-page.is-scroll-layout .spytech-compare-page__section-title {
    position: sticky;
    top: var(--spytech-compare-section-sticky-top);
    left: 0;
    z-index: 19;
    padding-top: 0.625rem;
    background: var(--white);
    transform: translate3d(var(--spytech-compare-scroll-offset), 0, 0);
    transition: transform 0.28s ease;
    will-change: transform;
    backface-visibility: hidden;
  }

  .spytech-compare-page__nav-button {
    position: fixed;
    top: 50%;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    border: 0.0625rem solid var(--soft-gray);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--black);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, opacity 0.2s ease, color 0.2s ease;
  }

  .spytech-compare-page__nav-button:hover,
  .spytech-compare-page__nav-button:focus-visible {
    background: var(--yellow);
    outline: none;
  }

  .spytech-compare-page__nav-button:disabled,
  .spytech-compare-page__nav-button[aria-disabled="true"] {
    opacity: 0.45;
    cursor: default;
    background: rgba(255, 255, 255, 0.92);
  }

  .spytech-compare-page__nav-button--prev {
    left: 0.875rem;
  }

  .spytech-compare-page__nav-button--next {
    right: 0.875rem;
  }

  .spytech-compare-page__nav-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
  }

  .spytech-compare-page__nav-button-icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  .spytech-compare-page__nav-button[hidden],
  .spytech-compare-page:not(.has-horizontal-nav) .spytech-compare-page__nav-button,
  .spytech-compare-page.is-compact-layout .spytech-compare-page__nav-button {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spytech-compare-page.is-scroll-layout.is-overflowing-view .spytech-compare-page__canvas,
  .spytech-compare-page.is-scroll-layout .spytech-compare-page__section-title,
  .spytech-compare-page__summary::before {
    transition: none;
  }
}

.spytech-compare-page__attribute-row {
  align-items: stretch;
  border-top: 0.5px solid var(--soft-gray);
  transition: 
    background-color 0.5s ease;
}
.spytech-compare-page__attribute-row:hover {
  background-color: var(--light-gray);
}
.spytech-compare-page__section-title + .spytech-compare-page__attribute-row {
  border-top: none;
}

.spytech-compare-page__attribute-label,
.spytech-compare-page__attribute-cell {
  padding: 0.375rem 0;
}

.spytech-compare-page__attribute-label {
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.spytech-compare-page__attribute-cell {
  min-width: 0;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.spytech-compare-page__attribute-cell.is-empty {
  color: var(--medium-gray);
}

.spytech-compare-page__attribute-mobile-label {
  display: none;
}

.spytech-compare-page__attribute-value {
  display: block;
  overflow-wrap: anywhere;
}

.spytech-compare-page__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem 0 5rem;
}

.spytech-compare-page__empty-text {
  margin: 0;
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.spytech-compare-page__empty-action {
  min-width: 14rem;
}

.spytech-wishlist-page__card {
  padding: 2.875rem 3.75rem;
  border-radius: 0.625rem;
  background: var(--white);
}

.spytech-wishlist-page__list[hidden],
.spytech-wishlist-page__empty[hidden] {
  display: none;
}

.spytech-wishlist-page__item {
  display: grid;
  grid-template-columns: 2.8125rem 3.75rem minmax(0, 1fr) 8.625rem 11.8125rem;
  column-gap: 2.25rem;
  align-items: center;
  padding-bottom: 1.875rem;
}

.spytech-wishlist-page__item + .spytech-wishlist-page__item {
  padding-top: 1.875rem;
  border-top: 0.0625rem solid var(--soft-gray);
}

.spytech-wishlist-page__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*align-self: start;*/
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.spytech-wishlist-page__remove-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-wishlist-page__media {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
}

.spytech-wishlist-page__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-wishlist-page__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
  background: var(--light-gray);
  object-fit: contain;
}

.spytech-wishlist-page__badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 999px;
  background: var(--yellow);
}

.spytech-wishlist-page__badge svg {
  display: block;
  width: 1rem;
  height: 0.875rem;
}

.spytech-wishlist-page__badge path {
  fill: var(--black);
  stroke: var(--black);
}

.spytech-wishlist-page__content {
  min-width: 0;
}

.spytech-wishlist-page__title,
.spytech-wishlist-page__sku,
.spytech-wishlist-page__price {
  margin: 0;
}

.spytech-wishlist-page__title {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.spytech-wishlist-page__title-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.spytech-wishlist-page__sku {
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.spytech-wishlist-page__price {
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.spytech-wishlist-page__quantity {
  display: grid;
  grid-template-columns: 2.8125rem 3rem 2.8125rem;
  align-items: center;
  justify-self: end;
}

.spytech-wishlist-page__quantity-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--light-gray);
  color: var(--black);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
  transition: background-color 0.2s ease;
}

.spytech-wishlist-page__quantity-button:hover,
.spytech-wishlist-page__quantity-button:focus-visible {
  background: var(--soft-gray);
  outline: none;
}

.spytech-wishlist-page__quantity-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.spytech-wishlist-page__add-to-cart {
  width: 11.8125rem;
  min-width: 11.8125rem;
}

.spytech-wishlist-page__add-to-cart.is-loading {
  opacity: 0.9;
}

.spytech-wishlist-page__empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.spytech-wishlist-page__empty-text {
  margin: 0;
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.spytech-wishlist-page__empty-action {
  min-width: 15rem;
}

.spytech-product-hero__summary {
  grid-area: summary;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 29.125rem;
  padding-bottom: 0;
  border-bottom: 0.5px solid var(--dark-gray);
}

.spytech-product-summary__top {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spytech-product-summary__header {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spytech-product-summary__title {
  margin: 0;
  color: var(--black);
  font-size: 1.5625rem;
  line-height: normal;
  font-weight: 600;
}

.spytech-product-summary__sku {
  margin: 0;
  color: var(--dark-gray);
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.spytech-product-summary__price-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 2rem;
  padding: 0.85rem;
  margin-top: 0.25rem;
  border-radius: 0.625rem;
  background: #f5f5f5;
}

.spytech-product-summary__price-box::after {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 50%;
  width: 1px;
  background: var(--medium-gray);
  transform: translateX(-50%);
}

.spytech-product-summary__price-main {
  min-width: 0;
}

.spytech-product-summary__price-market,
.spytech-product-summary__price-label,
.spytech-product-summary__price-side-label {
  margin: 0;
}

.spytech-product-summary__price-market {
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.spytech-product-summary__price-label,
.spytech-product-summary__price-side-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.spytech-product-summary__price-label {
  color: var(--black);
}

.spytech-product-summary__price-side-label {
  color: var(--dark-gray);
}

.spytech-product-summary__price-online,
.spytech-product-summary__price-side-value {
  margin: 0.375rem 0 0;
  font-size: 1.5625rem;
  line-height: 1;
}

.spytech-product-summary__price-online {
  color: var(--orange);
  font-weight: 600;
}

.spytech-product-summary__price-side {
  min-width: 0;
  padding-top: 1.25rem;
  padding-left: 1rem;
}

.spytech-product-summary__price-side-value {
  color: var(--dark-gray);
  font-weight: 500;
}

.spytech-product-summary__price-main--fallback {
  grid-column: 1 / -1;
}

.spytech-product-summary__description {
  margin-top: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.2rem;
  font-weight: 400;
}

.spytech-product-summary__description > :first-child {
  margin-top: 0;
}

.spytech-product-summary__description > :last-child {
  margin-bottom: 0;
}

.spytech-product-summary__description p,
.spytech-product-summary__description ul,
.spytech-product-summary__description ol {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.spytech-product-summary__description ul,
.spytech-product-summary__description ol {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.5rem;
}

.spytech-product-summary__audio {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 17.75rem;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--soft-gray);
  border-radius: 1rem;
  background: #f7f7f7;
}

.spytech-product-audio__toggle {
  flex-shrink: 0;
  width: 2.875rem;
  height: 2.875rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
}

.spytech-product-audio__toggle-icon,
.spytech-product-audio__toggle-icon svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 auto;
}

.spytech-product-audio__toggle-icon--pause {
  display: none;
}

.spytech-product-summary__audio.is-playing .spytech-product-audio__toggle-icon--play {
  display: none;
}

.spytech-product-summary__audio.is-playing .spytech-product-audio__toggle-icon--pause {
  display: block;
}

.spytech-product-audio__content {
  flex: 1 1 auto;
  min-width: 0;
}

.spytech-product-audio__title {
  margin: 0 0 0.625rem;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.spytech-product-audio__progress {
  --st-audio-progress: 0%;
  width: 100%;
  margin: 0;
  border: 0;
  appearance: none;
  background: linear-gradient(
    90deg,
    var(--black) 0%,
    var(--black) var(--st-audio-progress),
    var(--soft-gray) var(--st-audio-progress),
    var(--soft-gray) 100%
  );
  height: 2px;
  cursor: pointer;
}

.spytech-product-audio__progress::-webkit-slider-runnable-track {
  height: 2px;
  background: transparent;
}

.spytech-product-audio__progress::-moz-range-track {
  height: 2px;
  background: transparent;
}

.spytech-product-audio__progress::-webkit-slider-thumb {
  width: 0.875rem;
  height: 0.875rem;
  margin-top: -0.375rem;
  border: 0;
  border-radius: 50%;
  appearance: none;
  background: var(--black);
}

.spytech-product-audio__progress::-moz-range-thumb {
  width: 0.875rem;
  height: 0.875rem;
  border: 0;
  border-radius: 50%;
  background: var(--black);
}

.spytech-product-summary__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-bottom: 1rem;
}

.spytech-product-summary__actions-left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.spytech-product-summary__action-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dark-gray);
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.spytech-product-summary__action-button:hover,
.spytech-product-summary__action-button:focus-visible {
  color: var(--black);
  outline: none;
}

.spytech-product-summary__action-button.is-active,
.spytech-product-summary__action-button[aria-pressed="true"] {
  color: var(--black);
}

.spytech-product-summary__action-button.is-active .spytech-product-summary__action-label,
.spytech-product-summary__action-button[aria-pressed="true"] .spytech-product-summary__action-label {
  font-weight: 600;
}

.spytech-product-summary__action-button--compare {
  gap: 0.625rem;
}

.spytech-product-summary__action-button--compare .spytech-product-summary__action-label {
  margin-inline: 0;
}

.spytech-product-summary__action-info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dark-gray);
  cursor: pointer;
  flex: 0 0 auto;
  transition: color 0.2s ease;
}

.spytech-product-summary__action-info-button:hover,
.spytech-product-summary__action-info-button:focus-visible {
  color: var(--black);
  outline: none;
}

.spytech-product-summary__action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spytech-product-summary__action-icon-image {
  display: block;
  width: auto;
  height: 100%;
}

.spytech-product-summary__action-icon--compare {
  height: 0.875rem;
}

.spytech-product-summary__action-icon--compare-info {
  height: 1.25rem;
}
@media (max-width: 767px) {
  .spytech-product-summary__action-icon--compare-info {
    height: 1.85rem;
  }
}

.spytech-product-summary__action-icon--wishlist {
  height: 0.8125rem;
}

.spytech-product-hero__perks {
  grid-area: perks;
  display: flex;
  align-items: center;
  gap: 2.25rem;
  min-height: 2.8125rem;
  min-width: 0;
}

.spytech-product-perk {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.spytech-product-perk__icon {
  flex-shrink: 0;
  display: block;
  width: auto;
  height: auto;
}

.spytech-product-perk__icon--delivery {
  height: 1.125rem;
}

.spytech-product-perk__icon--warranty {
  height: 1.875rem;
}

.spytech-product-perk__text {
  margin: 0;
  color: var(--medium-gray);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
}

.spytech-product-hero__purchase {
  grid-area: purchase;
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  min-height: 2.8125rem;
}

.spytech-product-purchase__main {
  flex: 1 1 auto;
  min-width: 0;
}

.spytech-product-purchase__stock,
.spytech-product-purchase__message {
  margin: 0 0 1rem;
}

.spytech-product-purchase__stock .stock {
  margin: 0;
  color: var(--dark-gray);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.spytech-product-purchase__form {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  gap: 1.5625rem;
  min-height: 2.8125rem;
}

.spytech-product-purchase__quantity {
  display: flex;
  align-items: center;
  flex: 0 0 8.5rem;
  width: 8.5rem;
  min-height: 2.8125rem;
}

.spytech-product-purchase__quantity-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.8125rem;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  box-sizing: border-box;
  background: var(--light-gray);
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media (max-width: 1279px) {
  .spytech-product-purchase__quantity-button {
    background: var(--soft-gray);
  }
}
.spytech-product-purchase__quantity-button:hover {
  background: var(--soft-gray);
}

.spytech-product-purchase__quantity-button:disabled {
  border-color: var(--soft-gray);
  background: var(--white);
  color: var(--soft-gray);
  cursor: default;
  opacity: 1;
}

.spytech-product-purchase__quantity-button span {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  transform: none;
}

.spytech-product-purchase__quantity-input-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.875rem;
  width: 2.875rem;
}

.spytech-product-purchase__quantity-input-wrap .quantity {
  margin: 0;
  width: 100%;
}

.spytech-product-purchase__quantity-input-wrap label {
  display: none;
}

.spytech-product-purchase__quantity-input {
  width: 100%;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  appearance: textfield;
}

.spytech-product-purchase__quantity-input::-webkit-outer-spin-button,
.spytech-product-purchase__quantity-input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.spytech-product-purchase__submit {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  min-height: 2.8125rem;
  height: 2.8125rem;
  padding-inline: 2rem;
  border-radius: 999px;
  font-size: 1rem;
}

.spytech-product-purchase__submit.is-loading {
  pointer-events: none;
}

.spytech-product-purchase__submit-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.spytech-product-purchase__submit-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 0.125rem solid rgba(30, 30, 30, 0.28);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spytech-product-submit-spin 0.7s linear infinite;
}

.spytech-product-purchase__submit-loading-text {
  display: inline-block;
}

@keyframes spytech-product-submit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spytech-product-purchase__info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.1875rem;
  width: 2.1875rem;
  height: 2.1875rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}

.spytech-product-purchase__info-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-product-purchase__info-icon-image {
  display: block;
  width: 100%;
  height: 100%;
}

.spytech-product-purchase__main .cart:not(.spytech-product-purchase__form) {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spytech-product-purchase__main .cart:not(.spytech-product-purchase__form) .button {
  align-self: flex-start;
}


@media (max-width: 1279px) {
  .spytech-product-hero {
    grid-template-columns: 6.125rem minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "thumbs stage"
      "summary summary"
      "perks perks"
      "purchase purchase";
    row-gap: 1.5rem;
  }

  .spytech-product-hero__thumbs {
    min-height: 0;
  }

  .spytech-product-hero__stage,
  .spytech-product-hero__summary {
    height: auto;
  }

  .spytech-product-gallery__stage-surface {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .spytech-product-hero__perks {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .woocommerce-page__layout--single-product {
    padding-top: 0.75rem;
    padding-bottom: 0;
  }

  .spytech-product-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "stage"
      "thumbs"
      "header"
      "price"
      "perks"
      "description"
      "audio"
      "actions";
    row-gap: 0;
  }

  .spytech-product-hero__summary,
  .spytech-product-summary__top {
    display: contents;
  }

  .spytech-product-hero__stage {
    width: 100%;
    min-width: 0;
  }

  .spytech-product-hero__badges {
    top: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }

  .spytech-product-hero__thumbs {
    grid-area: thumbs;
    display: block;
    width: 100%;
    min-height: 0;
    margin-top: 0.75rem;
    overflow: hidden;
  }

  .spytech-product-hero__thumbs::before,
  .spytech-product-hero__thumbs::after,
  .spytech-product-gallery__nav {
    display: none;
  }

  .spytech-product-gallery__stage-surface {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .spytech-product-gallery__stage-image {
    width: 100%;
    height: 100%;
  }

  .spytech-product-lightbox {
    padding: 0.5rem;
  }

  .spytech-product-lightbox__dialog {
    width: calc(100vw - 1rem);
    max-width: none;
    max-height: min(41.5625rem, calc(100vh - 1rem));
    padding: 1.25rem;
  }

  .spytech-product-lightbox__content {
    display: block;
  }

  .spytech-product-lightbox__stage {
    width: 100%;
  }

  .spytech-product-lightbox__stage,
  .spytech-product-lightbox__stage-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .spytech-product-lightbox__sidebar {
    margin-top: 1.25rem;
    padding-right: 0;
  }

  .spytech-product-lightbox__section + .spytech-product-lightbox__section {
    margin-top: 1.25rem;
  }

  .spytech-product-lightbox__section-title {
    margin-bottom: 0.625rem;
  }

  .spytech-product-lightbox__thumb-grid,
  .spytech-product-lightbox__video-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, 4.0625rem);*/
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-content: space-between;
    row-gap: 0.9375rem;
  }

  .spytech-product-lightbox__thumb,
  .spytech-product-lightbox__video-placeholder {
    /*width: 4.0625rem;
    height: 4.0625rem;*/
    width: 100%;
    height: auto;
  }

  .spytech-product-lightbox__close--main,
  .spytech-product-lightbox__close--back {
    top: 1.875rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .spytech-product-lightbox__close--main {
    right: 1.875rem;
  }

  .spytech-product-lightbox__close--back {
    left: 1.875rem;
    display: inline-flex;
  }

  .spytech-product-cart-popup {
    padding: 0.5rem;
  }

  .spytech-product-cart-popup__dialog {
    width: calc(100vw - 1rem);
    max-width: none;
    max-height: min(70vh, calc(100vh - 1rem));
    padding: 1.5625rem 1.25rem;
  }

  .spytech-product-cart-popup__title {
    padding-right: 4.5rem;
    font-size: 1.5625rem;
    line-height: normal;
  }

  .spytech-product-cart-popup__close {
    top: 1.25rem;
    right: 1.875rem;
  }

  .spytech-product-cart-popup__actions {
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
    margin-top: 1.5625rem;
  }

  .spytech-product-video-popup {
    padding: 0.5rem;
  }

  .spytech-product-video-popup__dialog {
    width: calc(100vw - 1rem);
    max-width: none;
    max-height: min(82vh, calc(100vh - 1rem));
    padding: 1.5625rem 1.25rem;
  }

  .spytech-product-video-popup__title {
    padding-right: 4.5rem;
    /*font-size: 1.875rem;*/
  }

  .spytech-product-video-popup__close {
    top: 1.25rem;
    right: 1.25rem;
  }

  .spytech-product-video-popup__body {
    margin-top: 1.5625rem;
  }

  .spytech-product-video-popup__video-play {
    width: 6.25rem;
    height: 6.25rem;
  }

  .spytech-product-video-popup__video-play::before {
    border-top-width: 0.8125rem;
    border-bottom-width: 0.8125rem;
    border-left-width: 1.3125rem;
  }

  .product-collection-page__header {
    text-align: center;
  }

  .product-collection-page__article--compare .product-collection-page__content {
    margin-top: 0;
  }

  .spytech-compare-page__page-title {
    display: block;
  }

  .spytech-compare-page.is-scroll-layout .spytech-compare-page__scroller,
  .spytech-compare-page__scroller {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: 1rem;
    overflow-x: auto;
    overflow-y: visible;
  }

  .spytech-compare-page__stage {
    width: max-content;
    justify-content: flex-start;
  }

  .spytech-compare-page__canvas {
    width: max-content;
    min-width: 0;
  }
  .spytech-compare-page__intro {
    column-gap: 1rem;
  }

  .spytech-compare-page__lead-title,
  .spytech-compare-page__summary-lead,
  .spytech-compare-page__attribute-label {
    display: none;
  }

  .spytech-compare-page__product {
    padding-bottom: 1.75rem;
  }

  .spytech-compare-page__product-title {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .spytech-compare-page__product-meta {
    text-align: center;
  }

  .spytech-compare-page__product-action,
  .spytech-compare-page__product-action--secondary {
    width: 100%;
  }

  .spytech-compare-page__summary {
    position: relative;
    top: auto;
    z-index: 20;
    margin-bottom: 2.25rem;
    background: var(--light-gray);
    /*border-top: 0.0625rem solid var(--soft-gray);
    border-bottom: 0.0625rem solid var(--soft-gray);*/
  }

  .spytech-compare-page__summary::before {
    display: none;
  }

  .spytech-compare-page__summary-cell {
    flex-direction: column;
    align-items: center;
  }

  .spytech-compare-page__summary-image-link {
    width: 4.125rem;
    height: 4.125rem;
  }

  .spytech-compare-page__summary.is-mobile-sticky-source,
  .spytech-compare-page__section-title.is-mobile-sticky-source {
    visibility: hidden;
  }

  .spytech-compare-page__mobile-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 32;
    box-sizing: border-box;
    padding-inline: 1rem;
    pointer-events: none;
  }

  .spytech-compare-page__mobile-sticky-summary-viewport {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
    isolation: isolate;
    box-shadow: 0 0 0 100vmax var(--light-gray);
    clip-path: inset(0 -100vmax 0 -100vmax);
  }

  .spytech-compare-page__mobile-sticky-summary-viewport::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--light-gray);
    z-index: -1;
    pointer-events: none;
  }

  .spytech-compare-page__mobile-sticky-summary-track {
    width: max-content;
    min-width: max-content;
    will-change: transform;
    backface-visibility: hidden;
  }

  .spytech-compare-page__mobile-sticky-summary.spytech-compare-page__summary {
    position: relative;
    top: auto;
    z-index: auto;
    margin-bottom: 0;
    background: transparent;
    will-change: auto;
  }

  .spytech-compare-page__mobile-sticky-summary.spytech-compare-page__summary::before {
    display: none;
  }

  .spytech-compare-page__mobile-sticky-title {
    position: relative;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    background: var(--white);
    color: var(--black);
    font-size: 1.5625rem;
    line-height: 1.2;
    font-weight: 600;
    isolation: isolate;
  }

  .spytech-compare-page__mobile-sticky-title::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--white);
    z-index: -1;
    pointer-events: none;
  }

  .spytech-compare-page__mobile-sticky-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    border-bottom: 0.5px solid var(--medium-gray);
    transform: translateX(-50%);
    pointer-events: none;
  }

  .spytech-compare-page__section {
    position: relative;
    width: max-content;
    min-width: 100%;
    box-sizing: border-box;
  }

  .spytech-compare-page__section-title {
    position: relative;
    z-index: 19;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    padding-top: 0.625rem;
    background: var(--white);
    /*font-size: 1.875rem;
    line-height: 2.1875rem;*/
  }

  .spytech-compare-page {
    --spytech-compare-mobile-sticky-offset: 0px;
  }

  .spytech-compare-page__attribute-row {
    border-top: 0;
  }

  .spytech-compare-page__attribute-cell {
    padding: 0.875rem 0;
    border-top: 0.0625rem solid var(--soft-gray);
  }

  .spytech-compare-page__attribute-mobile-label {
    display: block;
    margin-bottom: 0.625rem;
    color: var(--black);
    /*font-size: 1rem;
    line-height: 1.5rem;*/
    line-height: 1.42857;
    font-weight: 600;
  }

  .spytech-compare-page__empty {
    padding: 2.5rem 0 4rem;
    text-align: center;
  }

  .spytech-wishlist-page__card {
    padding: 1.875rem 1.375rem;
  }

  .spytech-wishlist-page__item {
    grid-template-columns: 3.75rem minmax(0, 1fr) 8.625rem;
    grid-template-areas:
      "media . remove"
      "content content quantity"
      "button button button";
    align-items: start;
    row-gap: 1.25rem;
    column-gap: 1rem;
  }

  .spytech-wishlist-page__remove {
    grid-area: remove;
    justify-self: end;
  }

  .spytech-wishlist-page__media {
    grid-area: media;
  }

  .spytech-wishlist-page__content {
    grid-area: content;
    align-self: start;
  }

  .spytech-wishlist-page__quantity {
    grid-area: quantity;
    justify-self: end;
    align-self: start;
  }

  .spytech-wishlist-page__add-to-cart {
    grid-area: button;
    width: 100%;
    min-width: 0;
  }

  .spytech-wishlist-page__empty {
    align-items: center;
    text-align: center;
  }

  .spytech-wishlist-page__empty-action {
    width: 100%;
    min-width: 0;
  }

  .spytech-product-gallery__viewport {
    width: 100%;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .spytech-product-gallery__track {
    flex-direction: row;
    justify-content: flex-start;
    width: max-content;
    min-width: max-content;
    min-height: 0;
    gap: 0.6875rem;
  }

  .spytech-product-gallery__thumb {
    flex: 0 0 auto;
  }

  .spytech-product-summary__title {
    font-size: 1.5625rem;
    line-height: normal;
  }

  .spytech-product-summary__header {
    grid-area: header;
    margin-top: 1.25rem;
  }

  .spytech-product-summary__sku {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .spytech-product-summary__price-box {
    grid-area: price;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "market ."
      "label side-label"
      "online side-value";
    column-gap: 1.25rem;
    margin-top: 0.9375rem;
    padding: 0.9375rem;
  }

  .spytech-product-summary__price-box::after {
    top: 0.9375rem;
    bottom: 0.9375rem;
  }

  .spytech-product-summary__price-main,
  .spytech-product-summary__price-side {
    display: contents;
  }

  .spytech-product-summary__price-main--fallback {
    display: block;
    grid-column: 1 / -1;
  }

  .spytech-product-summary__price-market {
    grid-area: market;
    margin-bottom: 0.375rem;
  }

  .spytech-product-summary__price-label {
    grid-area: label;
  }

  .spytech-product-summary__price-online {
    grid-area: online;
  }

  .spytech-product-summary__price-side-label {
    grid-area: side-label;
  }

  .spytech-product-summary__price-side-value {
    grid-area: side-value;
  }

  .spytech-product-summary__price-market {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .spytech-product-summary__price-label,
  .spytech-product-summary__price-side-label {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .spytech-product-summary__price-online,
  .spytech-product-summary__price-side-value {
    margin-top: 0.375rem;
    font-size: 1.875rem;
    line-height: 2.1875rem;
  }

  .spytech-product-summary__price-online {
    font-weight: 700;
  }

  .spytech-product-summary__price-side-value {
    font-weight: 400;
  }

  .spytech-product-hero__perks {
    grid-area: perks;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    margin-top: 1.375rem;
  }

  .spytech-product-perk {
    flex: 1 1 0;
  }

  .spytech-product-perk__text {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .spytech-product-summary__description {
    grid-area: description;
    margin: 1.375rem 0 0;
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .spytech-product-summary__audio {
    grid-area: audio;
    width: 100%;
    max-width: none;
    margin-top: 1.375rem;
    box-sizing: border-box;
  }

  .spytech-product-summary__actions {
    grid-area: actions;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.375rem;
    padding-bottom: 0;
  }

  .spytech-product-hero__purchase {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.8125rem;
    min-height: 0;
    padding: 0.75rem calc((100vw - min(var(--page-shell-width-fluid), var(--page-shell-max-width))) / 2) 0.75rem;
    border-top: 0.03125rem solid var(--black);
    background: var(--light-gray);
    box-sizing: border-box;
  }

  .single-product .site-back-to-top {
    bottom: calc(
      max(1rem, var(--page-shell-safe-gutter)) +
      env(safe-area-inset-bottom, 0px) +
      6.5rem
    );
  }

  .spytech-product-purchase__form {
    align-items: center;
    gap: 0.8125rem;
    min-height: 3.75rem;
  }

  .spytech-product-purchase__quantity-button:disabled {
    border-color: var(--soft-gray);
    background: var(--light-gray);
  }

  .spytech-product-purchase__submit {
    min-height: 3.75rem;
    height: 3.75rem;
    padding-inline: 1.5rem;
  }

  .spytech-product-purchase__info-button {
    flex: 0 0 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    align-self: center;
  }

  .spytech-product-purchase__info-icon picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .spytech-product-related {
    margin-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .spytech-product-related__title {
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    line-height: 1.1666666667;
  }

  .spytech-product-related__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .spytech-product-disclaimer {
    padding: 0.625rem 0;
  }

  .spytech-product-disclaimer__text {
    text-align: center;
  }
}

.spytech-product-description__video-trigger,
.spytech-product-description__video-placeholder,
.spytech-category-detail__video-trigger,
.spytech-category-detail__video-placeholder,
.spytech-product-video-popup__video-trigger {
  isolation: isolate;
}

.spytech-product-description__video-trigger::after,
.spytech-product-description__video-placeholder::after,
.spytech-category-detail__video-trigger::after,
.spytech-category-detail__video-placeholder::after,
.spytech-product-video-popup__video-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0.125rem solid var(--white);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
}

.spytech-product-description__video-trigger:hover::after,
.spytech-product-description__video-trigger:focus-visible::after,
.spytech-product-description__video-placeholder:hover::after,
.spytech-category-detail__video-trigger:hover::after,
.spytech-category-detail__video-trigger:focus-visible::after,
.spytech-category-detail__video-placeholder:hover::after,
.spytech-product-video-popup__video-trigger:hover::after,
.spytech-product-video-popup__video-trigger:focus-visible::after {
  opacity: 1;
}

.spytech-category-detail__video-placeholder:hover {
  outline: 0;
}

.spytech-product-description__video-play,
.spytech-category-detail__video-play,
.spytech-product-video-popup__video-play {
  z-index: 2;
}

.spytech-product-description__video-play,
.spytech-category-detail__video-play {
  --st-video-play-icon-width: 1.125rem;
  --st-video-play-icon-height: 1.5rem;
}

.spytech-product-video-popup__video-play {
  --st-video-play-icon-width: 1.75rem;
  --st-video-play-icon-height: 2.25rem;
}

.spytech-product-description__video-play::before,
.spytech-category-detail__video-play::before,
.spytech-product-video-popup__video-play::before {
  width: var(--st-video-play-icon-width);
  height: var(--st-video-play-icon-height);
  border: 0;
  border-radius: 0.125rem;
  background: var(--white);
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='18' height='22' viewBox='0 0 18 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.241c0-1.55 1.68-2.511 3.014-1.725l12.415 7.31c1.317.775 1.317 2.68 0 3.455L4.014 19.591C2.68 20.376 1 19.415 1 17.866V3.241Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='18' height='22' viewBox='0 0 18 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.241c0-1.55 1.68-2.511 3.014-1.725l12.415 7.31c1.317.775 1.317 2.68 0 3.455L4.014 19.591C2.68 20.376 1 19.415 1 17.866V3.241Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 47.9375rem) {
  .spytech-product-video-popup__video-play {
    --st-video-play-icon-width: 1.3125rem;
    --st-video-play-icon-height: 1.625rem;
  }
}
