.manlife-category-products {
  --ml-category-accent: var(--color-primary, #c4a356);
  --ml-category-border: rgba(196, 163, 86, 0.38);
  --ml-category-panel: rgba(255, 255, 255, 0.05);
  --ml-category-text: #ffffff;
  --ml-category-muted: #cccccc;
  color: var(--ml-category-text);
}

.manlife-category-products * {
  box-sizing: border-box;
}

.manlife-category-products__header {
  max-width: 760px;
  margin: 0 0 42px;
}

.manlife-category-products--align-left .manlife-category-products__header {
  margin-right: auto;
  text-align: left;
}

.manlife-category-products--align-center .manlife-category-products__header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.manlife-category-products--align-right .manlife-category-products__header {
  margin-left: auto;
  text-align: right;
}

.manlife-category-products__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "Public Sans", "Roboto", sans-serif;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: none;
}

.manlife-category-products__title span,
.manlife-category-products__title em {
  display: block;
}

.manlife-category-products__title em {
  color: var(--ml-category-accent);
  font-family: "Bebas Neue", cursive;
  font-size: 0.92em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.manlife-category-products__intro {
  max-width: 660px;
  margin: 0;
  color: var(--ml-category-muted);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

.manlife-category-products--align-center .manlife-category-products__intro {
  margin-left: auto;
  margin-right: auto;
}

.manlife-category-products--align-right .manlife-category-products__intro {
  margin-left: auto;
}

.manlife-category-products__desktop {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.manlife-category-products__tabs-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.manlife-category-products__tabs-viewport {
  overflow: hidden;
}

.manlife-category-products__tabs-column--scrollable .manlife-category-products__tabs {
  transition: transform 0.3s ease;
}

.manlife-category-products__tabs-arrow {
  width: 100%;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--ml-category-accent);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.manlife-category-products__tabs-arrow span {
  width: 14px;
  height: 14px;
  display: block;
  position: relative;
}

.manlife-category-products__tabs-arrow--up span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-50%, -25%) rotate(-45deg);
}

.manlife-category-products__tabs-arrow--down span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-50%, -75%) rotate(45deg);
}

.manlife-category-products__tabs-arrow:hover:not(:disabled),
.manlife-category-products__tabs-arrow:focus-visible:not(:disabled) {
  border-color: var(--ml-category-accent);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.manlife-category-products__tabs-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.manlife-category-products__tabs {
  display: grid;
  gap: 14px;
}

.manlife-category-products__tab,
.manlife-category-products__accordion-button {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  text-align: left;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.manlife-category-products__tab:hover,
.manlife-category-products__tab:focus-visible,
.manlife-category-products__accordion-button:hover,
.manlife-category-products__accordion-button:focus-visible {
  border-color: var(--ml-category-accent);
  outline: none;
}

.manlife-category-products__tab.is-active,
.manlife-category-products__accordion.is-active .manlife-category-products__accordion-button {
  border-color: var(--ml-category-border);
  background: var(--ml-category-panel);
}

.manlife-category-products__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ml-category-accent);
}

.manlife-category-products__icon i {
  font-size: 28px;
  line-height: 1;
}

.manlife-category-products__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.manlife-category-products__tab-content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.manlife-category-products__tab-content strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.manlife-category-products__tab-content span {
  color: var(--ml-category-muted);
  font-size: 15px;
  line-height: 1.35;
}

.manlife-category-products__tab-indicator {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  justify-self: end;
  position: relative;
}

.manlife-category-products__tab-indicator::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--ml-category-accent);
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.manlife-category-products__tab.is-active .manlife-category-products__tab-indicator {
  border-color: var(--ml-category-accent);
}

.manlife-category-products__tab.is-active .manlife-category-products__tab-indicator::after {
  opacity: 1;
  transform: scale(1);
}

.manlife-category-products__panels {
  min-width: 0;
}

.manlife-category-products__panel[hidden] {
  display: none;
}

.manlife-category-products__panel {
  display: flex;
  flex-direction: column;
}

.manlife-category-products__grid {
  display: grid;
  gap: 24px;
}

