*,
*::before,
*::after {
  box-sizing: border-box;
}

.wrapper-blue-and-white-pdp-v2 {
  background: #ffffff;
  color: #030b2e;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  overflow-x: hidden;
}
.wrapper-blue-and-white-pdp-v2 h1,
.wrapper-blue-and-white-pdp-v2 h2,
.wrapper-blue-and-white-pdp-v2 h3,
.wrapper-blue-and-white-pdp-v2 h4,
.wrapper-blue-and-white-pdp-v2 h5,
.wrapper-blue-and-white-pdp-v2 h6 {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 900;
}

.baw-v2-section {
  padding: 48px 16px;
}
@media (min-width: 951px) {
  .baw-v2-section {
    padding: 70px 16px;
  }
}

.baw-v2-section__inner {
  max-width: 1300px;
  margin: 0 auto;
}

.baw-v2-placeholder {
  margin: 0;
  padding: 24px;
  border: 1px dashed rgba(3, 11, 46, 0.25);
  border-radius: 8px;
  background: #f5f5ff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #636776;
  text-align: center;
}

.baw-actions-section {
  background: #030b2e;
  padding: 48px 0 0;
}
@media (min-width: 951px) {
  .baw-actions-section {
    background: #ffffff;
    padding: 70px 16px;
  }
}

.baw-actions__card {
  display: flex;
  flex-direction: column;
  background: #030b2e;
  overflow: hidden;
}
@media (min-width: 951px) {
  .baw-actions__card {
    flex-direction: row;
    align-items: stretch;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 16px;
  }
}

.baw-actions__content {
  padding: 0 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 951px) {
  .baw-actions__content {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 716px;
    padding: 56px;
    gap: 32px;
  }
}

.baw-actions__title {
  margin: 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 32px;
  text-transform: uppercase;
  color: #ffffff;
}
@media (min-width: 951px) {
  .baw-actions__title {
    font-size: 56px;
    line-height: 56px;
  }
}

.baw-actions__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 951px) {
  .baw-actions__points {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 32px;
  }
}

.baw-actions__point {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (min-width: 951px) {
  .baw-actions__point {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.baw-actions__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 2px solid #353c58;
  border-radius: 100px;
}
@media (min-width: 951px) {
  .baw-actions__icon {
    padding: 16px;
  }
}
.baw-actions__icon img {
  display: block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 951px) {
  .baw-actions__icon img {
    width: 24px;
    height: 24px;
  }
}

.baw-actions__text {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}
@media (min-width: 951px) {
  .baw-actions__text {
    flex: none;
    font-size: 24px;
    line-height: 32px;
  }
}

.baw-actions__media {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 951px) {
  .baw-actions__media {
    flex: 1 1 40%;
    min-width: 0;
    align-self: stretch;
  }
}
.baw-actions__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 350px;
}
@media (min-width: 951px) {
  .baw-actions__media img {
    position: absolute;
    inset: 0;
    min-height: 0;
  }
}
.baw-actions__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #030b2e 0%, rgba(3, 11, 46, 0) 18%);
}
@media (min-width: 951px) {
  .baw-actions__media::after {
    background: linear-gradient(90deg, #030b2e 0%, rgba(3, 11, 46, 0) 15.26%);
  }
}

.baw-actions-section--light {
  background: #f0f0f0;
}
@media (min-width: 951px) {
  .baw-actions-section--light {
    background: #ffffff;
  }
}
.baw-actions-section--light .baw-actions__card {
  background: #f0f0f0;
}
.baw-actions-section--light .baw-actions__title,
.baw-actions-section--light .baw-actions__text {
  color: #030b2e;
}
.baw-actions-section--light .baw-actions__icon {
  border-color: #030b2e;
}
.baw-actions-section--light .baw-actions__media::after {
  background: linear-gradient(180deg, #f0f0f0 0%, rgba(240, 240, 240, 0) 18%);
}
@media (min-width: 951px) {
  .baw-actions-section--light .baw-actions__media::after {
    background: linear-gradient(90deg, #f0f0f0 0%, rgba(240, 240, 240, 0) 15.26%);
  }
}

.baw-real-change-section {
  background: #030b2e;
  padding: 48px 0;
  color: #ffffff;
}
@media (min-width: 951px) {
  .baw-real-change-section {
    padding: 100px 70px;
  }
}

.baw-real-change__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 951px) {
  .baw-real-change__inner {
    padding: 0;
    gap: 40px;
  }
}

.baw-real-change__title {
  margin: 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 32px;
  text-transform: uppercase;
  color: #ffffff;
}
@media (min-width: 951px) {
  .baw-real-change__title {
    font-size: 56px;
    line-height: 56px;
  }
}

.baw-real-change__carousel {
  min-width: 0;
}

.baw-real-change-swiper {
  overflow: visible;
}
@media (min-width: 951px) {
  .baw-real-change-swiper {
    overflow: hidden;
  }
}
.baw-real-change-swiper .swiper-slide {
  height: auto;
}

.baw-real-change__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.baw-compare {
  --baw-compare-pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: pan-x;
  cursor: grab;
}
.baw-compare.baw-compare--interactive {
  touch-action: none;
  cursor: ew-resize;
}

.baw-compare__after,
.baw-compare__before {
  position: absolute;
  inset: 0;
}
.baw-compare__after img,
.baw-compare__before img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.baw-compare__after {
  z-index: 0;
}

.baw-compare__before {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--baw-compare-pos)) 0 0);
}

.baw-compare__label {
  position: absolute;
  z-index: 1;
  bottom: 12px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  white-space: nowrap;
  pointer-events: none;
}

.baw-compare__label--before {
  left: 12px;
}

.baw-compare__label--after {
  right: 12px;
}

.baw-compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--baw-compare-pos);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  outline: none;
}

.baw-compare__divider {
  display: block;
  width: 4px;
  height: 100%;
  background: #030b2e;
  flex-shrink: 0;
}

.baw-compare__handle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #ffffff;
  flex-shrink: 0;
}
.baw-compare__handle-btn img {
  display: block;
  width: 12px;
  height: 12px;
}
.baw-compare__handle-btn--prev {
  border-radius: 100px 0 0 100px;
}
.baw-compare__handle-btn--next {
  border-radius: 0 100px 100px 0;
}

.baw-real-change__quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #ffffff;
}

.wrapper-blue-and-white-pdp-v2 .baw-real-change__card-title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}
@media (min-width: 951px) {
  .wrapper-blue-and-white-pdp-v2 .baw-real-change__card-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.baw-real-change__card-text {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
@media (min-width: 951px) {
  .baw-real-change__card-text {
    font-size: 20px;
    line-height: 28px;
  }
}

.baw-real-change__card-attr {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
@media (min-width: 951px) {
  .baw-real-change__card-attr {
    font-size: 20px;
    line-height: 28px;
  }
}

.baw-real-change__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 951px) {
  .baw-real-change__nav {
    display: none;
  }
}

.baw-real-change__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #030b2e;
  box-shadow: 0 0 0 3px rgba(0, 14, 40, 0.1);
}
.baw-real-change__nav-btn img {
  display: block;
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.baw-real-change__nav-count {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  min-width: 2.5em;
  text-align: center;
}

.baw-transform-section {
  background: #f0f0f0;
  padding: 48px 16px;
}
@media (min-width: 951px) {
  .baw-transform-section {
    padding: 70px 70px 100px;
  }
}

.baw-transform__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 951px) {
  .baw-transform__inner {
    gap: 40px;
  }
}

.wrapper-blue-and-white-pdp-v2 .baw-transform__title {
  margin: 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 32px;
  text-transform: uppercase;
  text-align: center;
  color: #030b2e;
}
@media (min-width: 951px) {
  .wrapper-blue-and-white-pdp-v2 .baw-transform__title {
    font-size: 56px;
    line-height: 56px;
  }
}

.baw-transform__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 951px) {
  .baw-transform__body {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

.baw-transform__media {
  flex: 1 1 50%;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 600/500;
}
.baw-transform__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.baw-transform__stats {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 951px) {
  .baw-transform__stats {
    gap: 20px;
  }
}

.baw-transform__stat {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 951px) {
  .baw-transform__stat {
    gap: 20px;
  }
}

.baw-transform__ring {
  position: relative;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  color: #0808f8;
}
@media (min-width: 951px) {
  .baw-transform__ring {
    flex-basis: 96px;
    width: 96px;
    height: 96px;
  }
}

.baw-transform__ring-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.baw-transform__ring-track {
  color: rgba(8, 8, 248, 0.18);
}

.baw-transform__ring-progress {
  color: #0808f8;
  stroke-dasharray: 276.46;
  stroke-dashoffset: 276.46;
}

.baw-transform__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: #030b2e;
  pointer-events: none;
}
@media (min-width: 951px) {
  .baw-transform__value {
    font-size: 24px;
  }
}
.baw-transform__value .odometer,
.baw-transform__value .odometer-value {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.baw-transform__suffix {
  margin-left: 1px;
}

.baw-transform__text {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #030b2e;
}
@media (min-width: 951px) {
  .baw-transform__text {
    font-size: 22px;
    line-height: 28px;
  }
}

.baw-benefits-howto-section {
  background: #f0f0f0;
  padding: 48px 16px;
}
@media (min-width: 951px) {
  .baw-benefits-howto-section {
    padding: 70px;
  }
}

.baw-benefits-howto__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 951px) {
  .baw-benefits-howto__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }
}

