@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&display=swap");
body.page-template-tmp-build-your-own-bundle {
  overflow-x: clip;
}

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

.wrapper-byob {
  background: #ffffff;
  font-family: "Raleway", sans-serif;
  color: #111111;
  overflow-x: clip;
}
.wrapper-byob h1,
.wrapper-byob h2,
.wrapper-byob h3,
.wrapper-byob h4,
.wrapper-byob h5,
.wrapper-byob h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
}

.byob-hero {
  padding: 48px 20px 32px;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  .byob-hero {
    padding: 32px 16px 24px;
  }
}

.byob-benefits-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  margin-bottom: 24px;
}
@media (max-width: 950px) {
  .byob-benefits-bar {
    gap: 8px 20px;
    margin-bottom: 18px;
  }
}

.byob-benefit {
  display: flex;
  align-items: center;
  gap: 7px;
}
.byob-benefit__icon {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.byob-benefit__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #666666;
  white-space: nowrap;
}

.byob-page-title {
  font-weight: 800;
  font-size: 60px;
  line-height: 68px;
  letter-spacing: 1.34px;
  color: #222a58;
  margin: 0 0 14px;
}
.byob-page-title em,
.byob-page-title i {
  font-style: normal;
  color: #0038b1;
}
.byob-page-title span {
  color: #0038b1;
}
@media (max-width: 950px) {
  .byob-page-title {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: normal;
  }
}

.byob-page-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  color: #050446;
  margin: 0;
}
@media (max-width: 950px) {
  .byob-page-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }
}

.byob-builder {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 80px;
}
@media (max-width: 950px) {
  .byob-builder {
    padding: 0 16px 180px;
  }
}

.byob-cat-nav {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 28px;
}

.byob-cat-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.byob-cat-nav__inner::-webkit-scrollbar {
  display: none;
}

.byob-cat-btn {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #666666;
  padding: 14px 20px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.byob-cat-btn:hover {
  color: #222a58;
}
.byob-cat-btn.active {
  color: #0038b1;
  font-weight: 700;
  border-bottom-color: #0038b1;
}

.byob-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.byob-preset-btn {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #222a58;
  padding: 7px 16px;
  border: 1px solid #d0d3e0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.byob-preset-btn:hover {
  border-color: #0038b1;
  color: #0038b1;
}
.byob-preset-btn.active {
  background: #0038b1;
  border-color: #0038b1;
  color: #fff;
}

.byob-main {
  display: flex;
  gap: 32px;
}
@media (max-width: 1370px) {
  .byob-main {
    gap: 24px;
  }
}
@media (max-width: 950px) {
  .byob-main {
    flex-direction: column;
  }
}

.byob-products-grid {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1370px) {
  .byob-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  .byob-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 950px) {
  .byob-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.byob-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.byob-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.byob-card[data-hidden] {
  display: none;
}
.byob-card__image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.byob-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 16px;
  display: block;
  transition: transform 0.3s;
}
@media (max-width: 950px) {
  .byob-card__image {
    aspect-ratio: 4/3;
  }
}
.byob-card:hover .byob-card__image img {
  transform: scale(1.04);
}
.byob-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 950px) {
  .byob-card__body {
    padding: 10px 10px 12px;
  }
}
.byob-card__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.byob-card__rating {
  font-size: 13px;
  font-weight: 600;
  color: #666666;
}
.byob-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #222a58;
  margin: 0 0 6px;
}
@media (max-width: 950px) {
  .byob-card__title {
    font-size: 14px;
    line-height: 20px;
  }
}
.byob-card__desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #666666;
  margin: 0 0 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 950px) {
  .byob-card__desc {
    font-size: 12px;
    line-height: 18px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.byob-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.byob-card__price-original {
  font-size: 14px;
  color: #666666;
  text-decoration: line-through;
}
.byob-card__price-current {
  font-size: 22px;
  font-weight: 800;
  color: #222a58;
}
@media (max-width: 950px) {
  .byob-card__price-current {
    font-size: 18px;
  }
}
.byob-card__actions {
  margin-top: auto;
}

.byob-stars {
  width: 80px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  background: url("../../../images/star-gray.svg") repeat-x;
  background-size: contain;
}
.byob-stars__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: url("../../../images/star-yellow.svg") repeat-x;
  background-size: contain;
}

@keyframes byob-spin {
  to {
    transform: rotate(360deg);
  }
}
.byob-atc-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px;
  background: #0038b1;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.15s;
}
.byob-atc-btn:hover {
  background: rgb(0, 39.8644067797, 126);
}
.byob-atc-btn.is-loading {
  color: transparent;
  pointer-events: none;
}
.byob-atc-btn.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  margin: -7.5px 0 0 -7.5px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: byob-spin 0.55s linear infinite;
}
.byob-atc-btn.is-disabled {
  background: #b0b5c8;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 950px) {
  .byob-atc-btn {
    padding: 10px 8px;
    font-size: 12px;
  }
}

