:root {
  --wbp-blue: #0c48a2;
  --wbp-blue-dark: #082f73;
  --wbp-cyan: #08afe7;
  --wbp-text: #172039;
  --wbp-muted: #5f6674;
  --wbp-border: #d8dde6;
  --wbp-soft: #f7f9fc;
}

.wbp-wristband-product-page .stm_titlebox,
.wbp-wristband-product-page .woocommerce-breadcrumb,
.wbp-wristband-product-page .woocommerce-notices-wrapper:empty {
  display: none !important;
}

.wbp-page,
.wbp-page * {
  box-sizing: border-box;
}

.wbp-page {
  background: #fff;
  color: var(--wbp-text);
  font-size: 16px;
  line-height: 1.48;
}

.wbp-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.wbp-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
  padding: 12px 16px;
  color: #3d4554;
  background: linear-gradient(135deg, #fbfdff, #f4f8fd);
  border: 1px solid #e1e8f2;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(8, 47, 115, .055);
  font-size: 13px;
}

.wbp-breadcrumbs a {
  color: var(--wbp-blue);
  text-decoration: none;
}

.wbp-breadcrumbs a:hover,
.wbp-breadcrumbs a:focus {
  color: var(--wbp-blue-dark);
  text-decoration: none;
}

.wbp-breadcrumb-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 650;
}

.wbp-breadcrumb-home .wbp-icon {
  width: 15px;
  height: 15px;
}

.wbp-icon {
  width: 1em;
  height: 1em;
  color: var(--wbp-blue);
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wbp-breadcrumb-chevron {
  width: 12px;
  height: 12px;
  color: #79808d;
}

.wbp-product-top {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(340px, 1fr);
  gap: 34px;
  align-items: start;
}

.wbp-gallery {
  min-width: 0;
}

.wbp-main-image {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  height: 574px;
  background: #fff;
  border: 1px solid var(--wbp-border);
  border-radius: 7px;
}

.wbp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transform-origin: center;
  transition: transform 220ms ease, object-position 220ms ease;
}

.wbp-main-image[data-view="band"] img {
  object-fit: cover;
  object-position: 50% 66%;
  transform: scale(1.45);
}

.wbp-main-image[data-view="loop"] img {
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(2.2);
}

.wbp-main-image[data-view="end"] img {
  object-fit: cover;
  object-position: 88% 67%;
  transform: scale(1.65);
}

.wbp-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 42px 0;
}

.wbp-thumbnail {
  overflow: hidden;
  aspect-ratio: 1.16;
  padding: 0;
  background: #fff;
  border: 1px solid var(--wbp-border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.wbp-thumbnail:hover,
.wbp-thumbnail:focus-visible,
.wbp-thumbnail.is-active {
  border-color: var(--wbp-blue);
  box-shadow: 0 0 0 1px var(--wbp-blue);
  outline: none;
}

.wbp-thumbnail-image {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-image: var(--wbp-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.wbp-thumbnail-image[data-view="band"] {
  background-position: 50% 66%;
  background-size: 145%;
}

.wbp-thumbnail-image[data-view="loop"] {
  background-position: 50% 18%;
  background-size: 220%;
}

.wbp-thumbnail-image[data-view="end"] {
  background-position: 88% 67%;
  background-size: 165%;
}

.wbp-summary {
  padding: 1px 0 0;
}

.wbp-summary h1 {
  display: flex;
  flex-direction: column;
  margin: 0 0 16px;
  color: var(--wbp-blue-dark);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
}

.wbp-summary h1 span {
  white-space: nowrap;
}

.wbp-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 20px;
  color: var(--wbp-blue);
  font-size: 30px;
  font-weight: 700;
}

.wbp-price del {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #7b8290;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  opacity: 1;
  text-decoration: none;
}

.wbp-price del::after {
  position: absolute;
  top: 50%;
  right: -3px;
  left: -3px;
  height: 2px;
  background: #676f7d;
  border-radius: 2px;
  content: '';
  transform: translateY(-50%) rotate(-6deg);
}

.wbp-price ins {
  display: inline-flex;
  align-items: center;
  color: var(--wbp-blue);
  line-height: 1.1;
  text-decoration: none;
}

.wbp-discount-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: #087342;
  background: #e8f8ef;
  border: 1px solid #b8e7cc;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .45px;
  line-height: 1;
  text-transform: uppercase;
}

.wbp-category {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--wbp-blue);
  font-size: 17px;
  font-weight: 600;
}

.wbp-category .wbp-icon {
  width: 39px;
  height: 39px;
}

.wbp-category a {
  color: inherit;
  text-decoration: none;
}

.wbp-summary hr {
  height: 1px;
  margin: 20px 0 22px;
  background: var(--wbp-border);
  border: 0;
}

.wbp-intro {
  max-width: 390px;
  margin: 0 0 23px;
  color: var(--wbp-text);
  font-size: 17px;
}

.wbp-cart {
  margin: 0 0 24px;
}

.wbp-cart > label {
  display: block;
  margin: 0 0 6px;
  color: var(--wbp-text);
  font-size: 14px;
  font-weight: 600;
}

.wbp-cart-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
}