.baw-benefits-howto__card {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  background: transparent;
  border: 0;
}
@media (min-width: 951px) {
  .baw-benefits-howto__card {
    gap: 32px;
    padding: 56px;
    background: #f0f0f0;
    border: 1px solid #dadada;
    border-radius: 16px;
    overflow: hidden;
  }
}

.wrapper-blue-and-white-pdp-v2 .baw-benefits-howto__title {
  margin: 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 32px;
  text-transform: uppercase;
  color: #030b2e;
}
@media (min-width: 951px) {
  .wrapper-blue-and-white-pdp-v2 .baw-benefits-howto__title {
    font-size: 56px;
    line-height: 56px;
  }
}

.baw-benefits-howto__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 950px) {
  .baw-benefits-howto__list {
    gap: 12px;
  }
}

.baw-benefits-howto__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.baw-benefits-howto__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}
@media (min-width: 951px) {
  .baw-benefits-howto__check {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }
}
.baw-benefits-howto__check img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.baw-benefits-howto__point-text {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #030b2e;
}
@media (min-width: 951px) {
  .baw-benefits-howto__point-text {
    font-size: 20px;
    line-height: 28px;
  }
}

.baw-benefits-howto__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 951px) {
  .baw-benefits-howto__steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
  .baw-benefits-howto__steps::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    height: 1px;
    background: #dadada;
    pointer-events: none;
  }
}
@media (max-width: 950px) {
  .baw-benefits-howto__steps::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: #dadada;
    pointer-events: none;
  }
}

.baw-benefits-howto__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex: 1 1 0;
  min-width: 0;
}
@media (min-width: 951px) {
  .baw-benefits-howto__step {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
}

.baw-benefits-howto__step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid #dadada;
  background: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #030b2e;
}

.baw-benefits-howto__step-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  border: 2px solid #dadada;
  background: transparent;
}
@media (min-width: 951px) {
  .baw-benefits-howto__step-icon {
    width: 68px;
    height: 68px;
    padding: 16px;
  }
}
.baw-benefits-howto__step-icon img {
  display: block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 951px) {
  .baw-benefits-howto__step-icon img {
    width: 32px;
    height: 32px;
  }
}

.baw-benefits-howto__step-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 951px) {
  .baw-benefits-howto__step-copy {
    width: 100%;
    align-items: center;
  }
}

.baw-benefits-howto__step-title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #030b2e;
}
@media (min-width: 951px) {
  .baw-benefits-howto__step-title {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
}

.baw-benefits-howto__step-text {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #636776;
}
@media (min-width: 951px) {
  .baw-benefits-howto__step-text {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }
}

@media (max-width: 950px) {
  .baw-benefits-howto__card--howto {
    padding-top: 32px;
    border-top: 1px solid #dadada;
  }
}
.baw-premium-section {
  background: #f0f0f0;
  padding: 48px 16px;
}
@media (min-width: 951px) {
  .baw-premium-section {
    padding: 100px 70px 70px;
  }
}

.baw-premium__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 951px) {
  .baw-premium__inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

.baw-premium__content {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 951px) {
  .baw-premium__content {
    gap: 32px;
  }
}

.wrapper-blue-and-white-pdp-v2 .baw-premium__title {
  margin: 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 32px;
  text-transform: uppercase;
  color: #030b2e;
}
@media (min-width: 951px) {
  .wrapper-blue-and-white-pdp-v2 .baw-premium__title {
    font-size: 56px;
    line-height: 56px;
  }
}

.baw-premium__points {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.baw-premium__col {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.baw-premium__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.baw-premium__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}
@media (min-width: 951px) {
  .baw-premium__check {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }
}
.baw-premium__check img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.baw-premium__text {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #030b2e;
}
@media (min-width: 951px) {
  .baw-premium__text {
    font-size: 20px;
    line-height: 28px;
  }
}

.baw-premium__media {
  flex: 1 1 50%;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 630/464;
}
.baw-premium__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.baw-competitors-section {
  background: #f0f0f0;
  padding: 48px 16px;
}
@media (min-width: 951px) {
  .baw-competitors-section {
    padding: 70px;
  }
}

.baw-competitors__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 951px) {
  .baw-competitors__inner {
    gap: 40px;
  }
}

.wrapper-blue-and-white-pdp-v2 .baw-competitors__title {
  margin: 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 32px;
  text-transform: uppercase;
  color: #030b2e;
  text-align: left;
}
@media (min-width: 951px) {
  .wrapper-blue-and-white-pdp-v2 .baw-competitors__title {
    font-size: 56px;
    line-height: 56px;
    text-align: center;
  }
}

.baw-competitors__row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
@media (min-width: 951px) {
  .baw-competitors__row {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

.baw-competitors__media {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 630/464;
}
@media (min-width: 951px) {
  .baw-competitors__media {
    flex: 1 1 50%;
    min-width: 0;
  }
}
.baw-competitors__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.baw-competitors__table {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 951px) {
  .baw-competitors__table {
    flex: 1 1 50%;
    min-width: 0;
  }
}
.baw-competitors__table > *:not(table) {
  display: none;
}
.baw-competitors__table table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: #ffffff;
}
.baw-competitors__table thead th {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 20px;
  color: #050446;
  border-bottom: 1px solid #dadada;
  padding: 12px;
  text-align: left;
  vertical-align: middle;
}
@media (min-width: 951px) {
  .baw-competitors__table thead th {
    font-size: 16px;
    line-height: 22px;
    padding: 18px 20px;
  }
}
.baw-competitors__table thead th:nth-child(2) {
  background: #f5f5ff;
  color: #030b2e;
}
.baw-competitors__table thead th:nth-child(3) {
  text-align: center;
}
.baw-competitors__table tbody tr td {
  border-bottom: 1px solid #dadada;
  padding: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 350;
  line-height: 20px;
  color: #050446;
  vertical-align: middle;
}
@media (min-width: 951px) {
  .baw-competitors__table tbody tr td {
    font-size: 16px;
    line-height: 22px;
    padding: 18px 20px;
  }
}
.baw-competitors__table tbody tr td:nth-child(2) {
  background: #f5f5ff;
  color: #030b2e;
}
.baw-competitors__table tbody tr td:nth-child(3) {
  color: #030b2e;
}
.baw-competitors__table tbody tr:last-of-type td {
  border-bottom: none;
}
.baw-competitors__table tbody tr td:nth-child(2), .baw-competitors__table tbody tr td:nth-child(3) {
  position: relative;
  padding-left: 36px;
}
@media (min-width: 951px) {
  .baw-competitors__table tbody tr td:nth-child(2), .baw-competitors__table tbody tr td:nth-child(3) {
    padding-left: 52px;
  }
}
.baw-competitors__table tbody tr td:nth-child(2)::before, .baw-competitors__table tbody tr td:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: no-repeat center/contain;
}
@media (min-width: 951px) {
  .baw-competitors__table tbody tr td:nth-child(2)::before, .baw-competitors__table tbody tr td:nth-child(3)::before {
    left: 20px;
    width: 20px;
    height: 20px;
  }
}
.baw-competitors__table tbody tr td:nth-child(2) img, .baw-competitors__table tbody tr td:nth-child(3) img {
  display: none;
}
.baw-competitors__table tbody tr td:nth-child(2)::before {
  background-image: url(../images/icons/check.svg);
}
.baw-competitors__table tbody tr td:nth-child(3)::before {
  background-image: url(../images/icons/red-x.svg);
}

.baw-faq-section {
  background: #f0f0f0;
  padding: 48px 16px;
}
@media (min-width: 951px) {
  .baw-faq-section {
    padding: 70px;
  }
}

.baw-faq__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 951px) {
  .baw-faq__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}