.byob-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.byob-stepper[hidden] {
  display: none;
}
.byob-stepper__btn {
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #222a58;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}
.byob-stepper__btn:hover {
  background: #f0f0f0;
}
.byob-stepper__btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.byob-stepper__qty {
  font-size: 15px;
  font-weight: 700;
  color: #222a58;
  flex: 1;
  text-align: center;
}

.byob-sidebar {
  width: 350px;
  flex-shrink: 0;
}
@media (max-width: 1370px) {
  .byob-sidebar {
    width: 320px;
  }
}
@media (max-width: 950px) {
  .byob-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  }
}
.byob-sidebar__inner {
  position: sticky;
  top: 100px;
  background: #f6f7fb;
  border: 1px solid #e0e3ee;
  border-radius: 10px;
  padding: 24px 20px 20px;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 950px) {
  .byob-sidebar__inner {
    position: static;
    background: #f6f6f9;
    border-radius: 0;
    border: none;
    max-height: none;
    padding: 8px 16px 8px;
    overflow: visible;
  }
}
.byob-sidebar__items-section {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 950px) {
  .byob-sidebar__items-section {
    flex: unset;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
}
@media (max-width: 950px) {
  .byob-sidebar.is-open .byob-sidebar__items-section {
    max-height: 50vh;
    overflow-y: auto;
  }
}
@media (max-width: 950px) {
  .byob-sidebar__total {
    display: none !important;
  }
}
.byob-sidebar__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #222a58;
  margin: 0 0 6px;
  flex-shrink: 0;
}
@media (max-width: 950px) {
  .byob-sidebar__title {
    display: none;
  }
}
.byob-sidebar__mobile-bar {
  display: none;
}
@media (max-width: 950px) {
  .byob-sidebar__mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    color: #222a58;
    padding: 8px 16px;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #e0e3ee;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
@media (max-width: 950px) {
  .byob-sidebar:not(.has-items) .byob-sidebar__mobile-bar {
    display: none;
  }
}
.byob-sidebar__mobile-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.byob-sidebar__mobile-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #222a58;
  white-space: nowrap;
}
.byob-sidebar__mobile-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.byob-sidebar__mobile-orig {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  text-decoration: line-through;
}
.byob-sidebar__mobile-curr {
  font-size: 14px;
  font-weight: 800;
  color: #222a58;
}
.byob-sidebar__mobile-chevron {
  flex-shrink: 0;
  color: #222a58;
  transition: transform 0.3s ease;
}
.byob-sidebar.is-open .byob-sidebar__mobile-chevron {
  transform: rotate(180deg);
}
.byob-sidebar__hint {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #666666;
  margin: 0 0 16px;
  flex-shrink: 0;
}
@media (max-width: 950px) {
  .byob-sidebar__hint {
    display: none !important;
  }
}
.byob-sidebar__items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}
.byob-sidebar__items:not(:empty) {
  margin-top: 16px;
}
.byob-sidebar__items {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}
.byob-sidebar__items::-webkit-scrollbar {
  width: 4px;
}
.byob-sidebar__items::-webkit-scrollbar-track {
  background: transparent;
}
.byob-sidebar__items::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}
.byob-sidebar__total {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 0;
  border-top: 1px solid #e0e3ee;
  margin-top: 12px;
}
.byob-sidebar__total[hidden] {
  display: none;
}
.byob-sidebar__total-label {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: #222a58;
}
.byob-sidebar__total-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.byob-sidebar__total-original {
  font-size: 14px;
  color: #666666;
  text-decoration: line-through;
}
.byob-sidebar__total-current {
  font-size: 22px;
  font-weight: 800;
  color: #222a58;
}

.byob-tiers {
  flex-shrink: 0;
  display: flex;
  margin-bottom: 16px;
}
@media (max-width: 950px) {
  .byob-tiers {
    margin-bottom: 8px;
  }
}