.wbp-cart .quantity {
  width: 100% !important;
  margin: 0 !important;
}

.wbp-cart .quantity .qty {
  width: 100% !important;
  height: 58px;
  padding: 0 14px;
  color: var(--wbp-text);
  background: #fff;
  border: 1px solid #b6bdc8;
  border-radius: 6px;
  font-size: 18px;
  text-align: center;
}

.wbp-add-to-cart.button.alt,
.woocommerce .wbp-add-to-cart.button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  margin: 0 !important;
  padding: 13px 24px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #0b5ec3, #0b3e9e) !important;
  border: 0 !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  font-size: 19px !important;
  font-weight: 600 !important;
  text-transform: none !important;
}

.wbp-add-to-cart.button.alt:hover,
.wbp-add-to-cart.button.alt:focus {
  background: linear-gradient(135deg, #084faa, #082f7c) !important;
}

.wbp-add-to-cart .wbp-icon {
  width: 31px;
  height: 31px;
  color: #fff;
}

.wbp-assurances {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: var(--wbp-muted);
  list-style: none;
}

.wbp-assurances li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wbp-assurances .wbp-icon {
  width: 27px;
  height: 27px;
}

.wbp-information {
  margin-top: 28px;
}

.wbp-tab-list {
  display: flex;
  align-items: flex-end;
  gap: 0;
  transform: translateY(1px);
}

.wbp-tab-list button {
  min-width: 150px;
  padding: 12px 30px;
  color: var(--wbp-blue-dark);
  background: #f9fafc;
  border: 1px solid var(--wbp-border);
  border-radius: 7px 7px 0 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.wbp-tab-list button + button {
  margin-left: -1px;
}

.wbp-tab-list button.is-active {
  padding-top: 14px;
  background: #fff;
  border-top: 2px solid var(--wbp-blue);
  border-bottom-color: #fff;
}

.wbp-tab-list button:focus-visible {
  outline: 2px solid var(--wbp-cyan);
  outline-offset: 2px;
}

.wbp-tab-panel {
  min-height: 330px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--wbp-border);
  border-radius: 0 6px 6px;
}

.wbp-tab-panel[hidden] {
  display: none;
}

.wbp-description-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
}

.wbp-description-copy {
  padding: 0 30px 0 0;
  border-right: 1px solid var(--wbp-border);
}

.wbp-description-copy p,
.wbp-applications-copy p {
  margin: 0 0 20px;
}

.wbp-description-copy ul,
.wbp-applications-copy ul {
  margin: 0;
  padding-left: 22px;
}

.wbp-description-copy li,
.wbp-applications-copy li {
  margin: 7px 0;
  padding-left: 3px;
}

.wbp-description-copy li::marker,
.wbp-applications-copy li::marker {
  color: var(--wbp-blue);
}

.wbp-highlights {
  padding-left: 54px;
}

.wbp-highlights h2,
.wbp-applications-copy h2 {
  margin: 0 0 12px;
  color: var(--wbp-blue);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .2px;
}

.wbp-highlights ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: highlights;
}

.wbp-highlights li {
  position: relative;
  min-height: 24px;
  padding-left: 34px;
  counter-increment: highlights;
}

.wbp-highlights li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #fff;
  background: var(--wbp-blue);
  border-radius: 50%;
  content: counter(highlights);
  font-size: 11px;
  font-weight: 700;
}

.wbp-applications-copy {
  max-width: 750px;
  padding: 8px 12px;
}

.wbp-video-guides {
  margin: 24px 0 0;
  padding: 26px;
  background: linear-gradient(145deg, #f7faff 0%, #eef5ff 100%);
  border: 1px solid #cedbef;
  border-radius: 10px;
}

.wbp-video-guides-heading {
  max-width: 720px;
  margin-bottom: 20px;
}

.wbp-video-guides-heading > span,
.wbp-video-copy > span {
  display: block;
  color: var(--wbp-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.wbp-video-guides-heading h2 {
  margin: 5px 0 7px;
  color: var(--wbp-blue-dark);
  font-size: 24px;
  font-weight: 750;
  line-height: 1.15;
}

.wbp-video-guides-heading p {
  margin: 0;
  color: var(--wbp-muted);
  line-height: 1.5;
}

.wbp-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wbp-video-card {
  overflow: hidden;
  min-width: 0;
  background: #fff;
  border: 1px solid #d7e1ef;
  border-radius: 9px;
  box-shadow: 0 7px 20px rgba(8, 47, 115, .07);
}

.wbp-video-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--wbp-blue-dark);
}

.wbp-video-launch,
.wbp-video-media iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

.wbp-video-launch {
  cursor: pointer;
  background: var(--wbp-blue-dark);
}

.wbp-video-launch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.wbp-video-launch::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 28, 69, .02), rgba(4, 28, 69, .25));
  content: '';
}