.wrapper-blue-and-white-pdp-v2 .baw-faq__title {
  margin: 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 32px;
  text-transform: uppercase;
  color: #030b2e;
}
@media (min-width: 951px) {
  .wrapper-blue-and-white-pdp-v2 .baw-faq__title {
    flex: 0 0 402px;
    width: 402px;
    font-size: 56px;
    line-height: 56px;
  }
}

.baw-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-width: 0;
}
@media (min-width: 951px) {
  .baw-faq__list {
    flex: 1 1 auto;
    gap: 16px;
  }
}

.baw-faq__item {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
}
@media (min-width: 951px) {
  .baw-faq__item {
    padding: 20px;
  }
}

.baw-faq__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
@media (min-width: 951px) {
  .baw-faq__trigger {
    cursor: default;
    pointer-events: none;
  }
}

.baw-faq__question {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 450;
  font-size: 18px;
  line-height: 24px;
  color: #030b2e;
}
@media (min-width: 951px) {
  .baw-faq__question {
    font-size: 20px;
    line-height: 28px;
  }
}

.baw-faq__icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
@media (min-width: 951px) {
  .baw-faq__icon {
    display: none;
  }
}
.baw-faq__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.baw-faq__icon-plus {
  display: block;
}
.baw-faq__item.is-open .baw-faq__icon-plus {
  display: none;
}

.baw-faq__icon-close {
  display: none;
}
.baw-faq__item.is-open .baw-faq__icon-close {
  display: block;
}

.baw-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  min-height: 0;
  transition: grid-template-rows 0.3s ease;
}
@media (min-width: 951px) {
  .baw-faq__panel {
    grid-template-rows: 1fr;
  }
}
.baw-faq__item.is-open .baw-faq__panel {
  grid-template-rows: 1fr;
}

.baw-faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.baw-faq__answer {
  padding-top: 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 350;
  font-size: 16px;
  line-height: 22px;
  color: #636776;
}
@media (min-width: 951px) {
  .baw-faq__answer {
    font-size: 18px;
    line-height: 24px;
  }
}
.baw-faq__answer p {
  margin: 0;
}
.baw-faq__answer p + p {
  margin-top: 8px;
}

.btn-reset {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.hero-section {
  background: #f0f0f0;
  padding-top: 32px;
  padding-bottom: 48px;
}
@media (max-width: 950px) {
  .hero-section {
    padding-top: 20px;
    padding-bottom: 48px;
  }
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 950px) {
  .hero-inner {
    flex-direction: column;
    gap: 40px;
  }
}

.hero-left {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
@media (max-width: 950px) {
  .hero-left {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

.hero-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 950px) {
  .hero-right {
    width: 100%;
  }
}

.hero-title {
  margin: 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #030b2e;
}
@media (max-width: 950px) {
  .hero-title {
    font-size: 44px;
    line-height: 44px;
  }
}

.hero-subtitle {
  margin: 0;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #030b2e;
}
@media (max-width: 950px) {
  .hero-subtitle {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
  }
}

.hero-content {
  font-size: 20px;
  font-weight: 350;
  line-height: 28px;
  color: #030b2e;
}
.hero-content p {
  margin: 0 0 10px;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 20px;
  font-weight: 350;
  line-height: 1.25;
  color: rgba(3, 11, 46, 0.85);
}
@media (max-width: 950px) {
  .hero-content p {
    font-size: 18px;
    line-height: 22px;
  }
}
.hero-content p:last-child {
  margin-bottom: 0;
}

.baw-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.baw-gallery__main {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}
.baw-gallery__main .swiper-slide {
  height: auto;
}
.baw-gallery__main .swiper-slide img,
.baw-gallery__main .swiper-slide video {
  width: 100%;
  height: auto;
  display: block;
}

.baw-gallery__main > .baw-gallery__story-pagination.swiper-pagination {
  --swiper-pagination-top: 12px;
  --swiper-pagination-bottom: auto;
  position: absolute !important;
  top: 12px !important;
  bottom: auto !important;
  left: 12px !important;
  right: 12px !important;
  z-index: 99;
  display: flex;
  gap: 6px;
  width: auto !important;
  margin: 0;
  transform: none !important;
}
@media (min-width: 951px) {
  .baw-gallery__main > .baw-gallery__story-pagination.swiper-pagination {
    --swiper-pagination-top: 16px;
    top: 16px !important;
    left: 16px !important;
    right: 16px !important;
    gap: 8px;
  }
}
.baw-gallery__main > .baw-gallery__story-pagination.swiper-pagination .swiper-pagination-bullet {
  flex-grow: 1;
  width: auto;
  height: 4px;
  margin: 0 !important;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
@media (min-width: 951px) {
  .baw-gallery__main > .baw-gallery__story-pagination.swiper-pagination .swiper-pagination-bullet {
    height: 6px;
  }
}
.baw-gallery__main > .baw-gallery__story-pagination.swiper-pagination .swiper-pagination-bullet.before-active {
  background-color: #ffffff;
}
.baw-gallery__main > .baw-gallery__story-pagination.swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
}
.baw-gallery__main > .baw-gallery__story-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.4);
}
.baw-gallery__main > .baw-gallery__story-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: #ffffff;
  animation: baw-gallery-story-progress var(--baw-gallery-story-duration, 5s) linear forwards;
}

.baw-gallery.is-story-paused .baw-gallery__story-pagination .swiper-pagination-bullet-active::before {
  animation-play-state: paused;
}

@keyframes baw-gallery-story-progress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.baw-gallery__thumbs-row {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
@media (max-width: 950px) {
  .baw-gallery__thumbs-row {
    gap: 12px;
  }
}

.baw-gallery__thumb-prev,
.baw-gallery__thumb-next {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s;
}
@media (max-width: 950px) {
  .baw-gallery__thumb-prev,
  .baw-gallery__thumb-next {
    width: 16px;
    height: 16px;
  }
}
.baw-gallery__thumb-prev:hover,
.baw-gallery__thumb-next:hover {
  opacity: 0.75;
}
.baw-gallery__thumb-prev.swiper-button-disabled,
.baw-gallery__thumb-next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.baw-gallery__thumb-prev img,
.baw-gallery__thumb-next img {
  width: 20px;
  height: 20px;
  display: block;
}
@media (max-width: 950px) {
  .baw-gallery__thumb-prev img,
  .baw-gallery__thumb-next img {
    width: 16px;
    height: 16px;
  }
}

.baw-gallery__thumbs {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.baw-gallery__thumbs .swiper-slide {
  height: 88px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: #f0f0f0;
  box-sizing: border-box;
}
.baw-gallery__thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: #0808f8;
}
.baw-gallery__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 950px) {
  .baw-gallery__thumbs .swiper-slide {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border-width: 1px;
  }
  .baw-gallery__thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: #0808f8;
  }
  .baw-gallery__thumbs .swiper-slide img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.hero-benefits {
  display: flex;
  gap: 24px 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}
@media (max-width: 950px) {
  .hero-benefits {
    gap: 16px;
  }
}