.byob-tier {
  flex: 1;
  position: relative;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px 0 calc(12px + 12px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: #d9dce8;
  color: #222a58;
  transition: background 0.3s, color 0.3s;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.byob-tier:first-child {
  padding-left: 12px;
}
.byob-tier:nth-child(1) {
  z-index: 4;
}
.byob-tier:nth-child(2) {
  z-index: 3;
}
.byob-tier:nth-child(3) {
  z-index: 2;
}
.byob-tier:nth-child(4) {
  z-index: 1;
}
.byob-tier::before {
  content: "";
  position: absolute;
  right: calc(-12px - 1px);
  top: -1px;
  width: 0;
  height: 0;
  border-top: calc(26px / 2 + 1px) solid transparent;
  border-bottom: calc(26px / 2 + 1px) solid transparent;
  border-left: calc(12px + 1px) solid #ffffff;
  z-index: 1;
}
.byob-tier::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 0;
  width: 0;
  height: 0;
  border-top: calc(26px / 2) solid transparent;
  border-bottom: calc(26px / 2) solid transparent;
  border-left: 12px solid #d9dce8;
  z-index: 2;
  transition: border-left-color 0.3s;
}
.byob-tier.active {
  background: #0038b1;
  color: #fff;
}
.byob-tier.active::after {
  border-left-color: #0038b1;
}

.byob-add-placeholder {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e0e3ee;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
  margin-top: 8px;
}
.byob-add-placeholder__icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  opacity: 0.45;
}
.byob-add-placeholder__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.byob-add-placeholder__text strong {
  font-size: 14px;
  font-weight: 700;
  color: #222a58;
}
.byob-add-placeholder__cta {
  font-size: 13px;
  font-weight: 600;
  color: #0038b1;
  transition: color 0.2s;
}
.byob-add-placeholder__cta.is-max {
  color: #1a9e5c;
}

.byob-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
}
.byob-sidebar-item__img {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  border: 1px solid #e5e5e5;
  flex-shrink: 0;
}
.byob-sidebar-item__info {
  flex: 1;
  min-width: 0;
}
.byob-sidebar-item__name {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #222a58;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-bottom: 2px;
}
.byob-sidebar-item__price {
  font-size: 13px;
  color: #666666;
}
.byob-sidebar-item__price s {
  margin-right: 4px;
}
.byob-sidebar-item__price strong {
  color: #222a58;
  font-weight: 700;
}
.byob-sidebar-item__remove {
  color: #bbb;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px;
  transition: color 0.15s;
}
.byob-sidebar-item__remove:hover {
  color: #e00;
}

.byob-checkout-btn {
  flex-shrink: 0;
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 15px;
  background: #0038b1;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s;
}
.byob-checkout-btn[hidden] {
  display: none;
}
.byob-checkout-btn:disabled {
  background: #b0b5c8;
  cursor: not-allowed;
}
.byob-checkout-btn:not(:disabled):hover {
  background: rgb(0, 39.8644067797, 126);
}
.byob-checkout-btn.is-loading {
  color: transparent;
  pointer-events: none;
  position: relative;
}
.byob-checkout-btn.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 17px;
  margin: -8.5px 0 0 -8.5px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: byob-spin 0.55s linear infinite;
}
@media (max-width: 950px) {
  .byob-checkout-btn {
    padding: 10px;
    margin-top: 8px;
  }
}

.byob-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #222a58;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 9999;
}
.byob-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.byob-section {
  padding: 80px 20px;
}
@media (max-width: 950px) {
  .byob-section {
    padding: 50px 16px;
  }
}

.byob-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.byob-section-title {
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: #222a58;
  margin: 0 0 40px;
}
@media (max-width: 950px) {
  .byob-section-title {
    font-size: 34px;
    margin-bottom: 28px;
  }
}

.byob-section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #666666;
  margin: -24px 0 40px;
}
@media (max-width: 950px) {
  .byob-section-subtitle {
    font-size: 15px;
    margin-top: -16px;
    margin-bottom: 28px;
  }
}

.byob-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 950px) {
  .byob-reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.byob-review-card {
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.byob-review-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.byob-review-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.byob-review-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: #111111;
  padding: 16px 16px 8px;
  flex: 1;
  margin: 0;
}
.byob-review-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #666666;
  padding: 0 16px 16px;
  display: block;
}

.byob-million-men__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 950px) {
  .byob-million-men__inner {
    flex-direction: column;
    gap: 32px;
  }
}

.byob-million-men__text {
  flex: 1;
}

.byob-million-men__stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.byob-million-men__stat-number {
  font-weight: 900;
  font-size: 96px;
  line-height: 1;
  color: #0038b1;
}
@media (max-width: 950px) {
  .byob-million-men__stat-number {
    font-size: 64px;
  }
}

.byob-million-men__stat-label {
  font-size: 18px;
  font-weight: 500;
  color: #666666;
}

.byob-million-men__content {
  font-size: 17px;
  line-height: 1.7;
  color: #111111;
}
.byob-million-men__content p {
  margin-bottom: 12px;
}
.byob-million-men__content strong {
  font-weight: 700;
}