.wbp-video-launch:hover img,
.wbp-video-launch:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.wbp-video-launch:focus-visible {
  outline: 3px solid var(--wbp-cyan);
  outline-offset: -3px;
}

.wbp-video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: rgba(12, 72, 162, .94);
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(4, 28, 69, .34);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.wbp-video-launch:hover .wbp-video-play,
.wbp-video-launch:focus-visible .wbp-video-play {
  background: #0b58c8;
  transform: translate(-50%, -50%) scale(1.07);
}

.wbp-video-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.wbp-video-copy {
  padding: 15px 16px 17px;
}

.wbp-video-copy h3 {
  margin: 5px 0 11px;
  color: var(--wbp-blue-dark);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
}

.wbp-video-copy a {
  color: var(--wbp-blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.wbp-video-copy a:hover,
.wbp-video-copy a:focus {
  color: var(--wbp-blue-dark);
  text-decoration: underline;
}

.wbp-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0 28px;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--wbp-border);
  border-radius: 6px;
}

.wbp-proof article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 17px;
  align-items: center;
  min-width: 0;
  padding: 0 25px;
}

.wbp-proof article + article {
  border-left: 1px solid var(--wbp-border);
}

.wbp-proof .wbp-icon {
  width: 58px;
  height: 58px;
}

.wbp-proof h3 {
  margin: 0 0 5px;
  color: var(--wbp-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.wbp-proof p {
  margin: 0;
  color: var(--wbp-text);
  font-size: 12px;
  line-height: 1.35;
}

.wbp-tagline {
  padding: 16px 20px;
  color: #fff;
  background: linear-gradient(90deg, #0c4ca6, #0b3e91);
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 960px) {
  .wbp-product-top {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 24px;
  }

  .wbp-main-image {
    height: 480px;
  }

  .wbp-thumbnails {
    padding-inline: 0;
    gap: 10px;
  }

  .wbp-highlights {
    padding-left: 30px;
  }

  .wbp-proof article {
    grid-template-columns: 46px 1fr;
    padding-inline: 15px;
  }

  .wbp-proof .wbp-icon {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 760px) {
  .wbp-container {
    width: min(100% - 28px, 620px);
  }

  .wbp-breadcrumbs {
    margin: 14px 0 18px;
    padding: 10px 12px;
    gap: 6px;
    border-radius: 10px;
  }

  .wbp-breadcrumbs span[aria-current="page"],
  .wbp-breadcrumbs .wbp-breadcrumb-chevron:last-of-type {
    display: none;
  }

  .wbp-product-top {
    grid-template-columns: 1fr;
  }

  .wbp-main-image {
    height: min(92vw, 560px);
  }

  .wbp-summary {
    padding-top: 6px;
  }

  .wbp-summary h1 {
    margin-bottom: 14px;
    font-size: clamp(27px, 7.2vw, 34px);
    letter-spacing: -.55px;
    line-height: 1.12;
  }

  .wbp-summary h1 span {
    white-space: normal;
  }

  .wbp-description-grid,
  .wbp-proof {
    grid-template-columns: 1fr;
  }

  .wbp-description-copy {
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--wbp-border);
  }

  .wbp-highlights {
    padding: 24px 0 0;
  }

  .wbp-video-guides {
    padding: 22px;
  }

  .wbp-video-grid {
    grid-template-columns: 1fr;
  }

  .wbp-video-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(180px, .65fr);
  }

  .wbp-video-media {
    align-self: stretch;
  }

  .wbp-proof {
    gap: 20px;
    padding: 22px;
  }

  .wbp-proof article {
    padding: 0;
  }

  .wbp-proof article + article {
    padding-top: 20px;
    border-top: 1px solid var(--wbp-border);
    border-left: 0;
  }
}

@media (max-width: 480px) {
  .wbp-page {
    font-size: 15px;
  }

  .wbp-breadcrumbs {
    font-size: 11.5px;
  }

  .wbp-summary h1 {
    font-size: 28px;
  }

  .wbp-thumbnails {
    gap: 7px;
  }

  .wbp-cart-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
  }

  .wbp-add-to-cart.button.alt,
  .woocommerce .wbp-add-to-cart.button.alt {
    gap: 8px;
    padding-inline: 14px !important;
    font-size: 16px !important;
  }

  .wbp-add-to-cart .wbp-icon {
    width: 25px;
    height: 25px;
  }

  .wbp-tab-list {
    align-items: stretch;
  }

  .wbp-tab-list button {
    min-width: 0;
    flex: 1 1 50%;
    padding: 11px 9px;
    font-size: 12px;
  }

  .wbp-tab-panel {
    padding: 18px;
  }

  .wbp-video-guides {
    padding: 18px;
    border-radius: 9px;
  }

  .wbp-video-guides-heading h2 {
    font-size: 21px;
  }

  .wbp-video-card {
    display: block;
  }

  .wbp-video-copy {
    padding: 14px 15px 16px;
  }
}