.hero-benefits__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 calc(50% - 16px);
  min-width: 0;
}
@media (max-width: 950px) {
  .hero-benefits__item {
    flex: 1 1 calc(50% - 8px);
    gap: 12px;
  }
}

.hero-benefits__icon-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  padding: 7px 14px;
  border: 1px solid #dadada;
  border-radius: 32px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-benefits__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.hero-benefits__text {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #030b2e;
}
@media (max-width: 950px) {
  .hero-benefits__text {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 450;
    line-height: 16px;
  }
}

.hero-reviews-stamped {
  margin-top: 0;
}
.hero-reviews-stamped a.review-scroll {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.hero-reviews-stamped .product-cart__reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}
.hero-reviews-stamped .text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.hero-reviews-stamped .stars-rating {
  position: relative;
  width: 100px;
  min-width: 100px;
  height: 20px;
}
.hero-reviews-stamped .stars-rating::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/icons/green-star.svg);
  background-repeat: repeat-x;
  background-size: 20px 20px;
  background-position: 0 0;
  opacity: 0.25;
}
.hero-reviews-stamped .stars-rating span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: url(../images/icons/green-star.svg);
  background-repeat: repeat-x;
  background-size: 20px 20px;
  background-position: 0 0;
}
.hero-reviews-stamped .stars-rating--small {
  width: 100px;
  min-width: 100px;
  height: 20px;
}
@media (max-width: 950px) {
  .hero-reviews-stamped .product-cart__reviews {
    margin: 0;
    gap: 4px;
  }
  .hero-reviews-stamped .text {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 450;
    line-height: 24px;
  }
  .hero-reviews-stamped .stars-rating,
  .hero-reviews-stamped .stars-rating--small {
    width: 80px;
    min-width: 80px;
    height: 16px;
  }
  .hero-reviews-stamped .stars-rating::before,
  .hero-reviews-stamped .stars-rating--small::before {
    background-size: 16px 16px;
  }
  .hero-reviews-stamped .stars-rating span,
  .hero-reviews-stamped .stars-rating--small span {
    background-size: 16px 16px;
  }
}

.wrapper-blue-and-white-pdp-v2 .buy-box {
  width: 100%;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3 {
  max-width: 100%;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3 .button-block .single_add_to_cart_button {
  width: 100%;
  margin: 16px 0 0;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 16px 22px;
  height: auto;
  border: 0;
  background: #0038b1 !important;
  background-color: #0038b1 !important;
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(0, 14, 40, 0.1);
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3 .button-block .single_add_to_cart_button:hover {
  background: #050446 !important;
  background-color: #050446 !important;
  color: #fff !important;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3 .button-block .single_add_to_cart_button:disabled, .wrapper-blue-and-white-pdp-v2 .buy-box-p3 .button-block .single_add_to_cart_button[disabled] {
  background: #cccccc !important;
  background-color: #cccccc !important;
  color: #666666 !important;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.7;
  pointer-events: none;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3 .button-block .single_add_to_cart_button:disabled:hover, .wrapper-blue-and-white-pdp-v2 .buy-box-p3 .button-block .single_add_to_cart_button[disabled]:hover {
  background: #cccccc !important;
  background-color: #cccccc !important;
  color: #666666 !important;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3 .button-block .single_add_to_cart_button {
    font-size: 18px;
    line-height: 26px;
    padding: 16px 22px;
  }
}
.wrapper-blue-and-white-pdp-v2 .th-products__item {
  border-color: #e1e1e9;
  background: #ffffff;
  border-radius: 8px;
  overflow: visible;
  padding-right: 17px;
  padding-bottom: 17px;
  transition: border-color 0.2s, background 0.2s;
}
.wrapper-blue-and-white-pdp-v2 .th-products__item > .radio {
  border-color: rgba(3, 11, 46, 0.35);
}
.wrapper-blue-and-white-pdp-v2 .th-products__item:hover:not(.active) {
  border-color: rgba(3, 11, 46, 0.35);
  background: #ffffff;
}
.wrapper-blue-and-white-pdp-v2 .th-products__item.active {
  border-color: #0808f8;
  background: #ffffff;
}
.wrapper-blue-and-white-pdp-v2 .th-products__item.active > .radio {
  border-color: #0808f8;
}
.wrapper-blue-and-white-pdp-v2 .th-products__item.active > .radio span {
  background: #0808f8;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2),
.wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 28px;
  padding-right: 17px;
}
.wrapper-blue-and-white-pdp-v2 .th-products__unit,
.wrapper-blue-and-white-pdp-v2 .th-products__name {
  color: #030b2e !important;
}
.wrapper-blue-and-white-pdp-v2 .th-products__price {
  color: #030b2e !important;
}
.wrapper-blue-and-white-pdp-v2 .th-products__price strong,
.wrapper-blue-and-white-pdp-v2 .th-products__price .price-num {
  color: #030b2e !important;
}
.wrapper-blue-and-white-pdp-v2 .th-products__price .price-per-unit {
  color: rgba(3, 11, 46, 0.65) !important;
}
.wrapper-blue-and-white-pdp-v2 .th-products__total {
  color: rgba(3, 11, 46, 0.6) !important;
}
.wrapper-blue-and-white-pdp-v2 .th-products__save,
.wrapper-blue-and-white-pdp-v2 .th-products__you-save {
  color: #00b67a !important;
  font-size: 14px !important;
}
.wrapper-blue-and-white-pdp-v2 .th-products__old-total {
  color: rgba(3, 11, 46, 0.5) !important;
  text-decoration: line-through;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3.single-option .th-products {
  display: block;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3.single-option .th-products__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  cursor: default;
  width: 100%;
  min-height: unset;
  height: auto;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3.single-option .th-products__item .radio {
  display: none;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3.single-option .th-products__item .th-products__popular {
  position: absolute;
  top: -1px;
  right: -1px;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3.single-option .th-products__item .th-products__image {
  flex-shrink: 0;
  width: 90px;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3.single-option .th-products__item .th-products__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3.single-option .th-products__item .wrapper-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3.single-option .th-products__item .th-products__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3.single-option .th-products__item .th-products__name {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
}
@media (max-width: 500px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3.single-option .th-products__item .th-products__name {
    font-size: 14px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box-p3.single-option .th-products__item .th-products__content-2 {
  flex-shrink: 0;
  text-align: right;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto !important;
    gap: 8px;
    width: 100%;
    height: auto !important;
    align-items: stretch;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item {
    position: relative;
    min-width: 0 !important;
    min-height: 0 !important;
    width: auto !important;
    height: auto !important;
    padding: 6px !important;
    border-radius: 12px !important;
    border: 1px solid transparent !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 2px !important;
    align-self: stretch !important;
    overflow: visible !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item > .radio {
    position: relative;
    top: auto;
    left: auto;
    margin: 0;
    flex-shrink: 0;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item.active {
    border-color: #0808f8 !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:first-child {
    grid-column: 1;
    grid-row: 1/span 2;
    flex-direction: column !important;
    height: auto !important;
    min-height: 100% !important;
    align-self: stretch;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:first-child .th-products__image {
    width: 100%;
    flex: 1 1 auto;
    min-height: 120px;
    margin: 0 !important;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:first-child .th-products__image img {
    width: 100%;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 0;
    min-height: 0;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:first-child .wrapper-content {
    width: 100%;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    flex-shrink: 0;
    padding-left: 8px;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:first-child .th-products__unit {
    margin-top: 8px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:first-child .th-products__price strong {
    font-size: 20px !important;
    line-height: 26px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:first-child .th-products__price .price-num {
    font-size: 32px !important;
    line-height: 36px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    display: grid !important;
    grid-template-columns: 75px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 2px 6px !important;
    height: auto !important;
    min-height: 0 !important;
    align-self: stretch !important;
    align-items: center;
    padding: 6px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2) > .radio {
    grid-column: 1/-1;
    grid-row: 1;
    align-self: start;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2) .th-products__image {
    grid-column: 1;
    grid-row: 2;
    width: 100% !important;
    height: auto;
    min-height: 0;
    margin: 0 !important;
    align-self: center;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2) .th-products__image img {
    width: 100%;
    height: auto;
    max-width: none !important;
    max-height: none !important;
    min-width: 0;
    min-height: 0;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2) .wrapper-content {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    align-self: center;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2) .th-products__price strong {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2) .th-products__price .price-num {
    font-size: 24px !important;
    line-height: 28px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2) .th-products__price {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2) .th-products__save {
    margin-top: 0 !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2) .th-products__total {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(2) .th-products__price .price-per-unit {
    margin-top: 0 !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    display: grid !important;
    grid-template-columns: 75px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 2px 6px !important;
    height: auto !important;
    min-height: 0 !important;
    align-self: stretch !important;
    align-items: center;
    padding: 6px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) > .radio {
    grid-column: 1/-1;
    grid-row: 1;
    align-self: start;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) .th-products__image {
    grid-column: 1;
    grid-row: 2;
    width: 100% !important;
    height: auto;
    min-height: 0;
    margin: 0 !important;
    align-self: center;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) .th-products__image img {
    width: 100%;
    height: auto;
    max-width: none !important;
    max-height: none !important;
    min-width: 0;
    min-height: 0;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) .wrapper-content {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    align-self: center;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) .th-products__price strong {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) .th-products__price .price-num {
    font-size: 24px !important;
    line-height: 28px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) .th-products__price {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) .th-products__save {
    margin-top: 0 !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) .th-products__total {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__item:nth-child(3) .th-products__price .price-per-unit {
    margin-top: 0 !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__content,
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3:not(.single-option) .th-products__content-2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3 .th-products__unit,
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3 .th-products__save,
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3 .th-products__total {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box-p3 .th-products__price .price-per-unit {
    font-size: 14px !important;
    line-height: 18px !important;
  }
}

.wrapper-blue-and-white-pdp-v2 .inform-block,
.wrapper-blue-and-white-pdp-v2 .baw-order-by-label {
  border: 1px solid rgba(0, 182, 122, 0.28);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(0, 182, 122, 0.07);
  color: rgb(0, 182, 122);
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 16px;
}
.wrapper-blue-and-white-pdp-v2 .inform-block svg,
.wrapper-blue-and-white-pdp-v2 .baw-order-by-label svg {
  flex-shrink: 0;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .inform-block,
  .wrapper-blue-and-white-pdp-v2 .baw-order-by-label {
    font-size: 13px;
    margin-bottom: 12px;
    padding: 8px 10px;
  }
  .wrapper-blue-and-white-pdp-v2 .inform-block svg,
  .wrapper-blue-and-white-pdp-v2 .baw-order-by-label svg {
    width: 12px;
    height: 12px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-more {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  color: #030b2e;
  border-radius: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
}
.wrapper-blue-and-white-pdp-v2 .buy-more__line {
  flex: 1;
  height: 1px;
  background: rgba(3, 11, 46, 0.18);
}
.wrapper-blue-and-white-pdp-v2 .buy-more__text {
  flex-shrink: 0;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-more {
    font-size: 22px;
    gap: 10px;
    margin-bottom: 12px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts {
  width: 100%;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .buy-box-gifts-form {
  width: 100%;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-block--only-three {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-block--only-three {
    gap: 8px;
    margin-bottom: 16px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  border-radius: 12px;
  border: 1px solid #e1e1e9;
  padding: 28px 10px 10px;
  gap: 0;
  min-height: 120px;
  cursor: pointer;
  background: #ffffff;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option {
    min-height: 0;
    padding: 24px 6px 8px;
    border-radius: 10px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option.active, .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option.selected-product {
  background: #ffffff;
  border-color: #0808f8;
  box-shadow: 0 0 0 1px #0808f8;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .special-offer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(0, 182, 122);
  color: #fff;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .special-offer {
    font-size: 10px;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 8px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .radio {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .radio .checked,
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .radio .unchecked {
  width: 22px;
  height: 22px;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .radio {
    top: 22px;
    left: 4px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .price-option__body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  flex: 1;
  min-height: 0;
  padding-left: 8px;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .price-option__body {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-left: 0;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .product-image {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 0;
  max-width: 52%;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .product-image img {
  width: auto;
  max-width: 100%;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .product-image {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .product-image img {
    height: 100px;
    max-height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .price-description {
  position: static;
  flex: 0 1 auto;
  min-width: 0;
  text-align: left;
  padding: 14px 0 0;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .price-description {
    width: 100%;
    padding-top: 0;
    text-align: center;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .price-description .quantity {
  color: #0808f8;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .price-description .quantity {
    font-size: 17px;
    padding-left: 10px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .price-description .price {
  font-weight: 700;
  color: #030b2e;
  margin-top: 2px;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .price-description .price .first {
  font-size: 16px;
  text-transform: none;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .price-description .price .first {
    font-size: 14px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .price-description .price .second {
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .price-option .price-description .price .second {
    font-size: 11px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 8px;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-title {
  margin: 0 0 12px;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 16px;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-title .first {
  color: #dc0000;
  text-transform: uppercase;
  font-weight: 700;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-title .second {
  font-weight: 600;
  color: #030b2e;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-title {
    font-size: 16px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks {
    gap: 8px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image {
  border-radius: 12px;
  border: 1px solid rgba(8, 8, 248, 0.28);
  position: relative;
  width: 100%;
  height: 130px;
  min-height: 130px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 8px 12px;
  box-sizing: border-box;
  background: #ffffff;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image {
    height: 95px;
    min-height: 95px;
    padding-top: 18px;
    border-radius: 10px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .active-image {
  width: 105px;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .active-image {
    width: 80px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .block-title {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #0808f8;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: -0.11px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 5px;
  white-space: nowrap;
  z-index: 1;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .block-title span {
  text-decoration: line-through;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .block-title {
    font-size: 9px;
    padding: 1px 6px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .active-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .active-overlay .image {
  max-width: 105px;
  max-height: 105px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .active-overlay .image {
    max-width: 80px;
    max-height: 80px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .inactive-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(3, 11, 46, 0.55);
  border-radius: 4px;
  text-align: center;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .inactive-overlay img {
  width: 31px;
  height: 31px;
  -o-object-fit: contain;
     object-fit: contain;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .inactive-overlay p {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin: 5px 0 0;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-image .inactive-overlay p {
    font-size: 10px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-subtitle {
  color: #030b2e;
  font-weight: 700;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  line-height: 1.25;
  flex: 1;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .sale-block-wrapper .sale-info-blocks .block .block-subtitle {
    font-size: 12px;
    margin-top: 8px;
    min-height: 2.4em;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .green-bottom-block {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-top: 16px;
  background: rgba(0, 182, 122, 0.07);
  border-radius: 8px;
  border: 1px solid rgba(0, 182, 122, 0.28);
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .green-bottom-block::before {
  content: "";
  position: absolute;
  top: auto;
  height: 24px;
  bottom: auto;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(0, 182, 122, 0.35);
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .green-bottom-block {
    padding: 12px 14px;
    margin-top: 12px;
    border-radius: 6px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .green-bottom-block .first {
  color: rgb(0, 182, 122);
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  visibility: visible;
  text-transform: uppercase;
  justify-self: start;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .green-bottom-block .first {
    font-size: 13px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .green-bottom-block .second {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 700;
  font-size: 16px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-transform: uppercase;
  color: rgb(0, 182, 122);
  white-space: nowrap;
  justify-self: end;
  text-align: right;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .green-bottom-block .second {
    font-size: 13px;
  }
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .button-block .single_add_to_cart_button {
  width: 100%;
  margin: 16px 0 0;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 16px 22px;
  height: auto;
  border: 0;
  background: #0038b1 !important;
  background-color: #0038b1 !important;
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(0, 14, 40, 0.1);
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .button-block .single_add_to_cart_button:hover {
  background: #050446 !important;
  background-color: #050446 !important;
  color: #fff !important;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .button-block .single_add_to_cart_button:disabled, .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .button-block .single_add_to_cart_button[disabled] {
  background: #cccccc !important;
  background-color: #cccccc !important;
  color: #666666 !important;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.7;
  pointer-events: none;
}
.wrapper-blue-and-white-pdp-v2 .buy-box--gifts .button-block .single_add_to_cart_button:disabled:hover, .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .button-block .single_add_to_cart_button[disabled]:hover {
  background: #cccccc !important;
  background-color: #cccccc !important;
  color: #666666 !important;
}
@media (max-width: 950px) {
  .wrapper-blue-and-white-pdp-v2 .buy-box--gifts .button-block .single_add_to_cart_button {
    font-size: 18px;
    line-height: 26px;
    padding: 16px 22px;
  }
}

.journey-section {
  background: #030b2e;
  color: #fff;
}

.journey-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px;
  display: grid;
  grid-template-columns: minmax(0, 364px) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 32px 96px;
  align-items: start;
}
@media (max-width: 950px) {
  .journey-inner {
    padding: 48px 16px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
  }
}

.journey-title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
.journey-title span {
  display: block;
}
@media (max-width: 950px) {
  .journey-title {
    grid-row: 1;
    font-size: 36px;
    line-height: 32px;
  }
}

.journey-story {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  font-size: 18px;
  font-weight: 350;
  line-height: 24px;
  color: #fff;
}
@media (max-width: 950px) {
  .journey-story {
    grid-row: 3;
    align-self: auto;
  }
}
.journey-story p {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 350;
  line-height: 24px;
  color: #fff;
}
.journey-story p:last-child {
  margin-bottom: 0;
}
.journey-story strong,
.journey-story b {
  color: #b2b2fd;
  font-weight: 600;
}

.journey-visual {
  grid-column: 2;
  grid-row: 1/span 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}
@media (max-width: 950px) {
  .journey-visual {
    grid-column: 1;
    grid-row: 2;
  }
}

.journey-days {
  display: flex;
  align-items: center;
  position: relative;
}
.journey-days__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #353c58;
  transform: translateY(-50%);
  pointer-events: none;
}
.journey-days__wrap {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.journey-days__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 1px solid #353c58;
  border-radius: 100px;
  background: rgba(3, 11, 46, 0.85);
  backdrop-filter: blur(6px);
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 950px) {
  .journey-days__tag {
    padding: 8px 12px;
    font-size: 18px;
    font-weight: 450;
    line-height: 24px;
    text-transform: uppercase;
  }
}

.journey-images {
  display: flex;
  gap: 12px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 950px) {
  .journey-images {
    gap: 4px;
  }
}
.journey-images__item {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
}
.journey-images__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
@media (max-width: 950px) {
  .journey-images__item {
    height: 246px;
  }
  .journey-images__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.baw-accordion-section {
  background: #f0f0f0;
}

.baw-accordion {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  box-sizing: border-box;
}
@media (max-width: 950px) {
  .baw-accordion {
    flex-direction: column;
    gap: 32px;
    padding: 48px 16px;
  }
}

.baw-accordion__media {
  flex: 1 1 0;
  min-width: 0;
}

.baw-accordion__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 950px) {
  .baw-accordion__image {
    aspect-ratio: 343/400;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.baw-accordion__list {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.baw-accordion__item {
  border-bottom: 1px solid #e1e1e9;
}
.baw-accordion__item:first-child {
  border-top: 1px solid #e1e1e9;
}
@media (max-width: 950px) {
  .baw-accordion__item {
    scroll-margin-top: 69px;
    border-bottom-color: #dadada;
  }
  .baw-accordion__item:first-child {
    border-top-color: #dadada;
  }
}
.baw-accordion__item.is-open .baw-accordion__trigger-icon {
  transform: rotate(180deg);
}

.baw-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 950px) {
  .baw-accordion__trigger {
    padding: 16px 0;
  }
}

.baw-accordion__trigger-title {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 24px;
  font-weight: 450;
  line-height: 30px;
  color: #030b2e;
}
@media (max-width: 950px) {
  .baw-accordion__trigger-title {
    font-size: 18px;
    line-height: 24px;
  }
}

.baw-accordion__trigger-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  background: url(../images/icons/angle-down.svg) no-repeat center/14px 8px;
}
.baw-accordion__trigger-icon img {
  display: none;
}

.baw-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  min-height: 0;
  transition: grid-template-rows 0.35s ease;
}
.baw-accordion__item.is-open .baw-accordion__panel {
  grid-template-rows: 1fr;
}

.baw-accordion__panel-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: rgba(3, 11, 46, 0.75);
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 16px;
  font-weight: 350;
  line-height: 22px;
}
.baw-accordion__item.is-open .baw-accordion__panel-inner {
  opacity: 1;
  padding-bottom: 24px;
}
.baw-accordion__panel-inner .faq-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.baw-accordion__panel-inner .faq-block:not(:last-child) {
  margin-bottom: 16px;
}
.baw-accordion__panel-inner .faq-block:last-child {
  margin-bottom: 0;
}
.baw-accordion__panel-inner .faq-block .faq-question,
.baw-accordion__panel-inner h3.faq-question {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 450;
  line-height: 24px;
  color: #030b2e;
}
.baw-accordion__panel-inner .faq-block .faq-answer,
.baw-accordion__panel-inner p.faq-answer {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 350;
  line-height: 24px;
  color: #636776;
}
.baw-accordion__panel-inner h3.faq-question:not(:first-child) {
  margin-top: 16px;
}
.baw-accordion__panel-inner .faq-block h3.faq-question {
  margin-top: 0;
}
.baw-accordion__panel-inner p.faq-answer:not(:last-child) {
  margin-bottom: 16px;
}
.baw-accordion__panel-inner .faq-block p.faq-answer {
  margin-bottom: 0;
}
.baw-accordion__panel-inner p:has(> strong:only-child),
.baw-accordion__panel-inner p:has(> b:only-child) {
  margin: 0 0 8px;
}
.baw-accordion__panel-inner p:has(> strong:only-child):not(:first-child),
.baw-accordion__panel-inner p:has(> b:only-child):not(:first-child) {
  margin-top: 16px;
}
.baw-accordion__panel-inner p:has(> strong:only-child) strong,
.baw-accordion__panel-inner p:has(> strong:only-child) b,
.baw-accordion__panel-inner p:has(> b:only-child) strong,
.baw-accordion__panel-inner p:has(> b:only-child) b {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 450;
  line-height: 24px;
  color: #030b2e;
}
.baw-accordion__panel-inner p {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 350;
  line-height: 22px;
  color: rgba(3, 11, 46, 0.75);
}
.baw-accordion__panel-inner p:last-child {
  margin-bottom: 0;
}
.baw-accordion__panel-inner ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 950px) {
  .baw-accordion__panel-inner ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
  }
}
.baw-accordion__panel-inner ul li {
  position: relative;
  padding-left: 22px;
  margin: 0;
  font-size: 16px;
  font-weight: 350;
  line-height: 22px;
  color: rgba(3, 11, 46, 0.75);
  background: url(../images/icons/check.svg) no-repeat left top 4px;
}
.baw-accordion__panel-inner table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e1e1e9;
  margin: 0;
  background: #ffffff;
}
.baw-accordion__panel-inner table thead th {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #030b2e;
  border-bottom: 1px solid #e1e1e9;
  padding: 15px;
  text-align: left;
  vertical-align: top;
}
.baw-accordion__panel-inner table thead th:nth-child(2) {
  background: #f5f5ff;
}
.baw-accordion__panel-inner table tbody tr td {
  border-bottom: 1px dashed #e1e1e9;
  padding: 15px;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: rgba(3, 11, 46, 0.75);
  vertical-align: middle;
}
.baw-accordion__panel-inner table tbody tr td:nth-child(2) {
  background: #f5f5ff;
}
.baw-accordion__panel-inner table tbody tr:last-of-type td {
  border-bottom: none;
}
.baw-accordion__panel-inner table:not(:has(thead)) tbody tr:first-child td {
  font-weight: 700;
  color: #030b2e;
  border-bottom: 1px solid #e1e1e9;
}
.baw-accordion__panel-inner table:not(:has(thead)) tbody tr:first-child td:nth-child(2) {
  background: #f5f5ff;
}
.baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(2), .baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(3), .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(2), .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(3) {
  position: relative;
  padding-left: 41px;
}
.baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(2)::before, .baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(3)::before, .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(2)::before, .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(3)::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: no-repeat center/contain;
}
.baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(2) img, .baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(3) img, .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(2) img, .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(3) img {
  display: none;
}
.baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(2)::before, .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(2)::before {
  background-image: url(../images/icons/check.svg);
}
.baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(3)::before, .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(3)::before {
  background-image: url(../images/icons/red-x.svg);
}
@media (max-width: 950px) {
  .baw-accordion__panel-inner .faq-block {
    padding: 16px;
  }
  .baw-accordion__panel-inner p:has(> strong:only-child):not(:first-child),
  .baw-accordion__panel-inner p:has(> b:only-child):not(:first-child) {
    margin-top: 16px;
  }
  .baw-accordion__panel-inner table thead th,
  .baw-accordion__panel-inner table tbody tr td {
    padding: 8px;
    font-size: 14px;
    line-height: 20px;
  }
  .baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(2), .baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(3), .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(2), .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(3) {
    padding: 8px;
    padding-left: 32px;
  }
  .baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(2)::before, .baw-accordion__panel-inner table:has(thead) tbody tr td:nth-child(3)::before, .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(2)::before, .baw-accordion__panel-inner table:not(:has(thead)) tbody tr:not(:first-child) td:nth-child(3)::before {
    left: 8px;
    width: 14px;
    height: 14px;
  }
}

.baw-reviews-pagination {
  position: relative !important;
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 12px;
  margin-top: 0;
  width: 100%;
}
.baw-reviews-pagination.swiper-pagination-bullets {
  bottom: auto;
  left: auto;
  transform: none;
}
.baw-reviews-pagination .swiper-pagination-bullet {
  flex: 1 1 0;
  width: auto;
  height: 2px;
  margin: 0;
  border-radius: 0;
  background: #e1e1e9;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.baw-reviews-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--baw-review-progress, 0%);
  background: #030b2e;
}
.baw-reviews-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #e1e1e9;
}
.baw-reviews-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: var(--baw-review-progress, 0%);
}

.baw-men-reviews-section {
  background: #f0f0f0;
  padding: 0;
}

.baw-men-reviews__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px;
  box-sizing: border-box;
}
@media (max-width: 950px) {
  .baw-men-reviews__inner {
    padding: 48px 16px;
  }
}

.baw-men-reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
@media (max-width: 950px) {
  .baw-men-reviews__head {
    margin-bottom: 32px;
  }
}

.baw-men-reviews__title {
  margin: 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 56px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #030b2e;
}
@media (max-width: 950px) {
  .baw-men-reviews__title {
    font-size: 38px;
    line-height: 32px;
  }
}

.baw-men-reviews__nav {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}
@media (max-width: 950px) {
  .baw-men-reviews__nav {
    display: none;
  }
}

.baw-men-reviews__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  position: relative;
  z-index: 9;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #030b2e;
  box-shadow: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.baw-men-reviews__nav-btn.swiper-button-disabled, .baw-men-reviews__nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.baw-men-reviews__carousel {
  position: relative;
}

.baw-men-reviews-swiper {
  overflow: hidden;
}
.baw-men-reviews-swiper .swiper-slide {
  height: auto;
}

.baw-men-review {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.baw-men-review__media {
  position: relative;
  width: 100%;
  aspect-ratio: 343/430;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}
.baw-men-review__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  border-radius: inherit;
}
.baw-men-review__media:not(.has-video)::after {
  display: none;
}
.baw-men-review__media img,
.baw-men-review__media video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.baw-men-review__vol-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 60px;
  height: 60px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.baw-men-review__vol-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.baw-men-review__vol-btn .unmute,
.baw-men-review__vol-btn .mute {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.baw-men-review__vol-btn .unmute {
  display: block;
}
.baw-men-review__vol-btn .mute {
  display: none;
}
.baw-men-review__vol-btn.is-unmuted .unmute {
  display: none;
}
.baw-men-review__vol-btn.is-unmuted .mute {
  display: block;
}

.baw-men-review__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.baw-men-review__quote {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 350;
  line-height: 28px;
  color: #030b2e;
}

.baw-men-review__customer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.baw-men-review__name {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 450;
  line-height: 28px;
  color: #030b2e;
}

.baw-men-review__details {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 350;
  line-height: 22px;
  color: #636776;
}

.baw-men-reviews-pagination {
  margin-top: 24px;
}
.baw-men-reviews-pagination .swiper-pagination-bullet {
  height: 4px;
}
@media (max-width: 950px) {
  .baw-men-reviews-pagination {
    display: none;
  }
}

.baw-men-reviews__mobile-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 950px) {
  .baw-men-reviews__mobile-nav {
    display: flex;
  }
}

.baw-men-reviews__mobile-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.baw-men-reviews__mobile-nav-btn img {
  display: block;
  width: 20px;
  height: 20px;
}
.baw-men-reviews__mobile-nav-btn.swiper-button-disabled, .baw-men-reviews__mobile-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.baw-men-reviews__mobile-nav-count {
  font-family: "Roboto", sans-serif;
  font-weight: 450;
  font-size: 16px;
  line-height: 22px;
  color: #030b2e;
  min-width: 2.5em;
  text-align: center;
}

.baw-science-section {
  position: relative;
  overflow: hidden;
  background: #020a1d;
  color: #ffffff;
  min-height: 640px;
  padding: 0 16px 48px;
}
@media (min-width: 951px) {
  .baw-science-section {
    min-height: 840px;
    padding: 100px 70px;
    display: flex;
    align-items: flex-end;
  }
}

.baw-science__media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 380px;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 951px) {
  .baw-science__media {
    inset: 0;
    height: auto;
  }
}
.baw-science__media img {
  display: block;
  position: absolute;
  top: 0;
  left: -44.08%;
  width: 188.16%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 15%;
     object-position: center 15%;
}
@media (min-width: 951px) {
  .baw-science__media img {
    top: -5.3%;
    left: -3.96%;
    width: 103.95%;
    height: 100.24%;
    -o-object-position: center center;
       object-position: center center;
  }
}

.baw-science__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 380px;
  pointer-events: none;
  background: linear-gradient(180deg, #f0f0f0 2.27%, rgba(240, 240, 240, 0) 18%), linear-gradient(180deg, rgba(2, 10, 29, 0) 58%, rgba(2, 10, 29, 0.5) 82%, #020a1d 100%);
}
@media (min-width: 951px) {
  .baw-science__overlay {
    inset: 0;
    height: auto;
    background: linear-gradient(180deg, #f0f0f0 6.35%, rgba(240, 240, 240, 0) 22%), linear-gradient(194deg, rgba(2, 10, 29, 0) 38%, #020a1d 86%), linear-gradient(180deg, rgba(2, 10, 29, 0) 48%, rgba(2, 10, 29, 0.72) 72%, #020a1d 90%);
  }
}

.baw-science__inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 320px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 951px) {
  .baw-science__inner {
    width: 100%;
    padding-top: 0;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
}

.baw-science__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 951px) {
  .baw-science__intro {
    width: 380px;
    flex-shrink: 0;
    gap: 16px;
  }
}

.wrapper-blue-and-white-pdp-v2 .baw-science__title {
  margin: 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 32px;
  text-transform: uppercase;
  color: #ffffff;
}
@media (min-width: 951px) {
  .wrapper-blue-and-white-pdp-v2 .baw-science__title {
    font-size: 56px;
    line-height: 56px;
  }
}

.baw-science__text {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
@media (min-width: 951px) {
  .baw-science__text {
    font-size: 20px;
    line-height: 28px;
  }
}

.baw-science__card {
  width: 100%;
}
@media (min-width: 951px) {
  .baw-science__card {
    width: 380px;
    flex-shrink: 0;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(180deg, rgba(2, 10, 29, 0.72) 0%, rgba(2, 10, 29, 0.55) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}

.baw-science__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
@media (min-width: 951px) {
  .baw-science__steps {
    gap: 24px;
  }
}

.baw-science__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media (min-width: 951px) {
  .baw-science__step {
    gap: 20px;
  }
}
.baw-science__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  width: 2px;
  height: calc(100% - 56px + 16px);
  background: #353c58;
  pointer-events: none;
}
@media (min-width: 951px) {
  .baw-science__step:not(:last-child)::after {
    left: 33px;
    top: 68px;
    height: calc(100% - 68px + 24px);
    background: rgba(255, 255, 255, 0.15);
  }
}

.baw-science__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid #353c58;
  border-radius: 100px;
  background: transparent;
}
@media (min-width: 951px) {
  .baw-science__icon {
    width: 68px;
    height: 68px;
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
  }
}
.baw-science__icon img {
  display: block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 951px) {
  .baw-science__icon img {
    width: 32px;
    height: 32px;
  }
}

.baw-science__step-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.baw-science__step-title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
@media (min-width: 951px) {
  .baw-science__step-title {
    font-size: 20px;
    line-height: 28px;
  }
}

.baw-science__step-text {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #b1b3be;
}
@media (min-width: 951px) {
  .baw-science__step-text {
    font-size: 18px;
    line-height: 24px;
  }
}

.shortcode-section__inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.shortcode-section--stamped {
  scroll-margin-top: 69px;
  background: #030b2e;
  color: #fff;
  padding: 70px 16px;
}
@media (max-width: 950px) {
  .shortcode-section--stamped {
    padding: 48px 16px;
  }
}
.shortcode-section--stamped .stamped-main-widget,
.shortcode-section--stamped .stamped-main-widget .stamped-container {
  background: transparent;
  color: #fff;
}
.shortcode-section--stamped .stamped-main-widget div[data-widget-style*=standard] .summary-rating-count {
  color: #fff !important;
}
.shortcode-section--stamped .stamped-main-widget .stamped-summary-actions-clear,
.shortcode-section--stamped .stamped-main-widget .stamped-summary-actions-mobile-filter,
.shortcode-section--stamped .stamped-main-widget .stamped-summary-actions-newquestion,
.shortcode-section--stamped .stamped-main-widget .stamped-summary-actions-newreview,
.shortcode-section--stamped .stamped-main-widget .stamped-review-header .created,
.shortcode-section--stamped .stamped-main-widget .stamped-review-header-byline .created,
.shortcode-section--stamped .stamped-main-widget .stamped-pagination a,
.shortcode-section--stamped .stamped-main-widget .stamped-summary-ratings,
.shortcode-section--stamped .stamped-main-widget div[data-widget-style] .summary-rating:first-child .summary-rating-title:before,
.shortcode-section--stamped .stamped-main-widget div[data-widget-style] .summary-rating:nth-child(2) .summary-rating-title:before,
.shortcode-section--stamped .stamped-main-widget div[data-widget-style] .summary-rating:nth-child(3) .summary-rating-title:before,
.shortcode-section--stamped .stamped-main-widget div[data-widget-style] .summary-rating:nth-child(4) .summary-rating-title:before,
.shortcode-section--stamped .stamped-main-widget div[data-widget-style] .summary-rating:nth-child(5) .summary-rating-title:before,
.shortcode-section--stamped .stamped-main-widget .stamped-form-label,
.shortcode-section--stamped .stamped-main-widget .stamped-file-uploader-btn,
.shortcode-section--stamped .stamped-main-widget ul.stamped-tabs li,
.shortcode-section--stamped .stamped-main-widget .stamped-container[data-widget-show-product-variant=true] .stamped-review-product a,
.shortcode-section--stamped .stamped-main-widget .stamped-container[data-widget-show-product-variant=true] .stamped-review-variant a,
.shortcode-section--stamped .stamped-main-widget .stamped-container ul.stamped-tabs li {
  color: #fff;
}
.shortcode-section--stamped .stamped-main-widget .stamped-review-header .review-location {
  color: #efefef;
}
.shortcode-section--stamped .stamped-main-widget li#tab-reviews[data-count]:after {
  color: #14161f;
}
.shortcode-section--stamped .stamped-reviews .stamped-review {
  border-top-color: #748dc5 !important;
}

.baw-intro-section {
  background: #ffffff;
  padding: 64px 16px;
}
@media (min-width: 951px) {
  .baw-intro-section {
    padding: 80px 70px;
  }
}

.baw-intro__inner {
  max-width: 760px;
  margin: 0 auto;
}

.wrapper-blue-and-white-pdp-v2 .baw-intro__title {
  margin: 0 0 24px;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.05;
  text-transform: none;
  color: #030b2e;
}
@media (min-width: 951px) {
  .wrapper-blue-and-white-pdp-v2 .baw-intro__title {
    margin-bottom: 32px;
    font-size: 56px;
    line-height: 56px;
  }
}

.baw-intro__content {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #030b2e;
}
@media (min-width: 951px) {
  .baw-intro__content {
    font-size: 18px;
    line-height: 28px;
  }
}
.baw-intro__content p {
  margin: 0 0 16px;
}
.baw-intro__content p:last-child {
  margin-bottom: 0;
}

.baw-copy-section {
  background: #ffffff;
  padding: 64px 16px;
}
@media (min-width: 951px) {
  .baw-copy-section {
    padding: 80px 70px;
  }
}

.baw-copy__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.wrapper-blue-and-white-pdp-v2 .baw-copy__title {
  margin: 0 0 16px;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.05;
  text-transform: none;
  color: #030b2e;
}
@media (min-width: 951px) {
  .wrapper-blue-and-white-pdp-v2 .baw-copy__title {
    margin-bottom: 24px;
    font-size: 56px;
    line-height: 56px;
  }
}

.baw-copy__content {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #030b2e;
}
@media (min-width: 951px) {
  .baw-copy__content {
    font-size: 18px;
    line-height: 28px;
  }
}
.baw-copy__content p {
  margin: 0 0 16px;
}
.baw-copy__content p:last-child {
  margin-bottom: 0;
}
.baw-copy__content a {
  color: #0808f8;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.baw-copy__content a:hover, .baw-copy__content a:focus-visible {
  color: #030b2e;
}

.baw-video-section {
  background: #ffffff;
  padding: 64px 16px;
}
@media (min-width: 951px) {
  .baw-video-section {
    padding: 80px 70px;
  }
}

.baw-video__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  .baw-video__inner {
    max-width: none;
  }
}

.wrapper-blue-and-white-pdp-v2 .baw-video__title {
  margin: 0 0 24px;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.05;
  text-transform: none;
  color: #030b2e;
  text-align: center;
}
@media (min-width: 951px) {
  .wrapper-blue-and-white-pdp-v2 .baw-video__title {
    margin-bottom: 32px;
    font-size: 56px;
    line-height: 56px;
  }
}

.baw-video__player {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  width: 100%;
}
.baw-video__player video {
  position: static;
  display: block;
  width: 100%;
  height: auto;
}
.baw-video__player.has-split .baw-video__media--mobile {
  display: none;
}
@media (max-width: 950px) {
  .baw-video__player.has-split .baw-video__media--desktop {
    display: none;
  }
  .baw-video__player.has-split .baw-video__media--mobile {
    display: block;
    width: 100%;
    height: auto;
  }
}
.baw-video__player.has-poster:not(.is-playing) video {
  display: none;
}
.baw-video__player.is-playing .baw-video__poster {
  display: none;
}

.baw-video__poster {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.baw-video__vol-btn {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 951px) {
  .baw-video__vol-btn {
    width: 60px;
    height: 60px;
    right: 20px;
    bottom: 20px;
  }
}
.baw-video__vol-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.baw-video__vol-btn .unmute,
.baw-video__vol-btn .mute {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 951px) {
  .baw-video__vol-btn .unmute,
  .baw-video__vol-btn .mute {
    width: 25px;
    height: 25px;
  }
}
.baw-video__vol-btn .unmute {
  display: block;
}
.baw-video__vol-btn .mute {
  display: none;
}
.baw-video__vol-btn.is-unmuted .unmute {
  display: none;
}
.baw-video__vol-btn.is-unmuted .mute {
  display: block;
}/*# sourceMappingURL=style.css.map */