.byob-million-men__image {
  flex: 0 0 45%;
  max-width: 45%;
  border-radius: 12px;
  overflow: hidden;
}
.byob-million-men__image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 950px) {
  .byob-million-men__image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

.byob-difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
@media (max-width: 950px) {
  .byob-difference-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.byob-difference-item__images {
  display: flex;
  gap: 8px;
}
.byob-difference-item__images figure {
  flex: 1;
  margin: 0;
}
.byob-difference-item__images figure img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}
.byob-difference-item__images figure figcaption {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666666;
  text-align: center;
  margin-top: 6px;
}
.byob-difference-item__caption {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin: 12px 0 0;
}

.byob-press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 950px) {
  .byob-press-logos {
    gap: 24px;
    margin-bottom: 40px;
  }
}

.byob-press-logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: grayscale(1);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.byob-press-logo img:hover {
  opacity: 0.8;
}

.byob-press-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
@media (max-width: 950px) {
  .byob-press-quotes {
    grid-template-columns: 1fr;
  }
}

.byob-press-quote {
  background: #f8f8f8;
  border-left: 3px solid #0038b1;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 0;
}
.byob-press-quote p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: #111111;
  margin: 0 0 12px;
}
.byob-press-quote cite {
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.byob-testimonials {
  background: #ffffff;
}
.byob-testimonials .byob-section-title {
  text-align: left;
  margin-bottom: 48px;
}
.byob-testimonials .byob-section-title span {
  color: #0038b1;
}
@media (max-width: 950px) {
  .byob-testimonials .byob-section-title {
    margin-bottom: 32px;
  }
}
.byob-testimonials__swiper {
  overflow: hidden;
}
.byob-testimonials__swiper .swiper-wrapper {
  align-items: stretch;
}
.byob-testimonials__swiper .swiper-slide {
  height: auto;
}
.byob-testimonials__swiper .swiper-scrollbar {
  position: static;
  margin-top: 48px;
  background: #e0e0e0;
  height: 4px;
  border-radius: 2px;
}
.byob-testimonials__swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background: #0038b1;
  cursor: pointer;
  border-radius: 2px;
}

.byob-rev-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.byob-rev-card__media {
  position: relative;
  height: 475px;
  overflow: hidden;
  background: #ddd;
  flex-shrink: 0;
}
@media (max-width: 950px) {
  .byob-rev-card__media {
    height: 360px;
  }
}
.byob-rev-card__poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.byob-rev-card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  display: none;
}
.byob-rev-card.is-playing video {
  display: block;
}
.byob-rev-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.byob-rev-card__play:hover {
  background: rgba(0, 0, 0, 0.5);
}
.byob-rev-card__play .play-icon {
  display: block;
}
.byob-rev-card__play .pause-icon {
  display: none;
}
.byob-rev-card.is-playing .byob-rev-card__play .play-icon {
  display: none;
}
.byob-rev-card.is-playing .byob-rev-card__play .pause-icon {
  display: block;
}
.byob-rev-card__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background: #0038b1;
  z-index: 10;
  display: none;
  transition: none;
}
.byob-rev-card.is-playing .byob-rev-card__progress {
  display: block;
}
.byob-rev-card__badge {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px 8px 8px;
}
.byob-rev-card__badge img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.byob-rev-card__badge span {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #222a58;
  line-height: 1.3;
}
.byob-rev-card__text {
  background: #f6f6f9;
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 950px) {
  .byob-rev-card__text {
    padding: 16px;
  }
}
.byob-rev-card__quote {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #222a58;
  flex: 1;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 950px) {
  .byob-rev-card__quote {
    font-size: 15px;
  }
}
.byob-rev-card__name {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0038b1;
  margin: 0 0 4px;
}
.byob-rev-card__info {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0;
}

.byob-ba-section {
  background: #f6f6f9;
}
.byob-ba-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1370px) {
  .byob-ba-section__layout {
    gap: 40px;
  }
}
@media (max-width: 950px) {
  .byob-ba-section__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.byob-ba-section__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
}
.byob-ba-section__title {
  margin: 0;
}
.byob-ba-section__title span {
  color: #0038b1;
}
.byob-ba-section__disclaimer {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  color: #666666;
  margin: 0;
  vertical-align: middle;
}
.byob-ba-section__nav {
  display: flex;
  gap: 12px;
}
.byob-ba-section__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #d0d4e4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #222a58;
  transition: border-color 0.2s, background 0.2s;
}
.byob-ba-section__nav-btn:hover {
  border-color: #222a58;
  background: #222a58;
  color: #fff;
}
.byob-ba-section__nav-btn:hover svg path {
  stroke: #fff;
}
.byob-ba-section .byob-ba-info-swiper {
  overflow: hidden;
  width: 100%;
}
.byob-ba-section__right {
  min-width: 0;
}
@media (max-width: 950px) {
  .byob-ba-section__right {
    order: -1;
  }
}
.byob-ba-section .byob-ba-slides-swiper {
  overflow: hidden;
  border-radius: 12px;
  min-height: 300px;
  background: #e8e8ee;
}
.byob-ba-section .byob-ba-slides-swiper .swiper-slide {
  height: auto;
}
.byob-ba-section .byob-ba-slides-swiper .byob-ba {
  height: 100%;
}