.manlife-category-products__grid--desktop {
  grid-template-columns: repeat(var(--ml-products-columns, 2), minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
}

.manlife-category-products__grid--mobile {
  grid-template-columns: repeat(var(--ml-products-columns, 2), minmax(0, 1fr));
  gap: 14px;
}

.manlife-category-products__slider-outer {
  position: relative;
  padding: 0 54px;
}

.manlife-category-products__slider-outer--nav-hidden {
  padding: 0;
}

.manlife-category-products__slider-outer--nav-hidden .manlife-category-products__slider-arrows {
  display: none;
}

.manlife-category-products__slider-arrows {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.manlife-category-products__slider {
  overflow: hidden;
}

.manlife-category-products__slider .swiper-slide {
  height: auto;
}

.manlife-category-products__slider-arrow {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: auto;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--ml-category-accent);
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.manlife-category-products__slider-arrow--prev {
  left: 0;
}

.manlife-category-products__slider-arrow--next {
  right: 0;
}

.manlife-category-products__slider-arrow::after {
  content: none;
}

.manlife-category-products__slider-arrow span {
  width: 12px;
  height: 12px;
  display: block;
  position: relative;
}

.manlife-category-products__slider-arrow--prev span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-25%, -50%) rotate(45deg);
}

.manlife-category-products__slider-arrow--next span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translate(-75%, -50%) rotate(45deg);
}

.manlife-category-products__slider-arrow:hover,
.manlife-category-products__slider-arrow:focus-visible {
  border-color: var(--ml-category-accent);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  transform: translateY(-50%);
}

.manlife-category-products__slider-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.manlife-category-products__product {
  min-width: 0;
  height: 100%;
}

.manlife-category-products__product-image {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
  text-decoration: none;
}

.manlife-category-products__product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(196, 163, 86, 0.16), transparent 58%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.manlife-category-products__product-image:hover::before,
.manlife-category-products__product-image:focus-visible::before {
  opacity: 1;
}

.manlife-category-products__image {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.manlife-category-products__product-image:hover .manlife-category-products__image,
.manlife-category-products__product-image:focus-visible .manlife-category-products__image {
  transform: translateY(-4px) scale(1.03);
}

.manlife-category-products__product-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000000;
  color: var(--ml-category-accent);
  font-size: 18px;
  line-height: 1;
}

.manlife-category-products__product-arrow::before {
  margin: 0;
  width: auto;
  line-height: 1;
}

.manlife-category-products__product-title {
  margin: 18px 0 6px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
  text-align: center;
}

.manlife-category-products__product-title a {
  color: #ffffff;
  text-decoration: none;
}

.manlife-category-products__product-title a:hover,
.manlife-category-products__product-title a:focus-visible {
  color: var(--ml-category-accent);
}

.manlife-category-products__product-description {
  margin: 0;
  color: var(--ml-category-muted);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.manlife-category-products__category-btn {
  width: fit-content;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  align-self: flex-end;
  margin: 28px 0 0 auto;
  padding: 14px 18px 14px 22px;
  border: 1px solid var(--ml-category-border);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.manlife-category-products__category-btn-label {
  white-space: nowrap;
}

.manlife-category-products__category-btn-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000000;
  color: var(--ml-category-accent);
  font-size: 15px;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease;
}

.manlife-category-products__category-btn-icon::before {
  margin: 0;
  width: auto;
  line-height: 1;
}

.manlife-category-products__category-btn:hover,
.manlife-category-products__category-btn:focus-visible {
  border-color: var(--ml-category-accent);
  background: var(--ml-category-panel);
  color: #ffffff;
  outline: none;
  transform: translateY(-1px);
}

.manlife-category-products__category-btn:hover .manlife-category-products__category-btn-icon,
.manlife-category-products__category-btn:focus-visible .manlife-category-products__category-btn-icon {
  background: var(--ml-category-accent);
  color: #000000;
}

.manlife-category-products__mobile {
  display: none;
}

.manlife-category-products__mobile-categories {
  display: grid;
  gap: 12px;
  align-content: start;
}

.manlife-category-products__mobile-categories-viewport {
  overflow: hidden;
}

.manlife-category-products__mobile-categories-track {
  display: grid;
  gap: 12px;
}

.manlife-category-products__mobile-categories-track .manlife-category-products__accordion + .manlife-category-products__accordion {
  margin-top: 0;
}

.manlife-category-products__mobile-categories--scrollable .manlife-category-products__mobile-categories-track {
  transition: transform 0.3s ease;
}

.manlife-category-products__accordion {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.manlife-category-products__accordion + .manlife-category-products__accordion {
  margin-top: 12px;
}

.manlife-category-products__accordion-button {
  min-height: 90px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.manlife-category-products__accordion-symbol {
  width: 26px;
  height: 26px;
  justify-self: end;
  position: relative;
}

.manlife-category-products__accordion-symbol::before,
.manlife-category-products__accordion-symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: var(--ml-category-muted);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.manlife-category-products__accordion-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.manlife-category-products__accordion.is-active .manlife-category-products__accordion-symbol::before,
.manlife-category-products__accordion.is-active .manlife-category-products__accordion-symbol::after {
  background: var(--ml-category-accent);
}

.manlife-category-products__accordion.is-active .manlife-category-products__accordion-symbol::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.manlife-category-products__panel--mobile {
  padding: 24px 18px 24px;
}

@media (max-width: 1279px) {
  .manlife-category-products__desktop {
    grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
    gap: 28px;
  }

  .manlife-category-products__grid {
    gap: 18px;
  }

  .manlife-category-products__product-image {
    min-height: 190px;
    padding: 18px;
  }
}

@media (max-width: 767px) {
  .manlife-category-products__header {
    margin-bottom: 28px;
  }

  .manlife-category-products__title {
    margin-bottom: 16px;
    font-size: 33px;
    line-height: 1.06;
  }

  .manlife-category-products__title em {
    font-size: 0.9em;
  }

  .manlife-category-products__intro {
    font-size: 16px;
    line-height: 1.55;
  }

  .manlife-category-products__desktop {
    display: none;
  }

  .manlife-category-products__mobile {
    display: block;
  }

  .manlife-category-products__accordion.is-active {
    border-color: var(--ml-category-border);
    background: var(--ml-category-panel);
  }

  .manlife-category-products__accordion-button {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 14px;
    padding: 18px;
  }

  .manlife-category-products__icon {
    width: 34px;
    height: 34px;
  }

  .manlife-category-products__icon i {
    font-size: 23px;
  }

  .manlife-category-products__icon svg {
    width: 23px;
    height: 23px;
  }

  .manlife-category-products__tab-content strong {
    font-size: 17px;
  }

  .manlife-category-products__tab-content span {
    font-size: 14px;
  }

  .manlife-category-products__grid--desktop {
    gap: 14px;
  }

  .manlife-category-products__slider-outer {
    padding: 0;
  }

  .manlife-category-products__slider-arrows {
    position: static;
    inset: auto;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 0 0 12px;
    pointer-events: auto;
  }

  .manlife-category-products__slider-arrow {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .manlife-category-products__slider-arrow:hover,
  .manlife-category-products__slider-arrow:focus-visible {
    transform: none;
  }

  .manlife-category-products__product-image {
    min-height: 165px;
    padding: 5px;
    border-radius: 14px;
  }

  .manlife-category-products__image {
    max-height: 140px;
  }

  .manlife-category-products__product-arrow {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .manlife-category-products__product-title {
    margin-top: 12px;
    font-size: 14px;
  }

  .manlife-category-products__product-description {
    font-size: 13px;
    line-height: 1.3;
  }

  .manlife-category-products__category-btn {
    gap: 12px;
    margin: 24px 0 0 auto;
    padding: 12px 14px 12px 18px;
    font-size: 14px;
  }

  .manlife-category-products__category-btn-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .manlife-category-products *,
  .manlife-category-products *::before,
  .manlife-category-products *::after {
    transition: none !important;
  }

  .manlife-category-products__tabs-column--scrollable .manlife-category-products__tabs,
  .manlife-category-products__mobile-categories--scrollable .manlife-category-products__mobile-categories-track {
    transition: none !important;
  }
}