.byob-ba-product {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.byob-ba-product__img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.byob-ba-product__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.byob-ba-product__name {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #222a58;
  margin: 0;
}
.byob-ba-product__desc {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
  margin: 0;
}
.byob-ba-product__btn {
  align-self: flex-start;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: #0038b1;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
}
.byob-ba-product__btn:hover {
  background: rgb(0, 43.0915254237, 136.2);
  color: #fff;
}

.byob-ba {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.byob-ba__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.byob-ba__labels {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.byob-ba__label {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 8px 20px;
  vertical-align: middle;
}

.byob-asi__title {
  margin-bottom: 54px;
}
@media (max-width: 950px) {
  .byob-asi__title {
    margin-bottom: 32px;
  }
}
.byob-asi__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
  min-width: 0;
}
@media (max-width: 1370px) {
  .byob-asi__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 950px) {
  .byob-asi__grid {
    grid-template-columns: 1fr;
  }
}
.byob-asi__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.byob-asi__center {
  overflow: hidden;
  border-radius: 8px;
  min-width: 0;
  max-height: 825px;
}
.byob-asi__center img {
  width: 100%;
  height: 100%;
  max-height: 825px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 950px) {
  .byob-asi__center {
    display: none;
  }
}
.byob-asi__card {
  flex: 1;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  min-height: 160px;
}
@media (max-width: 950px) {
  .byob-asi__card {
    height: 240px;
    min-height: unset;
    flex: unset;
  }
}
.byob-asi__card--light {
  background: #f6f6f9;
}
.byob-asi__card--blue {
  background: #0038b1;
}
.byob-asi__card--dark {
  background: #050446;
}
.byob-asi__logo {
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
  opacity: 0.7;
}
.byob-asi__card--blue .byob-asi__logo, .byob-asi__card--dark .byob-asi__logo {
  filter: brightness(0) invert(1);
  opacity: 0.6;
}
.byob-asi__quote {
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0;
  color: #222a58;
  margin: 0;
}
.byob-asi__card--blue .byob-asi__quote, .byob-asi__card--dark .byob-asi__quote {
  color: #fff;
}
@media (max-width: 1370px) {
  .byob-asi__quote {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 950px) {
  .byob-asi__quote {
    font-size: 22px;
    line-height: 32px;
  }
}

.byob-gallery-marquee {
  overflow: hidden;
  padding: 0 0 64px;
}
@media (max-width: 950px) {
  .byob-gallery-marquee {
    padding: 0 0 40px;
  }
}
.byob-gallery-marquee .byob-inner {
  padding-bottom: 32px;
}
.byob-gallery-marquee__sub {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
  color: #666666;
  margin: 0 0 8px;
  vertical-align: middle;
}
.byob-gallery-marquee__sub span {
  color: #0038b1;
}
.byob-gallery-marquee__title span {
  color: #0038b1;
}

.byob-marquee {
  overflow: hidden;
  margin-bottom: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.byob-marquee:hover .byob-marquee__track, .byob-marquee.is-paused .byob-marquee__track {
  animation-play-state: paused;
}
.byob-marquee__track {
  display: flex;
  gap: 8px;
  width: -moz-max-content;
  width: max-content;
  animation: byob-marquee-left 50s linear infinite;
}
[data-direction=right] .byob-marquee__track {
  animation-name: byob-marquee-right;
}
.byob-marquee__item {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  height: 420px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
@media (max-width: 950px) {
  .byob-marquee__item {
    width: 220px;
    height: 220px;
  }
}
.byob-marquee__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
.byob-marquee__item:hover img {
  filter: brightness(0.55);
}
.byob-marquee__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.byob-marquee__item:hover .byob-marquee__overlay {
  opacity: 1;
}
.byob-marquee__text1 {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  margin-bottom: 4px;
}
.byob-marquee__text2 {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

@keyframes byob-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes byob-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */