.ctr-theme-magna-2 {
  --ctr-primary-font: 'Riforma LL', sans-serif;
  --ctr-secondary-font: 'Bull-5', sans-serif;
  --ctr-breakpoint-xs: 0px;
  --ctr-breakpoint-sm: 576px;
  --ctr-breakpoint-md: 768px;
  --ctr-breakpoint-lg: 992px;
  --ctr-breakpoint-xl: 1200px;
  --ctr-breakpoint-2xl: 1400px;
  --ctr-breakpoint-3xl: 1920px;
  --ctr-bg-color: transparent;
  --ctr-brand-color: #f1ff67;
  --ctr-text-color: #1e1e1e;
  --ctr-text-black-color: #000000;
  --ctr-text-white-color: #ffffff;
  --ctr-inactive-color: #303030;
  --ctr-inactive-bg-color: #dbdbdb;
}

.ctr-container,
#klaviyo-reviews-all .reviews_all_container {
  --ctr-container-padding: 2rem;
  --ctr-container-normal-width: 1200px;
  --ctr-container-wide-width: 1280px;
  --ctr-container-narrow-width: 1200px;
  --ctr-container-full-width: 100%;
  margin: 0 auto;
  max-width: var(--ctr-container-normal-width);
  padding: 0 var(--ctr-container-padding);
}

@media screen and (min-width: 1400px) {
  .ctr-container,
  #klaviyo-reviews-all .reviews_all_container {
    max-width: var(--ctr-container-wide-width);
  }
}

.ctr-container--narrow {
  max-width: var(--ctr-container-narrow-width);
}

@media screen and (min-width: 1400px) {
  .ctr-container--narrow {
    max-width: var(--ctr-container-narrow-width);
  }
}

.ctr-container--full-width {
  max-width: var(--ctr-container-full-width);
  padding: 0;
}

@media screen and (min-width: 1400px) {
  .ctr-container--full-width {
    max-width: var(--ctr-container-full-width);
  }
}

.ctr-button,
#klaviyo-reviews-all .kl_reviews__button {
  color: var(--ctr-text-white-color);
  background: var(--ctr-text-black-color);
  border: 1px solid var(--ctr-text-black-color);
  border-radius: 0.5rem;
  padding: 1.25rem 2rem;
  font-family: var(--ctr-primary-font);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.ctr-button:hover,
#klaviyo-reviews-all .kl_reviews__button:hover {
  background: var(--ctr-brand-color);
  border-color: var(--ctr-brand-color);
  color: var(--ctr-text-black-color);
}

.ctr-button--primary {
  color: var(--ctr-text-white-color);
  background: var(--ctr-text-black-color);
  border: 1px solid var(--ctr-text-black-color);
}

.ctr-button--primary:hover {
  background: var(--ctr-brand-color);
  border-color: var(--ctr-brand-color);
  color: var(--ctr-text-black-color);
}

.ctr-button--secondary {
  color: var(--ctr-text-black-color);
  background: var(--ctr-text-white-color);
  border: 1px solid var(--ctr-text-white-color);
}

.ctr-button--secondary:hover {
  background: var(--ctr-brand-color);
  border-color: var(--ctr-brand-color);
  color: var(--ctr-text-black-color);
}

.ctr-button--tertiary {
  color: var(--ctr-text-black-color);
  background: var(--ctr-text-white-color);
  border: 1px solid var(--ctr-text-black-color);
}

.ctr-button--tertiary:hover {
  background: var(--ctr-text-black-color);
  border-color: var(--ctr-text-black-color);
  color: var(--ctr-text-white-color);
}

.ctr-button--quaternary {
  color: var(--ctr-text-black-color);
  background: #d7d7d7;
  border: 1px solid #d7d7d7;
}

.ctr-button.m-disabled,
#klaviyo-reviews-all .m-disabled.kl_reviews__button {
  color: var(--ctr-inactive-color);
  background: var(--ctr-inactive-bg-color);
  border-color: var(--ctr-inactive-bg-color);
  cursor: not-allowed;
}

.ctr-button.m-disabled:hover,
#klaviyo-reviews-all .m-disabled.kl_reviews__button:hover {
  background: var(--ctr-inactive-bg-color);
  border-color: var(--ctr-inactive-bg-color);
  color: var(--ctr-inactive-color);
}

.ctr-person-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  border-radius: 1.2rem;
  overflow: hidden;
}

.ctr-person-card__image {
  border-radius: 1.2rem;
}

.ctr-person-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.swiper-slide-active .ctr-person-card__content {
  opacity: 1;
}

.ctr-person-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.ctr-person-card__text {
  font-family: var(--ctr-secondary-font);
  font-size: 1rem;
  line-height: 1.2;
  padding: 0 0 1rem;
}

.ctr-product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
  height: 100%;
}

.ctr-product-card__top {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  width: 100%;
  flex: 0 0 auto;
}

.ctr-product-card__image-container {
  position: relative;
  width: 100%;
  display: block;
  flex-grow: 0;
  overflow: hidden;
  border-radius: 1rem;
}

.ctr-product-card__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.25s ease;
}

.ctr-product-card__image--alternative {
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ctr-product-card__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
  background: #ff492f;
  color: #f0f0f0;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 700;
  z-index: 1;
}

.ctr-product-card__badge-text {
  transform: translateY(-0.01em);
}

.ctr-product-card__actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
  padding: 1.2rem 1.4rem;
  transition: all 0.25s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ctr-product-card__actions--mobile {
  position: relative;
  display: flex;
  opacity: 1;
  visibility: visible;
  padding: 0;
}

@media screen and (min-width: 992px) {
  .ctr-product-card__actions--mobile {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .ctr-product-card__actions {
    display: flex;
    background: rgba(0, 0, 0, 0.1);
  }
}

.ctr-product-card__action {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  pointer-events: auto;
}

.ctr-product-card__action--light {
  justify-content: center;
}

.ctr-product-card__actions-light {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ctr-product-card:hover .ctr-product-card__actions {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 992px) {
  .ctr-product-card--has-alternative:hover .ctr-product-card__image--alternative {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.ctr-product-card__bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex-grow: 1;
}

.ctr-product-card__title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.ctr-product-card__description {
  font-family: var(--ctr-secondary-font);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.3;
}

.ctr-rating {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.4rem;
}

.ctr-rating__text {
  font-family: var(--ctr-secondary-font);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .ctr-rating {
    font-size: 1.8rem;
  }
}

.ctr-product-subscription {
  font-family: var(--ctr-primary-font);
  margin-top: 2rem;
  display: block;
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription {
    margin-top: 1.5rem;
  }
}

.ctr-product-subscription__options {
  display: flex;
  flex-direction: column;
}

.ctr-product-subscription__option {
  display: flex;
  flex-direction: column;
  border: 1px solid #000;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-bottom: var(--ctr-product-box-items-gap-mobile);
  transition: all 0.25s ease-in-out;
  position: relative;
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription__option {
    margin-bottom: var(--ctr-product-box-items-gap-desktop);
  }
}

.ctr-product-subscription__option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  max-height: 60%;
  background: linear-gradient(to top, transparent 0%, #e8e8e8 90%, #e8e8e8 100%);
  border-radius: 0.5rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  overflow: hidden;
  display: none;
}

.ctr-product-subscription__option.m-less-emphasis:not(.m-active) {
  opacity: 50%;
  border-color: #b5b5b5;
}

.ctr-product-subscription__option.m-less-emphasis:not(.m-active) .ctr-product-subscription__option-name-icon {
  outline: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.5);
}

.ctr-product-subscription__option.m-active {
  cursor: default;
  border-width: 2px;
}

.ctr-product-subscription__option.m-active .ctr-product-subscription__option-header {
  background: var(--ctr-active-color);
}

.ctr-product-subscription__option.m-active .ctr-product-subscription__option-header::before {
  height: 2px;
}

.ctr-product-subscription__option.m-active::before {
  background: linear-gradient(to top, transparent 0%, #f1ff67 90%, #f1ff67 100%);
}

.ctr-product-subscription__option.m-active .ctr-product-subscription__option-name-icon {
  background: #000;
}

.ctr-product-subscription__option.m-hidden {
  max-height: 0;
  border: none;
  overflow: hidden;
  margin: 0;
}

.ctr-product-subscription__option:hover .ctr-product-subscription__option-name-icon {
  background: #000;
}

.ctr-product-subscription__option-header {
  padding: 0.2rem 0;
  position: relative;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background: var(--ctr-default-color);
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription__option-header {
    padding: 0.5rem 0;
  }
}

.ctr-product-subscription__option-header::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}

.ctr-product-subscription__option-title {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription__option-title {
    font-size: 1.8rem;
  }
}

.ctr-product-subscription__option-name {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription__option-name {
    gap: 1rem;
    font-size: 1.6rem;
  }
}

.ctr-product-subscription__option-name-icon {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background: rgba(0, 0, 0, 0);
  border-radius: 50%;
  outline: 1px solid #000;
  transition: all 0.25s ease-in-out;
  box-shadow: 0px 0px 0px 1px #000;
  flex-shrink: 0;
}

.ctr-product-subscription__option-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ctr-product-subscription__details-list {
  display: flex;
  flex-direction: column;
  padding: 1rem 0 1rem 2.5rem;
  gap: 0.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription__details-list {
    padding: 0.5rem 0 0 2.5rem;
  }
}

.ctr-product-subscription__details-item {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.1;
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription__details-item {
    font-size: 1.3rem;
  }
}

.ctr-product-subscription__option-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.8rem;
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription__option-content {
    padding: 1.2rem 1.3rem;
  }
}

.ctr-product-subscription__option-price {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription__option-price {
    font-size: 1.6rem;
    gap: 0.8rem;
  }
}

.ctr-product-subscription__option-price-old {
  text-decoration: line-through;
  color: #a9a9a9;
}

.ctr-product-subscription__option-price__container {
  position: relative;
  min-width: 73px;
}

.ctr-product-subscription__option-price-savings {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  background: #000;
  padding: 0.3rem 0.6rem;
  font-family: var(--ctr-secondary-font);
  border-radius: 0.5rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription__option-price-savings {
    font-size: 1.2rem;
  }
}

.ctr-product-subscription__variants {
  overflow: hidden;
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
}

.ctr-product-subscription__usp-callout {
  margin-bottom: 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription__usp-callout {
    margin-bottom: 1.5rem;
  }
}

.ctr-product-subscription__pre-order-banner {
  background-color: var(--black);
  color: var(--white);
  padding: 1rem 1.6rem;
  border-radius: 0.5rem;
  font-family: var(--ctr-secondary-font);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-subscription__pre-order-banner {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    padding: 1rem;
  }
}

@keyframes ctrExpandBanner {
  0% {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
  }

  100% {
    max-height: 7rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    opacity: 1;
  }
}

.ctr-sampler-option__checkbox {
  display: none;
}

.ctr-sampler-option__label {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  text-decoration: underline;
  opacity: 0.75;
  cursor: pointer;
  margin: 1rem 0 1.8rem;
  padding: 6px 0;
}

@media screen and (min-width: 992px) {
  .ctr-sampler-option__label {
    font-size: 1.6rem;
    padding: 0;
    margin: 1rem 0 1.8rem;
  }
}

.ctr-sampler-option__label.m-hidden {
  display: none;
}

.ctr-bundle-button {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  text-decoration: underline;
  opacity: 0.75;
  cursor: pointer;
  margin: 1rem auto 1.8rem;
  padding: 6px 0;
}

@media screen and (min-width: 992px) {
  .ctr-bundle-button {
    font-size: 1.6rem;
    padding: 0;
    margin: 1rem auto 1.8rem;
  }
}

.ctr-preorder-banner {
  display: block;
  transition: max-height 300ms ease-in-out;
  width: 100%;
  overflow: hidden;
  max-height: 500px;
}

.ctr-preorder-banner.m-hidden {
  max-height: 0;
}

.ctr-preorder-banner__container {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  width: 100%;
  background: var(--grey-1);
  color: var(--black);
  margin-bottom: 1.2rem;
  border-radius: 0.5rem;
}

.ctr-preorder-banner__title {
  font-weight: 700;
  font-size: 1.2rem;
}

@media screen and (min-width: 992px) {
  .ctr-preorder-banner__title {
    font-size: 1.6rem;
  }
}

.ctr-preorder-banner__list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ctr-preorder-banner__progress-bar-wrapper.m-hidden {
  max-height: 0;
  border: none;
  overflow: hidden;
  margin: 0;
}

.ctr-preorder-banner__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ctr-preorder-banner__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

.ctr-preorder-banner__item-text {
  font-size: 1.2rem;
}

@media screen and (min-width: 992px) {
  .ctr-preorder-banner__item-text {
    font-size: 1.4rem;
  }
}

.ctr-preorder-banner__progress-bar {
  width: 100%;
  height: 21px;
  background-color: var(--white);
  margin-top: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.ctr-preorder-banner__progress-bar-fill {
  width: 18%;
  height: 100%;
  background-color: var(--purple);
  transition: width 300ms ease-out;
}

.ctr-preorder-banner__progress-bar-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .ctr-preorder-banner__progress-bar-title {
    font-size: 1.6rem;
  }
}

.ctr-flavor-selector {
  --ctr-item-badge-bg: #0d6bff;
  --ctr-item-badge-text: #ffffff;
  --ctr-columns: 6;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0.8rem 0;
  transition: all 0.25s ease-in-out;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-selector {
    padding: 1.2rem 1.3rem 0;
  }
}

.ctr-flavor-selector__container .ctr-flavor-selector {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.ctr-flavor-selector__container .ctr-flavor-selector .ctr-flavor-selector__list {
  grid-template-columns: repeat(var(--ctr-columns), minmax(20.4081632653vw, 1fr));
}

@media screen and (min-width: 576px) {
  .ctr-flavor-selector__container .ctr-flavor-selector .ctr-flavor-selector__list {
    grid-template-columns: repeat(var(--ctr-columns), minmax(7.4rem, 1fr));
    margin-right: -1.2rem;
    margin-left: -1.2rem;
    padding: 1.2rem;
  }
}

@media screen and (min-width: 992px) {
  .ctr-flavor-selector__container .ctr-flavor-selector .ctr-flavor-selector__list {
    grid-template-columns: repeat(var(--ctr-columns), minmax(7.8rem, 1fr));
  }
}

@media screen and (min-width: 992px) {
  .ctr-flavor-selector__container .ctr-flavor-selector {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
}

.ctr-flavor-selector__header {
  font-family: var(--ctr-secondary-font);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 1px solid #000;
  padding-top: 1rem;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-selector__header {
    font-size: 1.4rem;
    padding-top: 1.3rem;
  }
}

.ctr-flavor-selector__list {
  display: grid;
  grid-template-columns: repeat(var(--ctr-columns), minmax(18.5185185185vw, 1fr));
  overflow-x: auto;
  gap: 0.4rem;
  padding: 1.2rem 2rem;
  margin-right: -2rem;
  margin-left: -2rem;
  align-items: flex-start;
}

@media screen and (min-width: 576px) {
  .ctr-flavor-selector__list {
    grid-template-columns: repeat(var(--ctr-columns), minmax(7.4rem, 1fr));
    margin-right: -1.2rem;
    margin-left: -1.2rem;
    padding: 1.2rem;
  }
}

@media screen and (min-width: 992px) {
  .ctr-flavor-selector__list {
    grid-template-columns: repeat(var(--ctr-columns), minmax(7.8rem, 1fr));
  }
}

.ctr-flavor-selector__item-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none;
  padding-top: 1.7rem;
}

.ctr-flavor-selector__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.ctr-flavor-selector__item:hover .ctr-flavor-selector__item-inner {
  border-color: #000;
}

.ctr-flavor-selector__item.m-selected {
  cursor: default;
}

.ctr-flavor-selector__item.m-selected .ctr-flavor-selector__item-image-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #000;
  border-radius: 0.5rem;
  z-index: 1;
}

.ctr-flavor-selector__item.m-selected .ctr-flavor-selector__item-inner {
  border-color: #000;
}

.ctr-flavor-selector__item.m-hidden {
  display: none;
}

.ctr-flavor-selector__item-image-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 0 0 0.5rem;
  position: relative;
}

.ctr-flavor-selector__item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ctr-flavor-selector__item-name {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: left;
  padding: 0 0.2rem 0.2rem;
  min-height: 33px;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-selector__item-name {
    font-size: 1.2rem;
    padding: 0 0.4rem 0.4rem;
  }
}

.ctr-flavor-selector__item-preorder {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  background: #000;
  color: #fff;
  margin: 0.5rem 0 0;
  padding: 0.5rem 0.6rem;
  border-radius: 0.5rem;
}

.ctr-flavor-selector__item-preorder.m-hidden {
  display: none;
}

.ctr-flavor-selector__item-label-bottom {
  position: relative;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-selector__item-label-bottom {
    font-size: 1.2rem;
  }
}

.ctr-flavor-selector__item-label-bottom:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2.6rem;
  height: 1px;
  background: var(--ctr-inactive-bg-color);
}

.ctr-flavor-selector__item-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -5px);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background: var(--ctr-item-badge-bg);
  color: var(--ctr-item-badge-text);
  white-space: nowrap;
  padding: 0.6rem 0.2rem 1.2rem;
  margin-bottom: -0.4rem;
  border-radius: 0.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 99%;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-selector__item-badge {
    font-size: 1rem;
  }
}

.ctr-expert-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .ctr-expert-card {
    border-radius: 1.5rem;
  }
}

.ctr-expert-card__image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(100%);
}

@media screen and (min-width: 992px) {
  .ctr-expert-card__image {
    max-height: 25rem;
  }
}

@media screen and (min-width: 1200px) {
  .ctr-expert-card__image {
    max-height: 30rem;
  }
}

.ctr-expert-card__content {
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  background-color: var(--ctr-active-color);
  flex: 1;
}

@media screen and (min-width: 992px) {
  .ctr-expert-card__content {
    padding: 1.8rem 2rem;
  }
}

.ctr-expert-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

@media screen and (min-width: 992px) {
  .ctr-expert-card__name {
    font-size: 1.6rem;
  }
}

.ctr-expert-card__position {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
}

@media screen and (min-width: 992px) {
  .ctr-expert-card__position {
    font-size: 1.6rem;
  }
}

.ctr-expert-card__description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  padding: 2rem 0 0;
}

@media screen and (min-width: 992px) {
  .ctr-expert-card__description {
    font-size: 1.6rem;
  }
}

.ctr-modern-accordion {
  overflow: hidden;
  font-family: var(--ctr-primary-font);
  border-top: 2px solid #000;
  margin: 0 -2rem;
}

@media screen and (min-width: 992px) {
  .ctr-modern-accordion {
    margin: 0;
  }
}

.ctr-modern-accordion__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 1.2rem 1.4rem 1.2rem 2rem;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .ctr-modern-accordion__button {
    font-size: 2.4rem;
  }
}

.ctr-modern-accordion__button svg {
  margin: 0;
  width: 2.8rem;
  height: 2.8rem;
}

.ctr-modern-accordion__content {
  font-family: var(--ctr-secondary-font);
  font-size: 1.8rem;
  padding: 0 8rem 2rem 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-modern-accordion__content {
    font-size: 1.8rem;
    padding: 0 10rem 4rem 2rem;
  }
}

.ctr-modern-accordion__item {
  border-bottom: 2px solid #000;
}

.ctr-primary-accordion {
  --ctr-accordion-bg: #f4f4f4;
  --ctr-accordion-bg-secondary: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ctr-primary-accordion__item.m-sub-category {
  margin-left: 4rem;
}

.ctr-primary-accordion__item.m-sub-category .ctr-primary-accordion__button {
  position: relative;
  background-color: var(--ctr-accordion-bg-secondary);
  padding: 1.6rem 2.2rem;
}

.ctr-primary-accordion__item.m-sub-category .ctr-primary-accordion__button.m-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ctr-primary-accordion__item.m-sub-category .ctr-primary-accordion__button.m-active::after {
  opacity: 1;
}

.ctr-primary-accordion__item.m-sub-category .ctr-primary-accordion__button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4.4rem);
  height: 1px;
  background-color: #b5b5b5;
  opacity: 0;
}

.ctr-primary-accordion__item.m-sub-category .ctr-primary-accordion__content {
  background-color: var(--ctr-accordion-bg-secondary);
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ctr-primary-accordion__items {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.ctr-primary-accordion__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  background-color: var(--ctr-accordion-bg);
  border-radius: 1.5rem;
  position: relative;
  padding: 1.3rem 2.2rem;
}

@media screen and (min-width: 992px) {
  .ctr-primary-accordion__button {
    font-size: 1.8rem;
  }
}

.ctr-primary-accordion__content {
  padding: 1.3rem 2.2rem;
  background-color: var(--ctr-accordion-bg);
  border-radius: 1.5rem;
  margin-top: 0.7rem;
  font-size: 1.6rem;
}

.ctr-ingredient-card {
  font-family: var(--ctr-secondary-font);
  color: var(--ctr-text-color);
}

.ctr-ingredient-card:hover .ctr-ingredient-card__title {
  text-decoration: underline;
}

.ctr-ingredient-card__image {
  border-radius: var(--ctr-border-radius);
  overflow: hidden;
}

.ctr-ingredient-card__image img {
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
}

.ctr-ingredient-card__title {
  font-size: 1.2rem;
  letter-spacing: 0.02rem;
  margin-top: 1rem;
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-card__title {
    font-size: 1.8rem;
    margin-top: 1.2rem;
  }
}

.ctr-ingredient-card .ctr-modal__body {
  display: none;
}

.ctr-ingredient-card-info {
  font-family: var(--ctr-secondary-font);
  color: var(--ctr-text-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  border-radius: 8px;
  height: 13.5rem;
  overflow: hidden;
  background: #fff;
}

.ctr-ingredient-card-info:hover .ctr-ingredient-card__title {
  text-decoration: underline;
}

.ctr-ingredient-card-info__image {
  border-radius: var(--ctr-border-radius);
  overflow: hidden;
}

.ctr-ingredient-card-info__image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.ctr-ingredient-card-info__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
}

.ctr-ingredient-card-info__title {
  font-size: 1.8rem;
  letter-spacing: 0.02rem;
  line-height: 1.2;
  font-weight: 500;
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-card-info__title {
    font-size: 1.8rem;
  }
}

.ctr-ingredient-card-info__link {
  font-family: var(--ctr-secondary-font);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ctr-text-color);
  text-decoration: underline;
}

.ctr-ingredient-card-info__link:hover {
  font-weight: 600;
}

.ctr-modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  transition: visibility 0.2s ease-in;
  --ctr-border-radius: 2rem;
}

.ctr-modal.active {
  -webkit-backdrop-filter: opacity(1) blur(8px);
  backdrop-filter: opacity(1) blur(8px);
  visibility: visible;
}

.ctr-modal.active .ctr-modal__content {
  transform: translateY(0);
}

@media screen and (min-width: 992px) {
  .ctr-modal.active .ctr-modal__content {
    transform: translateX(0);
  }
}

.ctr-modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ctr-modal__content {
  height: 100%;
  width: 100vw;
  box-shadow: rgba(180, 180, 180, 0.16) 0px 1px 4px, rgba(180, 180, 180, 0.1) 0px 0px 0px 1px;
  background: #fff;
  border-right: 0;
  display: flex;
  transform: translateY(calc(100% + 1rem));
  flex-direction: column;
  transition: transform 0.25s ease;
}

@media screen and (min-width: 992px) {
  .ctr-modal__content {
    transform: translateX(calc(100% + 1rem));
  }
}

@media screen and (min-width: 992px) {
  .ctr-modal__content {
    width: 50rem;
  }
}

@media screen and (min-width: 1920px) {
  .ctr-modal__content {
    width: 70rem;
  }
}

@media screen and (max-width: 768px) {
  .ctr-modal__content {
    margin-top: auto;
    height: calc(100% - 7rem);
  }
}

.ctr-modal__header-title {
  max-width: 12rem;
}

@media screen and (min-width: 992px) {
  .ctr-modal__header-title {
    max-width: 15rem;
  }
}

.ctr-modal__header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.8rem;
}

.ctr-modal__title {
  font-family: var(--ctr-primary-font);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
}

.ctr-modal__close {
  cursor: pointer;
}

.ctr-modal__close-icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}

.ctr-modal__close-icon svg {
  width: 100%;
  height: 100%;
}

.ctr-modal__body {
  padding: 0 1.8rem 2.5rem;
  overflow-y: auto;
}

.ctr-modal__image {
  width: 100%;
  border-radius: var(--ctr-border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-modal__image {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1920px) {
  .ctr-modal__image {
    margin-bottom: 2.5rem;
  }
}

.ctr-modal__image img {
  aspect-ratio: 1/0.75;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.ctr-modal__title {
  font-family: var(--ctr-secondary-font);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-modal__title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 1920px) {
  .ctr-modal__title {
    margin-bottom: 4rem;
  }
}

.ctr-modal__subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-modal__subtitle {
    font-size: 1.8rem;
  }
}

.ctr-modal__text {
  font-family: var(--ctr-secondary-font);
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}

@media screen and (min-width: 992px) {
  .ctr-modal__text {
    font-size: 1.6rem;
  }
}

.ctr-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  row-gap: 2rem;
  margin: 2rem 0 0;
}

@media screen and (min-width: 992px) {
  .ctr-modal__grid {
    margin: 3rem 0 0;
  }
}

@media screen and (min-width: 1920px) {
  .ctr-modal__grid {
    margin: 4rem 0 0;
  }
}

.ctr-free-gift-message {
  --ctr-free-gift-message-bg-color: #f1ff67;
  --ctr-free-gift-message-text-color: #1e1e1e;
  --ctr-free-gift-message-border-radius: 0.5rem;
  background-color: var(--ctr-free-gift-message-bg-color);
  color: var(--ctr-free-gift-message-text-color);
  border-radius: var(--ctr-free-gift-message-border-radius);
  padding: 1.5rem;
  border: 1px solid #000;
  margin: 2rem 0 1.2rem;
  position: relative;
}

@media screen and (min-width: 992px) {
  .ctr-free-gift-message {
    padding: 1.5rem 2.5rem;
  }
}

.ctr-free-gift-message__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.2rem;
}

.ctr-free-gift-message__text {
  font-family: var(--ctr-secondary-font);
  font-size: 1.4rem;
  line-height: 1.2;
  flex: 1;
  margin-right: 90px;
}

@media screen and (min-width: 992px) {
  .ctr-free-gift-message__text {
    font-size: 1.4rem;
  }
}

.ctr-free-gift-message__image {
  position: absolute;
  top: calc(50% - 0.8rem);
  right: 10px;
  transform: translateY(-50%);
  max-width: 80px;
}

.ctr-free-gift-message__image img {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .ctr-free-gift-message__image {
    right: 15px;
  }
}

.ctr-free-gift-message br {
  display: none;
}

@media screen and (min-width: 576px) {
  .ctr-free-gift-message br {
    display: block;
  }
}

.ctr-usp-callout {
  --columns: 3;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: 0.8rem;
}

@media screen and (min-width: 992px) {
  .ctr-usp-callout {
    display: inline-grid;
  }
}

.ctr-usp-callout__item {
  font-family: var(--ctr-secondary-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ctr-text-color);
  text-transform: uppercase;
  text-align: center;
  padding: 0.8rem 0.2rem;
  background-color: var(--purple);
  border-radius: 0.2rem;
  white-space: nowrap;
}

@media screen and (min-width: 992px) {
  .ctr-usp-callout__item {
    font-size: 1.4rem;
    padding: 0.8rem 1.2rem;
  }
}

.ctr-header {
  font-family: var(--ctr-primary-font);
  padding: 1.8rem 0;
  display: block;
  background: var(--ctr-bg-color);
  --ctr-logo-mobile-width: 130px;
  --ctr-logo-desktop-width: 177px;
}

.ctr-header-mobile {
  display: none;
  width: 100%;
  height: calc(100vh - 7rem);
  background: var(--ctr-bg-color);
  z-index: 100;
  padding: 4rem 0;
}

@media screen and (min-width: 992px) {
  .ctr-header-mobile {
    display: none !important;
  }
}

.ctr-header-mobile.m-active {
  display: block;
}

.ctr-header-mobile__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.ctr-header-mobile__nav-link {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ctr-text-color);
  padding: 0.5rem 1.4rem;
}

.ctr-header-mobile__nav-link:hover {
  font-weight: 700;
}

.ctr-header-section {
  position: sticky;
  z-index: 101 !important;
  top: 0;
  background: var(--ctr-bg-color);
}

.ctr-header__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ctr-header__cell {
  display: flex;
}

.ctr-header__cell--logo {
  justify-content: center;
}

.ctr-header__cell--utilities {
  justify-content: flex-end;
}

.ctr-header__nav {
  display: none;
}

@media screen and (min-width: 992px) {
  .ctr-header__nav {
    display: flex;
  }
}

.ctr-header__nav-toggle {
  display: none;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ctr-text-color);
  transition: all 0.25s ease-in-out;
}

@media screen and (min-width: 992px) {
  .ctr-header__nav-toggle {
    display: none;
  }
}

.ctr-header__nav-toggle.m-expanded .ctr-header__nav-toggle-icon {
  width: 2.2rem;
  height: 2.2rem;
}

.ctr-header__nav-toggle.m-expanded .ctr-header__nav-toggle-icon::before {
  top: 50%;
  transform: rotate(-45deg);
  transform-origin: center;
}

.ctr-header__nav-toggle.m-expanded .ctr-header__nav-toggle-icon::after {
  top: 50%;
  transform: rotate(45deg);
  transform-origin: center;
}

.ctr-header__nav-toggle-icon {
  position: relative;
  width: 2.2rem;
  height: 1rem;
}

.ctr-header__nav-toggle-icon::before,
.ctr-header__nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 2rem;
  transform-origin: right;
}

.ctr-header__nav-toggle-icon::before {
  top: 0;
}

.ctr-header__nav-toggle-icon::after {
  bottom: 0;
}

.ctr-header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.ctr-header__nav-item.m-dark .ctr-header__nav-link {
  background: #000;
  color: #f1ff67;
}

.ctr-header__nav-item.m-dark .ctr-header__nav-link:hover {
  background: rgba(0, 0, 0, 0);
  color: #000;
}

.ctr-header__nav-link {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ctr-text-color);
  border: 1px solid var(--ctr-text-color);
  border-radius: 0.5rem;
  padding: 0.5rem 1.4rem;
  transition: all 0.25s ease-in;
  letter-spacing: -0.01em;
}

.ctr-header__nav-link:hover {
  background: var(--ctr-text-color);
  color: var(--ctr-bg-color);
}

.ctr-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(19%);
}

.ctr-header__logo svg {
  width: var(--ctr-logo-mobile-width);
}

@media screen and (min-width: 992px) {
  .ctr-header__logo svg {
    width: var(--ctr-logo-desktop-width);
  }
}

.ctr-header__utilities {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ctr-header__utilities-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
}

.ctr-header__utilities-item.m-account-link {
  display: none;
}

@media screen and (min-width: 992px) {
  .ctr-header__utilities-item.m-account-link {
    display: block;
  }
}

.ctr-header__utilities-item.m-cart-link .ctr-header__utilities-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
}

.ctr-header__utilities-link {
  position: relative;
  display: block;
  font-size: 1.4rem;
  color: var(--ctr-text-color);
  font-weight: 500;
  padding: 0.5rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 0.5rem;
}

.ctr-header__utilities-link-count {
  display: block;
  background: #ff2f01;
  color: #fff;
  border-radius: 50%;
  width: 1.6rem;
  height: 1.6rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.ctr-hero {
  background: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
  --ctr-title-font-size: 48px;
  --ctr-title-font-size-mobile: 36px;
  --ctr-subtitle-font-size: 13px;
  --ctr-subtitle-font-size-mobile: 10px;
  --ctr-callout-font-size: 12px;
  --ctr-callout-font-size-mobile: 12px;
  --ctr-button-font-size: 13px;
  --ctr-button-font-size-mobile: 13px;
  --ctr-button-max-width: 22.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-hero {
    height: calc(100vh - 70px);
    max-height: unset;
    min-height: 700px;
  }
}

@media screen and (min-width: 1600px) {
  .ctr-hero {
    min-height: 800px;
  }
}

.ctr-hero__container {
  height: 100%;
}

.ctr-hero__row {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
}

@media screen and (min-width: 992px) {
  .ctr-hero__row {
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
  }
}

.ctr-hero__col--preview {
  position: relative;
  flex: 1;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .ctr-hero__col--last {
    order: 1;
  }
}

@media screen and (min-width: 992px) {
  .ctr-hero__col {
    flex: 1;
  }
}

.ctr-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 3rem 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-hero__content {
    align-items: flex-start;
    padding: 6rem;
  }

  .ctr-hero__content.flex-start {
    justify-content: flex-start;
    margin-top: 4rem;
  }

  .ctr-hero__content.flex-end {
    justify-content: flex-end;
  }

  .ctr-hero__content.center {
    justify-content: center;
    margin-top: 4rem;
  }
}

@media screen and (min-width: 1600px) {
  .ctr-hero__content.flex-start {
    margin-top: unset;
  }

  .ctr-hero__content.center {
    margin-top: unset;
  }
}

@media screen and (max-width: 991px) {
  .ctr-hero__content.mobile-flex-start {
    align-items: flex-start;
  }

  .ctr-hero__content.mobile-flex-start * {
    text-align: left;
  }

  .ctr-hero__content.mobile-flex-end {
    align-items: flex-end;
  }

  .ctr-hero__content.mobile-flex-end * {
    text-align: right;
  }

  .ctr-hero__content.mobile-center {
    align-items: center;
  }

  .ctr-hero__content.mobile-center * {
    text-align: center;
  }
}

.ctr-hero__image-container {
  position: relative;
  height: 100%;
}

.ctr-hero__image-container--contain {
  padding: 2.5rem 1.8rem;
}

@media screen and (min-width: 992px) {
  .ctr-hero__image-container--contain {
    padding: 2.5rem 0 2.5rem 2.5rem;
  }
}

.ctr-hero__loading {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ctr-hero__loading .loading__spinner {
  top: unset;
  transform: unset;
  right: unset;
}

.ctr-hero__video {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: 1;
}

.ctr-hero__image {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (min-width: 992px) {
  .ctr-hero__image {
    position: absolute;
  }
}

.ctr-hero__image--contain {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  width: 100%;
  height: auto;
  max-height: 100%;
}

.ctr-hero__image--desktop {
  display: none;
}

@media screen and (min-width: 992px) {
  .ctr-hero__image--desktop {
    display: block;
  }
}

.ctr-hero__image--mobile {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: unset;
  object-fit: unset;
}

@media screen and (min-width: 992px) {
  .ctr-hero__image--mobile {
    display: none;
  }
}

.ctr-hero__logo {
  max-width: 300px;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-hero__logo {
    margin-bottom: 2.5rem;
    max-width: 400px;
  }
}

.ctr-hero__logo img {
  width: 100%;
  height: auto;
}

.ctr-hero__title {
  margin: 0 0 2rem;
  font-weight: 700;
  font-size: var(--ctr-title-font-size-mobile);
  line-height: 1.1;
  text-align: center;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-hero__title {
    font-size: var(--ctr-title-font-size);
    margin: 0 0 2.7rem;
    max-width: 60rem;
    text-align: left;
  }
}

.ctr-hero__subtitle {
  font-family: var(--ctr-secondary-font);
  font-weight: 400;
  font-size: var(--ctr-subtitle-font-size-mobile);
  line-height: 1.2;
  color: var(--ctr-text-color);
  text-transform: capitalize;
}

@media screen and (min-width: 992px) {
  .ctr-hero__subtitle {
    font-size: var(--ctr-subtitle-font-size);
    margin: 0 0 2rem;
  }
}

@media screen and (min-width: 1600px) {
  .ctr-hero__subtitle {
    margin: 0 0 5rem;
  }
}

.ctr-hero__callout-text {
  font-family: var(--ctr-secondary-font);
  font-weight: 400;
  font-size: var(--ctr-callout-font-size-mobile);
  line-height: 1;
  color: var(--ctr-text-black-color);
  background: var(--ctr-brand-color);
  padding: 1.2rem 1.6rem;
  border-radius: 0.8rem;
  text-transform: uppercase;
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
  cursor: default;
}

@media screen and (min-width: 992px) {
  .ctr-hero__callout-text {
    margin: 0 0 2.4rem;
    padding: 1.2rem 2rem;
    font-size: var(--ctr-callout-font-size);
  }
}

.ctr-hero__shipping-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-hero__shipping-details {
    flex-direction: row;
    gap: 1rem;
  }
}

.ctr-hero__shipping-detail {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--ctr-text-color);
}

.ctr-hero__press-icons-container {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-hero__press-icons-container {
    margin-top: 4.8rem;
  }
}

.ctr-hero__press-icons-title {
  font-family: var(--ctr-secondary-font);
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ctr-text-color);
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
}

.ctr-hero__press-icons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  opacity: 0.8;
}

@media screen and (min-width: 992px) {
  .ctr-hero__press-icons {
    justify-content: flex-start;
  }
}

.ctr-hero__press-icon {
  height: 7.2rem;
}

.ctr-hero__press-icon img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.ctr-hero__product-features {
  list-style: none;
  padding: 0;
  margin: 8rem 0 0;
  display: none;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--ctr-text-color);
  width: 100%;
}

@media screen and (min-width: 992px) {
  .ctr-hero__product-features {
    display: flex;
    justify-content: flex-start;
    font-size: 1.6rem;
    gap: 2rem;
    margin: 3rem 0 0;
  }
}

@media screen and (min-width: 1600px) {
  .ctr-hero__product-features {
    margin: 8rem 0 0;
  }
}

@media screen and (min-width: 1200px) {
  .ctr-hero__product-features {
    gap: 3rem;
  }
}

.ctr-hero__product-features--mobile {
  display: flex;
  justify-content: space-between;
  padding: 3.2rem 2rem;
  margin: 0;
  background: #f5f5f5;
}

@media screen and (min-width: 992px) {
  .ctr-hero__product-features--mobile {
    display: none;
  }
}

.ctr-hero__product-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-hero__product-feature {
    gap: 1rem;
  }
}

@media screen and (min-width: 1200px) {
  .ctr-hero__product-feature {
    gap: 1.5rem;
  }
}

.ctr-hero__product-feature-image {
  transform: translateY(-0.05em);
  width: 2rem;
  height: 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-hero__product-feature-image {
    width: 3rem;
    height: 3rem;
  }
}

.ctr-hero__button {
  margin: 2rem 0;
  width: 100%;
  max-width: var(--ctr-button-max-width);
  font-size: var(--ctr-button-font-size-mobile);
}

@media screen and (min-width: 992px) {
  .ctr-hero__button {
    font-size: var(--ctr-button-font-size);
    padding: 1.9rem 2rem;
    margin: 0 0 3rem;
    text-transform: uppercase;
  }
}

.ctr-hero br {
  display: block;
}

.ctr-product-carousel {
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 1.6rem;
  background-color: var(--ctr-bg-color);
}

@media screen and (min-width: 992px) {
  .ctr-product-carousel {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 2.4rem;
  }
}

.ctr-product-carousel__container {
  padding: 0 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-carousel__container {
    padding: 0;
    padding-left: 2rem;
    margin-right: 0;
    max-width: unset;
    margin-left: max(0px, (100% - var(--ctr-container-normal-width) - 5em)/2);
  }
}

@media screen and (min-width: 1801px) {
  .ctr-product-carousel__container {
    max-width: var(--ctr-container-normal-width);
    padding-right: 2rem;
    margin-right: auto;
  }
}

.ctr-product-carousel__slider {
  display: block;
  margin-right: -2rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-carousel__slider {
    margin-right: 0;
  }
}

.ctr-product-carousel .swiper-wrapper {
  padding: 0 0 4rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-carousel .swiper-wrapper {
    padding: 0 0 1.4rem;
  }
}

.ctr-product-carousel .swiper-slide {
  height: auto;
}

.ctr-product-carousel .swiper-scrollbar__container {
  max-width: 60rem;
  margin: 0 auto;
  position: relative;
  --swiper-scrollbar-size: 0.8rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-carousel .swiper-scrollbar__container {
    --swiper-scrollbar-size: 0.4rem;
  }
}

.ctr-product-carousel .swiper-scrollbar__container .swiper-scrollbar {
  left: 0;
  right: 1.6rem;
  width: auto;
}

@media screen and (min-width: 992px) {
  .ctr-product-carousel .swiper-scrollbar__container .swiper-scrollbar {
    right: 0;
  }
}

.ctr-marquee-text {
  --ctr-space-between: 6rem;
  --ctr-bg-color: #f1ff67;
  font-family: var(--ctr-primary-font);
  color: var(--ctr-text-color);
  background: var(--ctr-bg-color);
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
}

@media screen and (min-width: 992px) {
  .ctr-marquee-text {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
  }
}

.ctr-marquee-text__list {
  font-size: var(--ctr-font-size-mobile);
  font-weight: 500;
}

@media screen and (min-width: 992px) {
  .ctr-marquee-text__list {
    font-size: var(--ctr-font-size-desktop);
  }
}

.ctr-marquee-text__item {
  white-space: nowrap;
  text-align: center;
  padding: 0 var(--ctr-space-between);
}

.ctr-marquee-text__separator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  content: '•';
}

.ctr-image-with-text {
  background: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
  --ctr-section-padding-y: 2rem;
  --ctr-section-padding-y-mobile: 2rem;
  --ctr-image-border-radius: 0.8rem;
  --ctr-image-border-radius-mobile: 0.8rem;
}

.ctr-image-with-text__container {
  height: 100%;
}

.ctr-image-with-text__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'info' 'image';
  align-items: center;
  padding: var(--ctr-section-padding-y-mobile) 0;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-text__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'image info';
    padding: var(--ctr-section-padding-y) 0;
  }
}

@media screen and (max-width: 991px) {
  .ctr-image-with-text__grid--mobile-reverse {
    grid-template-columns: 1fr;
    grid-template-areas: 'image' 'info';
  }
}

@media screen and (min-width: 992px) {
  .ctr-image-with-text__grid--desktop-reverse {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'info image';
  }

  .ctr-image-with-text__grid--desktop-reverse .ctr-image-with-text__col--preview {
    justify-content: flex-start;
  }
}

.ctr-image-with-text__col {
  grid-area: info;
}

.ctr-image-with-text__col--preview {
  grid-area: image;
  margin: 0 -2rem;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-text__col--preview {
    display: flex;
    justify-content: flex-end;
    margin: 0;
  }
}

@media screen and (min-width: 992px) {
  .ctr-image-with-text__col--last {
    order: 1;
  }
}

@media screen and (min-width: 992px) {
  .ctr-image-with-text__col {
    flex: 1;
  }
}

.ctr-image-with-text__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 3rem 0;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-text__content {
    align-items: flex-start;
    padding: 6rem;
  }

  .ctr-image-with-text__content.flex-start {
    align-items: flex-start;
    text-align: left;
  }

  .ctr-image-with-text__content.flex-end {
    align-items: flex-end;
    text-align: right;
  }

  .ctr-image-with-text__content.center {
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .ctr-image-with-text__content.mobile-flex-start {
    align-items: flex-start;
  }

  .ctr-image-with-text__content.mobile-flex-start * {
    text-align: left;
  }

  .ctr-image-with-text__content.mobile-flex-end {
    align-items: flex-end;
  }

  .ctr-image-with-text__content.mobile-flex-end * {
    text-align: right;
  }

  .ctr-image-with-text__content.mobile-center {
    align-items: center;
  }

  .ctr-image-with-text__content.mobile-center * {
    text-align: center;
  }
}

.ctr-image-with-text__image-container {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-text__image-container {
    width: 100%;
  }
}

.ctr-image-with-text__image {
  vertical-align: middle;
  border-radius: var(--ctr-image-border-radius);
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .ctr-image-with-text__image {
    border-radius: var(--ctr-image-border-radius-mobile);
  }
}

@media screen and (min-width: 992px) {
  .ctr-image-with-text__image {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
  }
}

.ctr-image-with-text__title {
  margin: 0 0 2rem;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-image-with-text__title {
    font-size: 4.8rem;
    margin: 0 0 2.7rem;
    max-width: 60rem;
  }
}

.ctr-image-with-text__paragraph {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--ctr-text-color);
  text-transform: var(--ctr-text-transform);
  max-width: 50rem;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-text__paragraph {
    font-size: 1.6rem;
    max-width: 60rem;
  }
}

.ctr-image-with-text__paragraph p {
  margin-bottom: 1rem;
}

.ctr-image-with-text__paragraph ul {
  list-style-type: unset;
  padding-left: 2rem;
  margin: 2rem 0;
}

.ctr-image-with-text__icon {
  width: var(--ctr-icon-width-mobile);
  height: auto;
  margin: 3rem 0 0;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-text__icon {
    width: var(--ctr-icon-width);
  }
}

.ctr-image-with-text__button {
  margin: 4rem 0 0;
  min-width: 14.4rem;
  text-align: center !important;
}

.ctr-image-with-text__badges {
  margin-top: 4rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  overflow-x: auto;
}

.ctr-image-with-text__badges-container {
  overflow-x: auto;
}

.ctr-image-with-text__badge {
  min-width: 0;
  flex: 1 0 auto;
}

.ctr-image-banner {
  --ctr-bg-position: center;
  --ctr-bg-position-mobile: center;
  position: relative;
  background-color: var(--ctr-bg-color);
  background-image: var(--ctr-bg-image);
  background-size: cover;
  background-position: var(--ctr-bg-position-mobile);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
}

@media screen and (min-width: 992px) {
  .ctr-image-banner {
    background-position: var(--ctr-bg-position);
  }
}

.ctr-image-banner__container {
  position: relative;
  z-index: 1;
}

.ctr-image-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ctr-overlay-color);
  opacity: var(--ctr-overlay-opacity);
}

.ctr-image-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile);
}

@media screen and (min-width: 992px) {
  .ctr-image-banner__content {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom);
  }

  .ctr-image-banner__content.flex-start {
    align-items: flex-start;
    text-align: left;
  }

  .ctr-image-banner__content.flex-end {
    align-items: flex-end;
    text-align: right;
  }

  .ctr-image-banner__content.center {
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .ctr-image-banner__content.mobile-flex-start {
    align-items: flex-start;
  }

  .ctr-image-banner__content.mobile-flex-start * {
    text-align: left;
  }

  .ctr-image-banner__content.mobile-flex-end {
    align-items: flex-end;
  }

  .ctr-image-banner__content.mobile-flex-end * {
    text-align: right;
  }

  .ctr-image-banner__content.mobile-center {
    align-items: center;
  }

  .ctr-image-banner__content.mobile-center * {
    text-align: center;
  }
}

.ctr-image-banner__title {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-image-banner__title {
    font-size: 4.8rem;
  }
}

.ctr-image-banner__button {
  margin: 4rem 0 0;
  min-width: 15.6rem;
}

@media screen and (min-width: 992px) {
  .ctr-image-banner__button {
    margin: 2.7rem 0 0;
  }
}

.ctr-image-banner__secondary-image {
  margin-bottom: 4rem;
}

@media screen and (min-width: 992px) {
  .ctr-image-banner__secondary-image {
    margin-bottom: 3rem;
  }
}

.ctr-image-banner br {
  display: inline-block;
}

.ctr-multicolumn {
  position: relative;
  background-color: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
}

.ctr-multicolumn__container {
  position: relative;
}

.ctr-multicolumn__content {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 5rem;
}

@media screen and (min-width: 992px) {
  .ctr-multicolumn__content {
    padding: 10rem 0 9rem;
  }
}

@media screen and (max-width: 991px) {
  .ctr-multicolumn__content.mobile-flex-start {
    align-items: flex-start;
  }

  .ctr-multicolumn__content.mobile-flex-start * {
    text-align: left;
  }

  .ctr-multicolumn__content.mobile-flex-end {
    align-items: flex-end;
  }

  .ctr-multicolumn__content.mobile-flex-end * {
    text-align: right;
  }

  .ctr-multicolumn__content.mobile-center {
    align-items: center;
  }

  .ctr-multicolumn__content.mobile-center * {
    text-align: center;
  }
}

.ctr-multicolumn__title {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
  margin-bottom: 3rem;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .ctr-multicolumn__title {
    font-size: 5.8rem;
    margin-bottom: 6rem;
  }
}

.ctr-multicolumn__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media screen and (min-width: 992px) {
  .ctr-multicolumn__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}

.ctr-multicolumn__item {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: #f3f3f3;
  border-radius: 1.8rem;
}

@media screen and (min-width: 992px) {
  .ctr-multicolumn__item {
    text-align: left;
    padding: 0 0 2.6rem;
  }

  .ctr-multicolumn__item.flex-start {
    align-items: flex-start;
    text-align: left;
  }

  .ctr-multicolumn__item.flex-end {
    align-items: flex-end;
    text-align: right;
  }

  .ctr-multicolumn__item.center {
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .ctr-multicolumn__item.mobile-flex-start {
    align-items: flex-start;
  }

  .ctr-multicolumn__item.mobile-flex-start * {
    text-align: left;
  }

  .ctr-multicolumn__item.mobile-flex-end {
    align-items: flex-end;
  }

  .ctr-multicolumn__item.mobile-flex-end * {
    text-align: right;
  }

  .ctr-multicolumn__item.mobile-center {
    align-items: center;
  }

  .ctr-multicolumn__item.mobile-center * {
    text-align: center;
  }
}

.ctr-multicolumn__item-content {
  padding: 0 1.6rem 1.8rem;
}

@media screen and (min-width: 992px) {
  .ctr-multicolumn__item-content {
    padding: 0 2.6rem;
  }
}

.ctr-multicolumn__item-title {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.1;
  margin: 1.6rem 0 2.8rem;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-multicolumn__item-title {
    font-size: 3.2rem;
    margin: 2.6rem 0 2rem;
  }
}

.ctr-multicolumn__item-text {
  font-family: var(--ctr-secondary-font);
  font-size: 1.1rem;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--ctr-text-color);
  letter-spacing: 0.05em;
}

@media screen and (min-width: 992px) {
  .ctr-multicolumn__item-text {
    font-size: 1.4rem;
  }
}

.ctr-multicolumn__item-image {
  border-radius: 0;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-multicolumn__item-image {
    border-radius: 0;
    border-top-left-radius: 1.8rem;
    border-top-right-radius: 1.8rem;
  }
}

.ctr-faq {
  background: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
  padding: 3rem 0;
}

@media screen and (min-width: 992px) {
  .ctr-faq {
    padding: 6rem 0 5rem;
  }
}

.ctr-faq__container {
  padding: 0 2rem;
}

.ctr-faq__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 992px) {
  .ctr-faq__content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.ctr-faq__title {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-faq__title {
    font-size: 4.8rem;
  }
}

@media screen and (min-width: 992px) {
  .ctr-faq__items {
    min-width: 70rem;
    width: 50%;
  }
}

.ctr-faq__blocks {
  width: 100%;
}

.ctr-faq__blocks nav {
  top: 1.4rem;
  width: 28px;
  height: 28px;
}

.ctr-faq__item {
  margin: 0 0 0 2.6rem;
  background-color: #fafafa !important;
}

@media screen and (min-width: 992px) {
  .ctr-faq__item {
    margin: 0 0 0 4rem;
  }
}

.ctr-faq__category {
  height: 5.5rem;
  cursor: pointer;
}

.ctr-faq__category-title {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .ctr-faq__category-title {
    font-size: 2.4rem;
  }
}

.ctr-faq__header-title {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .ctr-faq__header-title {
    font-size: 1.8rem;
  }
}

.ctr-faq__accordion,
.ctr-faq__block {
  transition: max-height 300ms ease-out, opacity 250ms ease-in;
  height: auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.ctr-faq__item,
.ctr-faq__category,
.ctr-faq__uncat {
  background-color: #f4f4f4;
  border-radius: 1.5rem;
  position: relative;
}

.ctr-faq__category,
.ctr-faq__header {
  padding: 1.6rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.ctr-faq__category nav .plus,
.ctr-faq__header nav .plus {
  opacity: 1;
}

.ctr-faq__category.accordion--active,
.ctr-faq__header.accordion--active {
  position: relative;
}

.ctr-faq__category.accordion--active nav .minus,
.ctr-faq__header.accordion--active nav .minus {
  opacity: 1;
}

.ctr-faq__category.accordion--active nav .plus,
.ctr-faq__header.accordion--active nav .plus {
  opacity: 0;
}

.ctr-faq__category.accordion--active + .ctr-faq__block,
.ctr-faq__category.accordion--active + .ctr-faq__accordion,
.ctr-faq__header.accordion--active + .ctr-faq__block,
.ctr-faq__header.accordion--active + .ctr-faq__accordion {
  max-height: 1500px;
  opacity: 1;
}

.ctr-faq__category.accordion--active + .ctr-faq__block:last-child,
.ctr-faq__header.accordion--active + .ctr-faq__block:last-child {
  padding-bottom: var(--vert-2);
}

.ctr-faq__category.accordion--active + .ctr-faq__uncat,
.ctr-faq__category.accordion--active + .ctr-faq__accordion,
.ctr-faq__header.accordion--active + .ctr-faq__uncat,
.ctr-faq__header.accordion--active + .ctr-faq__accordion {
  padding: 1.6rem 8rem 1.6rem 2.2rem;
}

.ctr-faq__header {
  margin: 0 2.2rem;
  padding: var(--vert-3) 0;
  min-height: 4.5rem;
  cursor: pointer;
}

.ctr-faq__header.accordion--active nav {
  right: 0;
}

.ctr-faq__header.accordion--active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 4.4rem);
  height: 1px;
  background-color: var(--grey-2);
}

.ctr-faq__blocks,
.ctr-faq__block {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ctr-faq__blocks nav,
.ctr-faq__block nav {
  position: absolute;
  right: 2.2rem;
  z-index: 4;
}

.ctr-faq__blocks svg,
.ctr-faq__block svg {
  width: 100%;
  height: 100%;
  fill: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 250ms ease-in;
}

.ctr-faq__blocks .button--bg,
.ctr-faq__block .button--bg {
  fill: none;
  stroke: #000;
}

.ctr-faq__accordion,
.ctr-faq__uncat {
  padding: 0 var(--vert-3);
}

.ctr-faq__question {
  font-size: 1.2rem;
}

@media screen and (min-width: 992px) {
  .ctr-faq__question {
    font-size: 1.8rem;
  }
}

.ctr-faq__question p {
  line-height: 1.4em;
}

.ctr-faq__question p:not(:last-child) {
  margin-bottom: 1.6rem;
}

@media (max-width: 500px) {
  .ctr-faq__question {
    font-size: var(--font-body-3);
  }
}

.ctr-faq__category nav .plus,
.ctr-faq__header nav .plus {
  opacity: 1;
}

.ctr-card-carousel {
  background: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel {
    background: linear-gradient(to top, #f1ff67 0%, #ffffff 40%);
  }
}

.ctr-card-carousel__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: blur(40px);
}

.ctr-card-carousel__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(165, 165, 165, 0.2);
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel__overlay {
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    opacity: 0.7;
    border-radius: 1.5rem;
    background: rgba(165, 165, 165, 0.2);
  }
}

.ctr-card-carousel__container {
  position: relative;
  z-index: 1;
  height: 100%;
}

.ctr-card-carousel .swiper--mobile {
  --swiper-pagination-color: #646464;
  --swiper-pagination-bullet-inactive-color: #c6c6c6;
  --swiper-pagination-bullet-inactive-opacity: 0.4;
  --swiper-navigation-size: auto;
  padding: 0 0 4rem !important;
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel .swiper--mobile {
    display: none;
  }
}

.ctr-card-carousel .swiper--mobile .ctr-card-carousel__controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-prev,
.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-next {
  position: relative;
  transform: translateY(1px);
  opacity: 0.5;
}

.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-prev::before,
.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-prev::after,
.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-next::before,
.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-next::after {
  display: none;
}

.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-prev svg,
.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-next svg {
  width: 1.5rem;
}

.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-prev svg path,
.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-next svg path {
  fill: var(--swiper-pagination-color);
}

.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-prev:hover,
.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-next:hover {
  opacity: 1;
}

.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-prev:hover svg,
.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-next:hover svg {
  width: 1.5rem;
}

.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-prev:hover svg path,
.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-next:hover svg path {
  fill: var(--swiper-pagination-color);
}

.ctr-card-carousel .swiper--mobile .ctr-card-carousel__button-prev svg {
  transform: rotate(180deg);
}

.ctr-card-carousel .swiper--mobile .ctr-card-carousel__pagination {
  position: relative;
  width: auto !important;
}

.ctr-card-carousel .swiper--desktop {
  --swiper-navigation-sides-offset: 0;
  display: none;
  width: 100%;
  height: 100%;
  max-width: 46rem;
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel .swiper--desktop {
    display: block;
  }
}

.ctr-card-carousel .swiper--desktop .swiper-button-prev,
.ctr-card-carousel .swiper--desktop .swiper-button-next {
  background-color: #ebebeb;
  border-radius: 0.7rem;
  width: 3.8rem;
  height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ctr-card-carousel .swiper--desktop .swiper-button-prev::before,
.ctr-card-carousel .swiper--desktop .swiper-button-prev::after,
.ctr-card-carousel .swiper--desktop .swiper-button-next::before,
.ctr-card-carousel .swiper--desktop .swiper-button-next::after {
  display: none;
}

.ctr-card-carousel .swiper--desktop .swiper-button-prev svg,
.ctr-card-carousel .swiper--desktop .swiper-button-next svg {
  width: 2rem;
}

.ctr-card-carousel .swiper--desktop .swiper-button-prev {
  transform: translateX(-1.9rem);
}

.ctr-card-carousel .swiper--desktop .swiper-button-prev svg {
  transform: rotate(180deg);
}

.ctr-card-carousel .swiper--desktop .swiper-button-next {
  transform: translateX(1.9rem);
}

.ctr-card-carousel .swiper--desktop .swiper-button-disabled {
  opacity: 0;
}

.ctr-card-carousel__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'info' 'image';
  align-items: center;
  padding: 4rem 0;
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel__grid {
    padding: 10rem 6rem 10rem 4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'image info';
  }
}

@media screen and (min-width: 1400px) {
  .ctr-card-carousel__grid {
    padding: 10rem 6rem 10rem 6rem;
  }
}

@media screen and (max-width: 991px) {
  .ctr-card-carousel__grid--mobile-reverse {
    grid-template-columns: 1fr;
    grid-template-areas: 'image' 'info';
  }
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel__grid--desktop-reverse {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'info image';
  }

  .ctr-card-carousel__grid--desktop-reverse .ctr-image-with-text__col--preview {
    justify-content: flex-start;
  }
}

.ctr-card-carousel__col {
  grid-area: info;
  overflow: hidden;
}

.ctr-card-carousel__col--preview {
  grid-area: image;
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel__col--preview {
    display: flex;
    justify-content: center;
    padding: 0 4rem 0 0;
    margin: 0 -4rem 0 0;
  }
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel__col--last {
    order: 1;
  }
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel__col {
    flex: 1;
  }
}

.ctr-card-carousel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 0 4rem;
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel__content {
    align-items: flex-start;
    padding: 0;
  }

  .ctr-card-carousel__content.flex-start {
    align-items: flex-start;
    text-align: left;
    padding-right: 2rem;
  }

  .ctr-card-carousel__content.flex-end {
    align-items: flex-end;
    text-align: right;
    padding-left: 2rem;
  }

  .ctr-card-carousel__content.center {
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .ctr-card-carousel__content.mobile-flex-start {
    align-items: flex-start;
  }

  .ctr-card-carousel__content.mobile-flex-start * {
    text-align: left;
  }

  .ctr-card-carousel__content.mobile-flex-end {
    align-items: flex-end;
  }

  .ctr-card-carousel__content.mobile-flex-end * {
    text-align: right;
  }

  .ctr-card-carousel__content.mobile-center {
    align-items: center;
  }

  .ctr-card-carousel__content.mobile-center * {
    text-align: center;
  }
}

.ctr-card-carousel__title {
  margin: 0 0 2rem;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel__title {
    font-size: 4.8rem;
    margin: 0 0 2.7rem;
    max-width: 60rem;
  }
}

.ctr-card-carousel__paragraph {
  font-family: var(--ctr-secondary-font);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--ctr-text-color);
  max-width: 50rem;
}

@media screen and (min-width: 992px) {
  .ctr-card-carousel__paragraph {
    font-size: 1.6rem;
    max-width: 60rem;
  }
}

.ctr-card-carousel__button {
  margin: 4rem 0 0;
  min-width: 20rem;
  text-align: center !important;
}

.ctr-slideshow {
  position: relative;
  background-color: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
  padding: 6rem 0 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow {
    padding: 4rem 0 2rem;
  }
}

.ctr-slideshow br {
  display: inline;
}

.ctr-slideshow__container {
  position: relative;
}

.ctr-slideshow__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__content {
    gap: 4rem;
  }
}

.ctr-slideshow__header {
  display: flex;
  flex-direction: column;
  max-width: 36rem;
  gap: 1.6rem;
  padding: 0 1.4rem;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__header {
    max-width: 44rem;
    gap: 2rem;
  }
}

.ctr-slideshow__title {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__title {
    font-size: 5.2rem;
  }
}

.ctr-slideshow__description {
  font-family: var(--ctr-secondary-font);
  font-size: 1.2rem;
  line-height: 1.2;
  text-transform: capitalize;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__description {
    font-size: 1.4rem;
  }
}

.ctr-slideshow__tabs {
  display: flex;
  flex-direction: column;
  position: relative;
}

.ctr-slideshow__tabs-carousel-container {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tabs-carousel-container {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .ctr-slideshow__tabs-mobile-container {
    display: none;
    overflow-x: auto;
    padding: 0 0 1rem;
  }

  .ctr-slideshow__tabs-mobile-container.loading .ctr-slideshow__tab-button:before,
  .ctr-slideshow__tabs-mobile-container.loading .ctr-slideshow__tab-button:after {
    opacity: 0;
  }

  .ctr-slideshow__tabs-mobile-container.loading .ctr-slideshow__tab-button-spacer {
    opacity: 0;
  }

  .ctr-slideshow__tabs-mobile-container.loading .inverted-radius {
    opacity: 0;
  }

  .ctr-slideshow__tabs-mobile-container > .ctr-slideshow__tab-content {
    left: 0;
    position: sticky;
    display: block;
  }
}

.ctr-slideshow__tabs-header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tabs-header {
    flex-direction: column;
    position: absolute;
    top: 2.4rem;
    left: 3rem;
    gap: 1.2rem;
  }
}

@media screen and (max-width: 991px) {
  .ctr-slideshow__tabs-header > div {
    order: 2;
  }

  .ctr-slideshow__tabs-header .order-before {
    order: 2;
  }

  .ctr-slideshow__tabs-header .order-current {
    order: 1;
  }

  .ctr-slideshow__tabs-header .order-after {
    order: 3;
  }
}

.ctr-slideshow .swiper {
  width: 100%;
}

.ctr-slideshow .swiper-slide-thumb-active .ctr-slideshow__tab-button {
  background: var(--ctr-tab-button-bg-active);
  color: var(--ctr-tab-button-color-active);
}

.ctr-slideshow .swiper-slide {
  height: auto;
}

.ctr-slideshow .swiper-slide .ctr-slideshow__tab-content {
  height: 100%;
}

.ctr-slideshow .swiper-slide .ctr-slideshow__tab-content {
  position: relative;
  overflow: hidden;
}

.ctr-slideshow .swiper-slide .ctr-slideshow__tab-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  display: block;
  background: var(--ctr-bg-color);
  transform: translateY(0);
  transition: transform 0.4s ease-in;
}

.ctr-slideshow .swiper-slide .ctr-slideshow__tab-content {
  transition: opacity 0.4s ease;
}

.ctr-slideshow .swiper-slide-active .ctr-slideshow__tab-content:before {
  transition: transform 0.4s ease-in;
  transition-delay: 0.1s;
  transform: translateY(100%);
}

.ctr-slideshow__swiper-thumbs .swiper-slide-active .ctr-slideshow__tab-button {
  background: var(--ctr-tab-button-bg-active);
  color: var(--ctr-tab-button-color-active);
}

.ctr-slideshow__tab {
  display: none;
  overflow: hidden;
  position: relative;
}

.ctr-slideshow__tab.active {
  display: block;
}

.ctr-slideshow__tab-button {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ctr-tab-button-color);
  background: var(--ctr-tab-button-bg);
  border-radius: 1.5rem;
  padding: 0.8rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tab-button {
    padding: 1rem 1.8rem;
  }
}

@media screen and (hover: hover) {
  .ctr-slideshow__tab-button:hover {
    background: var(--ctr-tab-button-bg-active);
    color: var(--ctr-tab-button-color-active);
  }
}

.ctr-slideshow__tab-button.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: var(--ctr-tab-button-bg-active);
  color: var(--ctr-tab-button-color-active);
}

.ctr-slideshow__tab-button + .ctr-slideshow__tab-content {
  display: none;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tab-button + .ctr-slideshow__tab-content {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
}

.ctr-slideshow__tab-button-spacer {
  position: absolute;
  top: 100%;
  left: calc(100% - 0px);
  transform: translateX(-74%) translateY(-51%) rotate(-90deg);
  overflow: hidden;
  width: 10px;
  display: none;
  height: 15px;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tab-button-spacer {
    display: block;
    opacity: 0;
  }
}

.ctr-slideshow__tab-button.active .inverted-radius {
  opacity: 1;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tab-button.active .inverted-radius {
    transition: opacity 0.25s ease;
    transition-delay: 0.5s;
  }
}

.ctr-slideshow__tab-button.active .ctr-slideshow__tab-button-spacer {
  display: block;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tab-button.active .ctr-slideshow__tab-button-spacer {
    opacity: 1;
    transition: opacity 0.25s ease;
    transition-delay: 0.5s;
  }
}

.ctr-slideshow__tab-button.active:after {
  opacity: 0;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tab-button.active:after {
    transition: opacity 0.25s ease;
    transition-delay: 0.5s;
  }
}

.ctr-slideshow__tab-button.active:before {
  opacity: 0;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tab-button.active:before {
    transition: opacity 0.25s ease;
    transition-delay: 0.5s;
  }
}

@media screen and (max-width: 991px) {
  .ctr-slideshow__tab-button.active + .ctr-slideshow__tab-content {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tab-button.active + .ctr-slideshow__tab-content {
    max-height: 500px;
    transition: max-height 0.5s cubic-bezier(0.9, 0, 0.3, 0.9);
    transition-delay: 0.25s;
  }
}

.ctr-slideshow__tab-button:after {
  content: '';
  display: block;
  width: 4.5rem;
  height: 2rem;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-50%);
  background: var(--ctr-tab-button-bg-active);
  opacity: 0;
}

.ctr-slideshow__tab-button:before {
  content: '';
  display: block;
  width: 1rem;
  height: 4.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-50%);
  background: var(--ctr-tab-button-bg-active);
  opacity: 0;
}

.ctr-slideshow__tab-video {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 44rem;
  border-radius: 1.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tab-video {
    height: 74rem;
  }
}

.ctr-slideshow__tab-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.5rem;
}

.ctr-slideshow__tab-content {
  position: relative;
  background: var(--ctr-tab-button-bg-active);
  border-radius: 1.5rem;
}

@media screen and (max-width: 991px) {
  .ctr-slideshow__tab-content {
    max-height: 500px;
    transition: max-height 0.5s cubic-bezier(0.9, 0, 0.3, 0.9);
  }

  .ctr-slideshow__tab-content.loading {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(0.9, 0, 0.3, 0.9);
  }
}

.ctr-slideshow__tab-content-inner {
  padding: 1.8rem;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    display: block;
    border-radius: 1rem;
    border-top-left-radius: 0;
    max-width: 36rem;
  }

  .ctr-slideshow__tab-content-inner {
    padding: 1.8rem 2.5rem;
  }
}

.ctr-slideshow__tab-title {
  font-family: var(--ctr-secondary-font);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

@media screen and (min-width: 992px) {
  .ctr-slideshow__tab-title {
    font-size: 1.4rem;
  }
}

.ctr-slideshow__tab-text {
  font-size: 1.6rem;
  font-weight: 500;
  font-weight: 300;
  line-height: 1.2;
  color: #000;
}

.inverted-radius-top {
  position: absolute;
  top: 100%;
  transform: translateY(-4px);
  left: 37px;
}

.inverted-radius-bottom {
  position: absolute;
  left: 37px;
  top: 100%;
  transform: rotate(-90deg) translateX(10px);
}

.inverted-radius {
  --r: 1.5px;
  --s: 15px;
  --x: 5px;
  --y: 5px;
  width: 25px;
  aspect-ratio: 1;
  background: var(--ctr-tab-button-bg-active);
  border-radius: var(--r);
  --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 70%, #0000 72%);
  --_g: conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)), #0000 25%, #000 0);
  --_d: (var(--s) + var(--r));
  -webkit-mask: calc(100% - var(--_d) - var(--x)) 100% var(--_m), 100% calc(100% - var(--_d) - var(--y)) var(--_m),
    radial-gradient(var(--s) at 100% 100%, rgba(0, 0, 0, 0) 99%, #000 calc(100% + 1px)) calc(-1 * var(--r) - var(--x))
      calc(-1 * var(--r) - var(--y)),
    var(--_g) calc(-1 * var(--_d) - var(--x)) 0, var(--_g) 0 calc(-1 * var(--_d) - var(--y));
  mask: calc(100% - var(--_d) - var(--x)) 100% var(--_m), 100% calc(100% - var(--_d) - var(--y)) var(--_m),
    radial-gradient(var(--s) at 100% 100%, rgba(0, 0, 0, 0) 99%, #000 calc(100% + 1px)) calc(-1 * var(--r) - var(--x))
      calc(-1 * var(--r) - var(--y)),
    var(--_g) calc(-1 * var(--_d) - var(--x)) 0, var(--_g) 0 calc(-1 * var(--_d) - var(--y));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: 2;
  opacity: 0;
}

.ctr-product-preview {
  --ctr-cover-bg-color: #f1ff67;
  background-color: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile);
}

@media screen and (min-width: 992px) {
  .ctr-product-preview {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom);
    background-color: var(--ctr-bg-color);
    background-image: var(--ctr-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.ctr-product-preview__container {
  height: 100%;
}

.ctr-product-preview__cover {
  background: var(--ctr-cover-bg-color);
  border-radius: 0.8rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__cover {
    border-radius: 1.5rem;
  }
}

.ctr-product-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'image' 'info';
  align-items: center;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'image info';
    padding: 2.5rem;
  }
}

.ctr-product-preview__col {
  grid-area: info;
}

.ctr-product-preview__col--preview {
  grid-area: image;
  margin: 0 -2rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__col--preview {
    display: flex;
    justify-content: flex-end;
    margin: 0;
  }
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__col {
    flex: 1;
  }
}

.ctr-product-preview__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1rem 0 0;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__content {
    padding: 3rem 0 3rem 3rem;
  }
}

.ctr-product-preview__image-container {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .ctr-product-preview__image-container {
    -webkit-mask-image: -webkit-gradient(linear, left 90%, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
    mask-image: -webkit-gradient(linear, left 90%, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  }
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__image-container {
    width: auto;
  }
}

.ctr-product-preview__image {
  vertical-align: middle;
  border-radius: 0.8rem;
  overflow: hidden;
}

.ctr-product-preview__image.m-mobile {
  display: block;
  border-radius: 0;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__image.m-mobile {
    display: none;
  }
}

.ctr-product-preview__image.m-desktop {
  display: none;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__image.m-desktop {
    display: block;
  }
}

.ctr-product-preview__title {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__title {
    font-size: 4.6rem;
    margin: 0 0 3rem;
  }
}

@media screen and (min-width: 1400px) {
  .ctr-product-preview__title {
    font-size: 5.8rem;
    max-width: 60rem;
  }
}

.ctr-product-preview__paragraph {
  font-family: var(--ctr-secondary-font);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--ctr-text-color);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__paragraph {
    margin: 0 0 4rem;
    font-size: 1.6rem;
  }
}

.ctr-product-preview__button {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  min-width: 14.4rem;
  padding: 1.9rem 2rem;
}

.ctr-product-preview__rating {
  margin: 1rem 0;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__rating {
    margin: 0 0 2rem;
  }
}

.ctr-product-preview__rating .kl-rating-value {
  padding-right: 0.8rem;
}

.ctr-product-preview__legals {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--ctr-text-color);
  margin: 1.6rem 0 0;
}

.ctr-product-preview__bullet-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  width: 100%;
  padding: 1rem 0 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__bullet-points {
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    gap: 1rem;
  }
}

.ctr-product-preview__bullet {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding: 1rem 1rem;
  border-radius: 0.6rem;
  background: #fff;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__bullet {
    padding: 1.1rem 2rem;
    gap: 2.2rem;
  }
}

.ctr-product-preview__bullet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #82e54c;
  width: 1.8rem;
  height: 1.8rem;
}

.ctr-product-preview__bullet-icon svg {
  width: 1rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__bullet-icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .ctr-product-preview__bullet-icon svg {
    width: 1.4rem;
  }
}

.ctr-product-preview__bullet-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ctr-product-preview__bullet-label {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
}

.ctr-product-preview__bullet-description {
  font-family: var(--ctr-secondary-font);
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2;
}

@media screen and (min-width: 992px) {
  .ctr-product-preview__bullet-description {
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 992px) {
  .ctr-product-preview .klaviyo-star-rating-widget {
    text-align: left;
  }
}

.ctr-media-carousel {
  --ctr-media-carousel-height-mobile: 40rem;
  --ctr-media-carousel-height-desktop: 50rem;
  background: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
}

@media screen and (min-width: 992px) {
  .ctr-media-carousel {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
  }
}

.ctr-media-carousel__container {
  height: 100%;
}

.ctr-media-carousel__grid {
  display: grid;
  padding: 2rem 0;
  gap: 2rem;
  grid-template-columns: repeat(11, 1fr);
}

@media screen and (min-width: 992px) {
  .ctr-media-carousel__grid {
    gap: 4rem;
  }
}

.ctr-media-carousel__nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1rem 1rem 0;
  margin: 0 -2rem 0 0;
}

@media screen and (min-width: 992px) {
  .ctr-media-carousel__nav {
    overflow-x: hidden;
    flex-direction: column;
    margin: 0;
    padding: 0 0 1rem 0;
  }
}

.ctr-media-carousel__nav-item {
  list-style: none;
}

.ctr-media-carousel__nav-button {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  color: rgba(0, 0, 0, 0.5);
  padding: 1rem 1.6rem;
  text-transform: capitalize;
  border: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ctr-media-carousel__nav-button:hover {
  background: #fff;
  border-color: #fff;
}

.ctr-media-carousel__nav-button.m-active {
  background: #fff;
  border-color: #fff;
}

.ctr-media-carousel__col {
  grid-column: 1/12;
}

@media screen and (min-width: 992px) {
  .ctr-media-carousel__col {
    grid-column: 1/5;
  }
}

.ctr-media-carousel__col--preview {
  grid-column: 1/12;
}

@media screen and (min-width: 992px) {
  .ctr-media-carousel__col--preview {
    grid-column: 5/12;
  }
}

.ctr-media-carousel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 1rem;
}

@media screen and (min-width: 992px) {
  .ctr-media-carousel__content {
    gap: 3rem;
  }
}

.ctr-media-carousel__title {
  margin: 0 0 2rem;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-media-carousel__title {
    font-size: 5.2rem;
  }
}

.ctr-media-slider {
  --swiper-pagination-color: #ffffff;
  --swiper-pagination-bullet-inactive-color: #ffffff;
  --swiper-pagination-bullet-inactive-opacity: 0.4;
  --swiper-navigation-size: auto;
  --swiper-pagination-bullet-size: 20px;
  --swiper-pagination-bullet-horizontal-gap: 8px;
  padding: 0 0 6rem !important;
  width: calc(100% + 2rem);
}

@media screen and (min-width: 992px) {
  .ctr-media-slider {
    width: 100%;
    padding: 0 0 6rem !important;
  }
}

.ctr-media-slider .swiper-slide {
  height: auto !important;
}

.ctr-media-slider .non-swiper-slide {
  display: none !important;
}

.ctr-media-slider__controls {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 39rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__controls {
    justify-content: flex-start;
  }
}

.ctr-media-slider__button-prev,
.ctr-media-slider__button-next {
  position: relative;
  opacity: 0.5;
  width: auto;
  transition: all 0.25s ease;
}

.ctr-media-slider__button-prev::before,
.ctr-media-slider__button-prev::after,
.ctr-media-slider__button-next::before,
.ctr-media-slider__button-next::after {
  display: none;
}

.ctr-media-slider__button-prev svg,
.ctr-media-slider__button-next svg {
  width: 1.8rem;
}

.ctr-media-slider__button-prev:hover,
.ctr-media-slider__button-next:hover {
  opacity: 1;
}

.ctr-media-slider__button-prev.swiper-button-disabled,
.ctr-media-slider__button-next.swiper-button-disabled {
  opacity: 0;
}

.ctr-media-slider__button-prev svg {
  transform: rotate(180deg);
}

.ctr-media-slider__pagination {
  position: relative !important;
  left: 0 !important;
  transform: none !important;
}

.ctr-media-slider__pagination:not(.swiper-pagination-bullets-dynamic) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctr-media-slider__pagination .pagination-bullet-active-next-next {
  display: none;
}

.ctr-media-slider__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ctr-media-slider__item-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__item-title {
    font-size: 1.4rem;
  }
}

.ctr-media-slider__item-image {
  width: 100%;
  height: 100%;
}

.ctr-media-slider__item-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.2rem;
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__item-name {
    font-size: 1.4rem;
  }
}

.ctr-media-slider__item-separator {
  font-size: 1.1rem;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__item-separator {
    font-size: 1.4rem;
  }
}

.ctr-media-slider__item-label {
  font-family: var(--ctr-secondary-font);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__item-label {
    font-size: 1.1rem;
  }
}

.ctr-media-slider__placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__placeholder {
    border-radius: 1.5rem;
  }
}

.ctr-media-slider__placeholder .loading__spinner {
  position: relative;
  transform: none;
  top: 0;
}

.ctr-media-slider__image {
  position: relative;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  height: var(--ctr-media-carousel-height-mobile);
}

.ctr-media-slider__image img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__image {
    border-radius: 1.5rem;
    height: var(--ctr-media-carousel-height-desktop);
  }
}

.ctr-media-slider__quote {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  background: #f1ff67;
  color: #000;
  padding: 1.8rem;
  border-radius: 0.5rem;
  height: var(--ctr-media-carousel-height-mobile);
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__quote {
    padding: 1.8rem;
    border-radius: 1.5rem;
    height: var(--ctr-media-carousel-height-desktop);
  }
}

.ctr-media-slider__quote-title {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.1;
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__quote-title {
    font-size: 3.2rem;
  }
}

.ctr-media-slider__quote-text {
  font-family: var(--ctr-secondary-font);
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__quote-text {
    font-size: 1.4rem;
  }
}

.ctr-media-slider__quote-rating {
  margin-top: auto;
  font-size: 1.4rem;
  font-weight: 700;
}

.ctr-media-slider__video {
  width: 100%;
  position: relative;
  height: var(--ctr-media-carousel-height-mobile);
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__video {
    height: var(--ctr-media-carousel-height-desktop);
  }
}

.ctr-media-slider__video-player {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .ctr-media-slider__video-player {
    border-radius: 1.5rem;
  }
}

.ctr-media-slider__video-play {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

.ctr-media-slider__video-play.m-transparent {
  opacity: 0.5;
}

.ctr-media-slider__video-play.m-transparent .video-play-icon {
  display: none;
}

.ctr-media-slider__video-play.m-transparent .video-pause-icon {
  display: block;
}

.ctr-media-slider__video-play svg {
  width: 2.5rem;
  height: 2.5rem;
}

.ctr-media-slider__video-play .video-play-icon {
  display: block;
}

.ctr-media-slider__video-play .video-play-icon svg {
  transform: translateX(0.3rem);
}

.ctr-media-slider__video-play .video-pause-icon {
  display: none;
}

.ctr-media-slider__video-play .video-pause-icon svg {
  width: 3rem;
  height: 3rem;
}

.ctr-icon-banner {
  padding: var(--ctr-padding-y) 0 var(--ctr-padding-y);
  background: var(--ctr-bg-color);
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-icon-banner {
    padding: var(--ctr-padding-y-desktop) 0 var(--ctr-padding-y-desktop);
  }
}

.ctr-icon-banner__grid {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 2rem;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  flex-wrap: wrap;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-icon-banner__grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

.ctr-icon-banner__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 0 calc(50% - 1rem);
}

@media screen and (min-width: 992px) {
  .ctr-icon-banner__item {
    flex: 0 1 auto;
  }
}

.ctr-icon-banner__item-image {
  transform: translateY(-0.05em);
}

.ctr-icon-banner__item-title {
  font-size: var(--ctr-font-size);
  line-height: 1.2;
  font-weight: var(--ctr-font-weight);
}

.ctr-product-box {
  --ctr-bg-color: #ffffff;
  --ctr-text-color: #000000;
  --ctr-default-color: #e8e8e8;
  --ctr-active-color: #f1ff67;
  --ctr-button-color: #000000;
  --ctr-button-text-color: #ffffff;
  --ctr-features-columns: 5;
  --ctr-product-box-items-gap-mobile: 1rem;
  --ctr-product-box-items-gap-desktop: 0.8rem;
  --ctr-border-radius: 1rem;
  font-family: var(--ctr-primary-font);
  background: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile);
}

@media screen and (min-width: 992px) {
  .ctr-product-box {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom);
  }
}

.ctr-product-box__rating {
  order: -1;
  margin: 0 0 1rem !important;
  zoom: 0.8;
}

@media screen and (min-width: 576px) {
  .ctr-product-box__rating {
    zoom: 1;
  }
}

@media screen and (min-width: 992px) {
  .ctr-product-box__rating {
    order: unset;
    margin: 0;
  }
}

.ctr-product-box__rating.klaviyo-star-rating-widget {
  margin: 0;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__rating.klaviyo-star-rating-widget {
    margin: 1rem 0 0 !important;
  }
}

.ctr-product-box__rating .kl-reviews-text {
  color: var(--ctr-text-color);
}

.ctr-product-box__rating .kl_reviews__stars_badge {
  order: 0;
  margin: 0 0.5rem;
}

.ctr-product-box__rating .kl-rating-value {
  color: var(--ctr-text-color);
  margin-left: 0;
  margin-right: 0;
}

.ctr-product-box__rating .kl-rating-value::after {
  display: none;
}

.ctr-product-box__title {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.1;
  margin: 0 0 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__title {
    font-size: 2.65rem;
    margin: 4rem 0 2rem;
  }
}

.ctr-product-box__subtitle {
  font-family: var(--ctr-secondary-font);
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__subtitle {
    font-size: 1.44rem;
  }
}

.ctr-product-box__note {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1.5rem 0 0;
}

.ctr-product-box__note-text * {
  font-family: var(--ctr-primary-font);
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__note-text * {
    font-size: 1.6rem;
  }
}

.ctr-product-box__price {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  gap: 0.6rem;
}

.ctr-product-box__price-old {
  text-decoration: line-through;
  color: #a9a9a9;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__price {
    font-size: 1.6rem;
    gap: 0.8rem;
  }
}

.ctr-product-box__button {
  width: 100%;
  font-size: 1.6rem;
  color: var(--ctr-button-text-color);
  background-color: var(--ctr-button-color);
  padding: 2.4rem 1rem;
  text-transform: uppercase;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__button {
    font-size: 1.4rem;
    padding: 1.9rem 1rem;
  }
}

.ctr-product-box__details {
  margin: 3rem 0 0;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__details {
    margin: 3rem 0 0;
  }
}

.ctr-product-box__gallery {
  position: relative;
  display: grid;
  grid-template-areas: 'main';
  grid-template-columns: minmax(0, auto);
  overflow: hidden;
  margin: 0 -2rem;
  width: auto;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__gallery {
    width: 100%;
    margin: 0;
  }
}

.ctr-product-box__row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__row {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }
}

.ctr-product-box__col {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__col {
    flex: 1 0 calc(50% - 1.5rem);
    width: calc(50% - 1.5rem);
    max-width: 52rem;
  }
}

.ctr-product-box__col.m-gallery-col {
  order: -1;
}

.ctr-product-box__sticky-container {
  position: sticky;
  top: 8rem;
  z-index: 1;
}

.ctr-product-box__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(var(--ctr-features-columns), minmax(5rem, 12rem));
  justify-content: center;
  gap: 0.4rem;
  margin: 2rem auto 0;
}

.ctr-product-box__features.m-mobile-hidden {
  display: none;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__features.m-mobile-hidden {
    gap: 0.5rem;
    display: grid;
    padding: 0 2rem;
  }
}

.ctr-product-box__features.m-desktop-hidden {
  display: grid;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__features.m-desktop-hidden {
    display: none;
  }
}

.ctr-product-box__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--ctr-text-color);
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 700;
  padding: 0.5rem 0.2rem;
  border-radius: var(--ctr-border-radius);
  aspect-ratio: 1;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__feature {
    padding: 0.5rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1400px) {
  .ctr-product-box__feature {
    font-size: 1rem;
  }
}

.ctr-product-box__feature-image {
  width: 3rem;
  height: 3rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-box__feature-image {
    width: 4rem;
    height: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  .ctr-product-box__feature-image {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.ctr-product-box .ctr-gallery {
  border-radius: 0;
}

@media screen and (min-width: 992px) {
  .ctr-product-box .ctr-gallery {
    border-radius: var(--ctr-border-radius);
  }
}

.ctr-product-box .ctr-gallery__wrapper {
  opacity: 0;
  grid-area: main;
}

.ctr-product-box .ctr-gallery__wrapper.m-active {
  z-index: 2;
  opacity: 1;
}

.ctr-product-box .ctr-gallery__container {
  height: auto;
  padding-top: var(--vert-6);
  align-self: flex-start;
  position: relative;
  aspect-ratio: 1;
  background-color: var(--grey-1);
}

.ctr-product-box .ctr-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  aspect-ratio: 1;
  background-color: var(--grey-1);
  max-height: 740px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (min-width: 992px) {
  .ctr-product-box .ctr-gallery__pagination {
    display: none;
  }
}

.ctr-product-box .ctr-gallery__buttons {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 100%;
}

.ctr-product-box .ctr-gallery__dots {
  position: absolute;
  left: 50%;
  bottom: var(--horiz-3);
  translate: -50%;
  display: flex;
  gap: var(--horiz-2);
}

.ctr-product-box .ctr-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--white);
  cursor: pointer;
}

.ctr-product-box .ctr-gallery__dot--selected {
  background-color: var(--black);
}

.ctr-product-box .ctr-gallery .swiper__button-container {
  --swiper-navigation-color: #a6a6a6;
  --swiper-navigation-size: 1.2rem;
  --swiper-pagination-color: #000000;
  --swiper-pagination-bullet-inactive-color: #ffffff;
  --swiper-pagination-bullet-inactive-opacity: 0.8;
  --swiper-pagination-bottom: 0.6rem;
  --swiper-navigation-sides-offset: 1.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-product-box .ctr-gallery .swiper__button-container {
    --swiper-navigation-size: 1.6rem;
  }
}

.ctr-product-box .ctr-gallery .swiper__button-container .swiper-button-next,
.ctr-product-box .ctr-gallery .swiper__button-container .swiper-button-prev {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #ebebeb;
}

.ctr-product-box .ctr-gallery .swiper__button-container .swiper-button-next:after,
.ctr-product-box .ctr-gallery .swiper__button-container .swiper-button-prev:after {
  color: #000;
}

.ctr-product-box .ctr-gallery .swiper__button-container .swiper-button-next svg,
.ctr-product-box .ctr-gallery .swiper__button-container .swiper-button-prev svg {
  display: none;
}

@media screen and (min-width: 992px) {
  .ctr-product-box .ctr-gallery .swiper__button-container .swiper-button-next,
  .ctr-product-box .ctr-gallery .swiper__button-container .swiper-button-prev {
    width: 3.8rem;
    height: 3.8rem;
  }
}

.ctr-product-box .ctr-gallery .swiper__button-container .swiper-button-next:after {
  transform: translateX(1px);
}

.ctr-product-box .ctr-gallery .swiper__button-container .swiper-button-prev:before {
  transform: translateX(-1px);
}

.ctr-product-box .ctr-gallery-thumbs {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: none;
  position: relative;
  margin: 1rem 1rem 0;
}

@media screen and (min-width: 992px) {
  .ctr-product-box .ctr-gallery-thumbs {
    display: block;
    margin: 1rem 0 0;
  }
}

.ctr-product-box .ctr-gallery-thumbs.m-visible {
  display: block;
}

.ctr-product-box .ctr-gallery-thumbs__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  cursor: pointer;
  aspect-ratio: 1;
}

.ctr-product-box .ctr-gallery-thumbs .swiper-slide {
  border-radius: var(--ctr-border-radius);
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0);
}

.ctr-product-box .ctr-gallery-thumbs .swiper-slide-thumb-active {
  border-color: #000;
}

.ctr-dynamic-shipping-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 2rem 0 0;
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .ctr-dynamic-shipping-info {
    gap: 1.5rem;
    font-size: 1.6rem;
  }
}

.ctr-dynamic-shipping-info__item.m-hidden {
  display: none;
}

.ctr-dynamic-shipping-info__text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ctr-dynamic-shipping-info__text svg {
  width: 1.6rem;
  height: 1.6rem;
}

@media screen and (min-width: 768px) {
  .ctr-dynamic-shipping-info__text {
    gap: 0.5rem;
  }

  .ctr-dynamic-shipping-info__text svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}

body.overflow-hidden {
  overflow: hidden;
}

.position-custom-titles-product-cart-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  gap: 5px;
}

.position-custom-titles-product-cart {
  display: flex;
  flex-direction: column;
}

.shipping-bar__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shipping-bar__text {
  font-family: riforma;
  font-size: 12px;
  text-transform: uppercase;
}

.shipping-bar__text strong {
  font-weight: bold;
}

.shipping-bar__progress {
  position: relative;
  display: block;
  height: 7px;
  width: 100%;
  max-width: 500px;
  border-radius: 7px;
  border: 1px solid var(--black);
  overflow: hidden;
  background-color: var(--slate);
}

.shipping-bar__progress::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--purple);
  border-radius: 7px;
  transition: all 1s cubic-bezier(0, 0, 0.09, 0.97);
  transform: translate(calc(-100% * (1 - var(--progress))));
}

.discounts__discount {
  display: flex;
  gap: 5px;
  font-size: 12px;
  font-family: 'riforma';
  align-items: center;
}

.icon-discount {
  width: 14px;
}

.quantity {
  display: flex;
  align-items: center;
}

.quantity__button {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, #333 0px 0px 0px 1px;
  border-radius: 6px;
  min-height: 20px;
  cursor: pointer;
}

.quantity__button:not(.disabled):hover {
  background-color: var(--yellow);
}

.quantity__button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity__button svg {
  width: 1rem;
  pointer-events: none;
}

.quantity__input {
  font-family: riforma;
  font-size: 14px;
  -moz-appearance: textfield;
  text-align: center;
  width: 40px;
  pointer-events: none;
}

.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.subscribe-and-save {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2px 0;
}

.subscribe-and-save .subscription-box {
  min-width: 100%;
  flex-shrink: 0;
}

.subscribe-and-save .subscription-box.is-visible {
  margin-top: 5px;
}

.subscribe-and-save input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: var(--purple);
  margin-right: 5px;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--black);
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
  display: none;
}

.subscribe-and-save input[type='checkbox']:checked {
  background-color: var(--purple);
  border: 1px solid var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.subscribe-and-save label {
  font-size: 11px;
  cursor: pointer;
  background-color: #000;
  color: var(--yellow);
  padding: 10px 10px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 10px;
}

.drawer-font-custom-cart {
  padding: 20px 10px;
}

.subscribe-and-save.active label {
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0px;
  color: #9b9b9b;
  display: none;
  justify-content: flex-start;
}

.subscription-box:not(.is-visible) {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.subscribe-and-save input:checked ~ .subscription-box.is-visible {
  max-height: 1000px;
  transition: max-height 1s ease-in-out;
  overflow: unset;
}

.rtx-subscription-dropdown {
  font-family: riforma;
  font-size: 10px;
  padding: 10px;
  text-transform: uppercase;
  border: 1px solid var(--black);
  border-radius: 6px;
  background-color: #fff;
  color: var(--black);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.CartDrawer-recommended-products {
  margin-top: auto;
}

.drawer__bundle-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 10px 15px;
}

.drawer__bundle-bar-button {
  font-family: riforma;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  background-color: var(--purple);
  color: var(--black);
  cursor: pointer;
}

.drawer__bundle-bar-text {
  font-family: riforma;
  font-size: 12px;
  text-transform: uppercase;
}

.ctr-cart {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  transition: visibility 0.2s ease-in;
}

.ctr-cart.active {
  -webkit-backdrop-filter: opacity(1) blur(8px);
  backdrop-filter: opacity(1) blur(8px);
  visibility: visible;
}

.ctr-cart.active .ctr-cart-drawer__content {
  transform: translateX(0);
}

.ctr-cart .ctr-cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ctr-cart .ctr-cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  height: 100%;
  text-align: center;
}

.ctr-cart .ctr-cart-drawer__content {
  height: 100%;
  width: 42.2rem;
  box-shadow: rgba(180, 180, 180, 0.16) 0px 1px 4px, rgba(180, 180, 180, 0.1) 0px 0px 0px 1px;
  background: #fff;
  border-right: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(calc(100% + 1rem));
  transition: transform 0.25s ease;
}

@media screen and (max-width: 768px) {
  .ctr-cart .ctr-cart-drawer__content {
    width: 100vw;
  }
}

.ctr-cart .ctr-cart-drawer__header {
  border-bottom: 1px solid #b4b4b4;
}

.ctr-cart .ctr-cart-drawer__header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.8rem;
}

.ctr-cart .ctr-cart-drawer__title {
  font-family: var(--ctr-primary-font);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
}

.ctr-cart .ctr-cart-drawer__close {
  cursor: pointer;
}

.ctr-cart .ctr-cart-drawer__close-icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}

.ctr-cart .ctr-cart-drawer__close-icon svg {
  width: 100%;
  height: 100%;
}

.ctr-cart .ctr-cart-drawer__items:not(.is-empty) {
  overflow: auto;
  padding: 0 1.8rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ctr-cart .ctr-cart-drawer__items [data-name*='2 Count'] {
  pointer-events: none;
}

.ctr-cart .ctr-cart-drawer__items .line-item:first-child:not(.drawer__recommended-products-item) {
  border-top: none;
}

.ctr-cart .ctr-cart-drawer__footer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 1.5rem;
  margin-top: auto;
  border-top: 1px solid #b4b4b4;
}

.ctr-cart .ctr-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  font-size: 2.2rem;
  margin-top: 1.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-cart .ctr-cart-drawer__subtotal {
    font-size: 2.4rem;
  }
}

.ctr-cart .ctr-cart-drawer__subtotal-title {
  font-weight: 700;
}

.ctr-cart .ctr-cart-drawer__subtotal-count {
  font-weight: 400;
}

.ctr-cart .ctr-cart-drawer__subtotal-price {
  font-size: 2.2rem;
  font-weight: 700;
}

.ctr-cart .ctr-cart-drawer__subtotal-price--old {
  color: #d3d3d3;
  text-decoration: line-through;
}

.ctr-cart .ctr-cart-drawer__button {
  font-size: 1.6rem;
  padding: 1.8rem 2rem;
  font-weight: 700;
  width: 100%;
}

.ctr-cart .ctr-line-item {
  --line-item-media-width: 90px;
  align-items: flex-start;
  display: flex;
  position: relative;
  padding-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #b4b4b4;
}

.ctr-cart .ctr-line-item__title {
  font-size: 1.8rem;
  font-weight: 700;
}

.ctr-cart .ctr-line-item__subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.ctr-cart .ctr-line-item__image {
  max-width: var(--line-item-media-width);
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: var(--line-item-media-width);
  margin-right: 15px;
}

.ctr-cart .ctr-line-item__media {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.ctr-cart .ctr-line-item__info {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.ctr-cart .ctr-line-item__secondary-information {
  font-size: 12px;
  color: var(--grey-2);
}

.ctr-cart .ctr-line-item__price {
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ctr-cart .ctr-line-item__price s {
  color: #d3d3d3;
  text-decoration: line-through;
}

.ctr-cart .ctr-line-item__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.ctr-cart .ctr-line-item cart-remove-button {
  font-size: 0;
  line-height: 1;
}

.ctr-cart .ctr-line-item__remove {
  font-size: 1.2rem;
  font-weight: 700;
  color: #bfbfbf;
  cursor: pointer;
}

.ctr-cart .ctr-line-item__remove:hover {
  text-decoration: underline;
}

.ctr-cart .ctr-line-item .subscribe-and-save label {
  text-transform: none;
  color: #fff;
}

.ctr-cart .ctr-line-item .subscribe-and-save label:hover {
  background: #f1ff67;
  color: #000;
}

.ctr-cart .ctr-recommendations {
  padding: 1rem 0;
  background: #ebebeb;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.ctr-cart .ctr-recommendations__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.7rem;
}

.ctr-cart .ctr-recommendations__header h2 {
  font-weight: 700;
}

.ctr-cart .ctr-recommendations__header p {
  font-size: 1.2rem;
  font-weight: 500;
}

.ctr-cart .ctr-recommendations__price {
  display: flex;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.ctr-cart .ctr-recommendations__price .ctr-recommendations__price-old {
  color: #d3d3d3;
  text-decoration: line-through;
}

.ctr-cart .ctr-recommendations__price .ctr-recommendations__price-new {
  font-weight: 700;
}

.ctr-cart .ctr-recommendations s {
  color: #d3d3d3;
  text-decoration: line-through;
}

.ctr-cart .ctr-recommendations__products {
  display: flex;
  margin-top: 0.5rem;
  margin-right: -1.5rem;
  max-height: 28.4rem;
  overflow: scroll;
  margin-left: -1.5rem;
  padding-left: 1.5rem;
}

.ctr-cart .ctr-recommendations__products-list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  padding-right: 15px;
}

.ctr-cart .ctr-recommendations-item {
  --line-item-media-width: 5.5rem;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem;
  margin: 0 -0.8rem;
  width: calc(100% + 1.6rem);
  display: flex;
  position: relative;
}

.ctr-cart .ctr-recommendations-item:hover {
  background: rgba(255, 255, 255, 0.6980392157);
}

.ctr-cart .ctr-recommendations-item__button {
  font-size: 1rem;
  border-radius: 0.6rem;
  padding: 0.9rem 0.8rem;
  font-weight: 700;
  min-width: 9rem;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

.ctr-cart .ctr-recommendations-item__button[disabled] {
  display: none;
}

.ctr-cart .ctr-recommendations-item__image-wrapper {
  max-width: var(--line-item-media-width);
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: var(--line-item-media-width);
  margin-right: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.ctr-cart .ctr-recommendations-item__image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.ctr-cart .ctr-recommendations-item__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.ctr-cart .ctr-recommendations-item__subtitle {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.5;
  line-height: 1.2;
}

.ctr-cart .ctr-recommendations-item__info {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 20px;
  gap: 5px;
}

.ctr-cart .ctr-progress-bar {
  font-family: var(--ctr-primary-font);
  padding: 1.8rem;
}

.ctr-cart .ctr-progress-bar__text {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  padding: 0.9rem 1rem;
  background: #f1ff67;
  color: #000;
  border-radius: 0.5rem;
}

.ctr-cart .ctr-progress-bar__text strong {
  font-weight: 500;
}

.ctr-flavor-showcase {
  --ctr-text-align-mobile: left;
  --ctr-text-align-desktop: center;
  --ctr-header-margin-mobile: 0;
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
  background-color: var(--ctr-bg-color);
}

@media screen and (min-width: 992px) {
  .ctr-flavor-showcase {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
  }
}

.ctr-flavor-showcase__header {
  text-align: var(--ctr-text-align-mobile);
  margin-bottom: 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-showcase__header {
    text-align: var(--ctr-text-align-desktop);
    max-width: unset;
    margin-bottom: 6rem;
  }
}

.ctr-flavor-showcase__rating {
  display: flex;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-showcase__rating {
    justify-content: center;
  }
}

.ctr-flavor-showcase__title {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-flavor-showcase__title {
    font-size: 4.8rem;
    margin: 0 0 2.7rem;
  }
}

.ctr-flavor-showcase__description {
  font-family: var(--ctr-secondary-font);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--ctr-text-color);
  text-transform: var(--ctr-text-transform);
}

@media screen and (min-width: 992px) {
  .ctr-flavor-showcase__description {
    font-size: 2rem;
  }
}

.ctr-flavor-showcase__usp-callout-wrapper {
  margin-top: 1.6rem;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-showcase__usp-callout-wrapper {
    margin-top: 2.4rem;
  }
}

.ctr-flavor-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  row-gap: 3rem;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-showcase__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.ctr-flavor-showcase .ctr-button,
.ctr-flavor-showcase #klaviyo-reviews-all .kl_reviews__button,
#klaviyo-reviews-all .ctr-flavor-showcase .kl_reviews__button {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-showcase .ctr-button,
  .ctr-flavor-showcase #klaviyo-reviews-all .kl_reviews__button,
  #klaviyo-reviews-all .ctr-flavor-showcase .kl_reviews__button {
    width: auto;
    min-width: 20rem;
  }
}

.ctr-flavor-showcase .ctr-product-card__title,
.ctr-flavor-showcase .ctr-product-card__description {
  text-align: center;
}

.ctr-flavor-showcase .ctr-product-card__top {
  aspect-ratio: 1;
}

.ctr-flavor-showcase .ctr-product-card__badge {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  right: 0.8rem;
  left: unset;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-showcase .ctr-product-card__badge {
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }
}

.ctr-community {
  background: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
}

@media screen and (min-width: 992px) {
  .ctr-community {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
  }
}

.ctr-community__container {
  padding: 0 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-community__container {
    padding: 0;
    padding-left: 2rem;
    margin-right: 0rem;
    max-width: unset;
    margin-left: max(0px, (100% - var(--ctr-container-normal-width) - 5em)/2);
  }
}

@media screen and (min-width: 1801px) {
  .ctr-community__container {
    max-width: var(--ctr-container-normal-width);
    padding-right: 2rem;
    margin-right: auto;
  }
}

.ctr-community__header {
  text-align: var(--ctr-text-align-mobile);
  margin: var(--ctr-header-margin-mobile);
}

@media screen and (min-width: 992px) {
  .ctr-community__header {
    text-align: var(--ctr-text-align-desktop);
    max-width: 52rem;
    margin: 0;
  }
}

.ctr-community__title {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-community__title {
    font-size: 4rem;
    margin: 0 0 2rem;
  }
}

.ctr-community__description {
  font-family: var(--ctr-secondary-font);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ctr-text-color);
  text-transform: var(--ctr-text-transform);
  letter-spacing: 0.16em;
  margin-bottom: 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-community__description {
    font-size: 1.6rem;
  }
}

.ctr-community__content {
  margin-left: -2rem;
}

@media screen and (min-width: 992px) {
  .ctr-community__content {
    margin-left: 0;
  }
}

.ctr-community__cta {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 400;
  background-color: var(--ctr-cta-bg-color);
  color: var(--ctr-cta-text-color);
  border-color: var(--ctr-cta-bg-color);
  min-width: 13.4rem;
}

.ctr-community__cta:hover {
  background-color: var(--ctr-cta-hover-bg-color);
  color: var(--ctr-cta-hover-text-color);
  border-color: var(--ctr-cta-hover-bg-color);
}

@media screen and (min-width: 992px) {
  .ctr-community__cta {
    min-width: 21.4rem;
    padding: 1.8rem 2rem;
    font-size: 1.5rem;
  }
}

.ctr-community__container {
  height: 100%;
}

.ctr-community__grid {
  display: grid;
  padding: 2rem 0;
  gap: 2rem;
  grid-template-columns: repeat(11, 1fr);
}

@media screen and (min-width: 992px) {
  .ctr-community__grid {
    gap: 4rem;
  }
}

.ctr-community__slider {
  --swiper-pagination-color: var(--ctr-text-color);
  --swiper-pagination-bullet-inactive-color: var(--ctr-text-color);
  --swiper-pagination-bullet-inactive-opacity: 0.4;
  --swiper-navigation-size: auto;
  --swiper-pagination-bullet-size: 20px;
  --swiper-pagination-bullet-horizontal-gap: 8px;
  padding: 0 0 6rem !important;
  width: calc(100% + 2rem);
}

@media screen and (min-width: 992px) {
  .ctr-community__slider {
    width: 100%;
    padding: 0 0 6rem !important;
  }
}

.ctr-community__slider-item {
  position: relative;
}

.ctr-community__slider-item-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  border-radius: 1.5rem;
  background: var(--ctr-bg-color);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-community__slider-item-content {
    padding: 1.2rem 1.5rem;
  }
}

.ctr-community__slider-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-community__slider-item-title {
    font-size: 1.8rem;
  }
}

.ctr-community__slider-item-text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ctr-text-color);
  font-family: var(--ctr-secondary-font);
}

@media screen and (min-width: 992px) {
  .ctr-community__slider-item-text {
    font-size: 1.5rem;
  }
}

.ctr-community__slider .swiper-slide {
  height: auto !important;
}

.ctr-community__slider .non-swiper-slide {
  display: none !important;
}

.ctr-community__slider__controls {
  position: absolute;
  bottom: -6px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-community__slider__controls {
    justify-content: flex-start;
  }
}

.ctr-community__slider__button-prev,
.ctr-community__slider__button-next {
  position: relative;
  opacity: 1;
  transform: translateY(-4px);
  width: auto;
}

.ctr-community__slider__button-prev::before,
.ctr-community__slider__button-prev::after,
.ctr-community__slider__button-next::before,
.ctr-community__slider__button-next::after {
  display: none;
}

.ctr-community__slider__button-prev svg,
.ctr-community__slider__button-next svg {
  width: 1.8rem;
}

.ctr-community__slider__button-prev:hover,
.ctr-community__slider__button-next:hover {
  opacity: 1;
}

.ctr-community__slider__button-prev svg {
  transform: rotate(180deg);
}

.ctr-community__slider__pagination {
  position: relative;
  width: auto !important;
}

.ctr-footer {
  --ctr-bg-color: #f4ff72;
  --ctr-text-color: #000000;
  --ctr-footer-grid-columns: 4;
  background: var(--ctr-bg-color);
  padding: 2rem 0 0;
}

@media screen and (min-width: 768px) {
  .ctr-footer {
    padding: 4rem 0 0;
  }
}

.ctr-footer__logo {
  display: block;
  width: 100%;
  margin: 0 0 4rem;
}

@media screen and (min-width: 992px) {
  .ctr-footer__logo {
    margin: 0 0 6rem;
  }
}

.ctr-footer__grid {
  display: grid;
  grid-template-columns: min-content 1fr;
}

@media screen and (min-width: 768px) {
  .ctr-footer__grid {
    gap: 4rem;
    grid-template-columns: repeat(var(--ctr-footer-grid-columns), 1fr);
  }
}

.ctr-footer__grid-item {
  display: contents;
}

@media screen and (min-width: 768px) {
  .ctr-footer__grid-item {
    display: flex;
    gap: 3rem;
  }
}

@media screen and (min-width: 992px) {
  .ctr-footer__grid-item {
    gap: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  .ctr-footer__grid-item {
    gap: 5rem;
  }
}

.ctr-footer__grid-title {
  position: relative;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ctr-text-color);
  padding: 1.7rem 0 3rem;
}

@media screen and (min-width: 768px) {
  .ctr-footer__grid-title {
    margin: 0;
    padding: 0.2rem 0;
  }

  .ctr-footer__grid-title:before {
    display: none;
  }
}

.ctr-footer__grid-title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--ctr-text-color);
}

.ctr-footer__grid-list {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 1.5rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

@media screen and (min-width: 768px) {
  .ctr-footer__grid-list {
    margin: 0;
    padding: 0;
  }

  .ctr-footer__grid-list:before {
    display: none;
  }
}

.ctr-footer__grid-list:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--ctr-text-color);
}

.ctr-footer__grid-list-link {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ctr-text-color);
  border-radius: 0.5rem;
  padding: 0.2rem 0.8rem;
  background-color: var(--ctr-bg-color);
  transition: all 0.25s ease;
}

.ctr-footer__grid-list-link:hover {
  background-color: var(--ctr-text-color);
  color: var(--ctr-bg-color);
}

.ctr-footer__grid-item-email {
  grid-column: 2;
  margin: -2rem 0 0 3.7rem;
}

@media screen and (min-width: 768px) {
  .ctr-footer__grid-item-email {
    width: 100%;
    margin: 0;
  }
}

.ctr-footer__grid-item-link {
  width: 100%;
  border-radius: 0.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ctr-text-color);
  background-color: var(--ctr-text-color);
  color: var(--ctr-bg-color);
  transition: all 0.25s ease;
}

.ctr-footer__grid-item-link:hover {
  background-color: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  border-color: var(--ctr-text-color);
}

.ctr-footer__copyright {
  font-family: var(--ctr-secondary-font);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6rem 0 2rem;
  gap: 0.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-footer__copyright {
    justify-content: flex-end;
    margin: 2rem 0 2rem;
  }
}

.ctr-footer__copyright-text {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 768px) {
  .ctr-footer__copyright-text {
    font-size: 1.4rem;
  }
}

.ctr-animated-values {
  --ctr-label-bg-color: #f1ff67;
  --ctr-label-text-color: #000000;
  --ctr-bg-color: #000000;
  --ctr-text-color: #ffffff;
  --ctr-padding-top-mobile: 0;
  --ctr-padding-bottom-mobile: 0;
  --ctr-padding-top: 0;
  --ctr-padding-bottom: 0;
  --ctr-bg-position-mobile: center;
  --ctr-bg-position: center;
  --ctr-bg-attachment-mobile: fixed;
  --ctr-bg-attachment: fixed;
  --ctr-bg-size-mobile: cover;
  --ctr-bg-size: cover;
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
  background-color: var(--ctr-bg-color);
  background-image: var(--ctr-bg-image-mobile);
  background-attachment: var(--ctr-bg-attachment-mobile);
  background-position: var(--ctr-bg-position-mobile);
  background-repeat: no-repeat;
  background-size: var(--ctr-bg-size-mobile);
}

@media screen and (min-width: 992px) {
  .ctr-animated-values {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
    background-image: var(--ctr-bg-image);
    background-attachment: var(--ctr-bg-attachment);
    background-position: var(--ctr-bg-position);
    background-size: var(--ctr-bg-size);
  }
}

.ctr-animated-values__title {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
  margin: 0 0 4rem;
}

@media screen and (min-width: 992px) {
  .ctr-animated-values__title {
    text-align: center;
    font-size: 4.8rem;
    margin: 0 0 8rem;
  }
}

.ctr-animated-values__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media screen and (min-width: 992px) {
  .ctr-animated-values__list {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;
  }
}

.ctr-animated-values__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 25rem;
  gap: 0.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-animated-values__item {
    align-items: center;
    max-width: 25rem;
    gap: 2rem;
  }
}

.ctr-animated-values__item-label {
  display: inline-block;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--ctr-label-text-color);
  background-color: var(--ctr-label-bg-color);
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  font-family: var(--ctr-secondary-font);
  text-transform: uppercase;
}

@media screen and (min-width: 992px) {
  .ctr-animated-values__item-label {
    font-size: 1.5rem;
    letter-spacing: 0.16em;
  }
}

.ctr-animated-values__item-number-wrapper {
  display: flex;
  align-items: center;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-animated-values__item-number-wrapper {
    font-size: 12rem;
  }
}

.ctr-animated-values__item-description {
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--ctr-text-color);
}

.ctr-image-with-accordion {
  --ctr-bg-color: #f1ff67;
  --ctr-text-color: #000000;
  --ctr-padding-top-mobile: 0;
  --ctr-padding-bottom-mobile: 0;
  --ctr-padding-top: 0;
  --ctr-padding-bottom: 0;
  background: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-secondary-font);
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-accordion {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
  }
}

.ctr-image-with-accordion__container {
  height: 100%;
}

.ctr-image-with-accordion__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'image' 'info';
  gap: 4rem;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-accordion__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'info image';
  }
}

.ctr-image-with-accordion__col {
  grid-area: info;
}

.ctr-image-with-accordion__col--preview {
  grid-area: image;
  padding: 0;
  margin: 0;
  height: 100%;
  margin: 0 calc(-1 * var(--ctr-container-padding));
  position: relative;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-accordion__col--preview {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.ctr-image-with-accordion__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 3rem 0;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-accordion__content {
    padding: 0;
  }
}

.ctr-image-with-accordion__image-container {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-accordion__image-container {
    width: auto;
  }
}

.ctr-image-with-accordion__image {
  vertical-align: middle;
  border-radius: var(--ctr-image-border-radius);
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-accordion__image {
    position: relative;
    top: 1rem;
    width: 100%;
    height: 53rem;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 1;
    aspect-ratio: unset;
    border-radius: 1.5rem;
  }
}

.ctr-image-with-accordion__loading {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  height: 53rem;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
}

.ctr-image-with-accordion__loading .loading__spinner {
  position: absolute;
  z-index: 1;
  width: 1.8rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 992px) {
  .ctr-image-with-accordion__loading {
    display: flex;
  }
}

.ctr-image-with-accordion__title {
  margin: 0 0 4rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
}

@media screen and (min-width: 992px) {
  .ctr-image-with-accordion__title {
    font-size: 4.8rem;
    margin: 0 0 7.2rem 2rem;
    max-width: 60rem;
  }
}

.ctr-image-with-accordion__paragraph {
  font-family: var(--ctr-secondary-font);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--ctr-text-color);
  text-transform: var(--ctr-text-transform);
  max-width: 50rem;
}

@media screen and (min-width: 992px) {
  .ctr-image-with-accordion__paragraph {
    font-size: 1.6rem;
    max-width: 60rem;
  }
}

.ctr-image-with-accordion__button {
  margin: 4rem 0 0;
  min-width: 14.4rem;
  text-align: center !important;
}

.ctr-image-with-accordion__badges {
  margin-top: 4rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  overflow-x: auto;
}

.ctr-image-with-accordion__badges-container {
  overflow-x: auto;
}

.ctr-image-with-accordion__badge {
  min-width: 0;
  flex: 1 0 auto;
}

.ctr-image-with-accordion br {
  display: inline-block;
}

.ctr-compare-brands {
  --ctr-bg-color: #000000;
  --ctr-text-color: #ffffff;
  --ctr-padding-top-mobile: 0;
  --ctr-padding-bottom-mobile: 0;
  --ctr-padding-top: 0;
  --ctr-padding-bottom: 0;
  overflow: hidden;
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
  background-color: var(--ctr-bg-color);
}

@media screen and (min-width: 992px) {
  .ctr-compare-brands {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
  }
}

.ctr-compare-brands__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

@media screen and (min-width: 768px) {
  .ctr-compare-brands__wrapper {
    gap: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .ctr-compare-brands__wrapper {
    flex-direction: row;
    gap: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  .ctr-compare-brands__wrapper {
    gap: 8rem;
  }
}

.ctr-compare-brands__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.ctr-compare-brands__content {
  flex: 1;
}

.ctr-compare-brands__title {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
  margin: 0 0 4rem;
}

@media screen and (min-width: 992px) {
  .ctr-compare-brands__title {
    font-size: 4.8rem;
    margin: 0 0 8rem;
  }
}

.ctr-compare-brands__cta {
  min-width: 20rem;
}

.ctr-compare-brands__items {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px solid var(--ctr-text-color);
  padding: 2rem 0;
}

.ctr-compare-brands__decoration-line {
  position: absolute;
  top: 0;
  left: 25%;
  width: 1px;
  height: 100%;
  background-color: var(--ctr-text-color);
  opacity: 0.2;
}

.ctr-compare-brands__decoration-line:nth-of-type(2) {
  left: 50%;
}

.ctr-compare-brands__decoration-line:nth-of-type(3) {
  left: 75%;
}

.ctr-compare-brands__decoration-line:nth-of-type(4) {
  left: 100%;
}

@media screen and (min-width: 992px) {
  .ctr-compare-brands__decoration-line {
    opacity: 0.5;
  }
}

.ctr-compare-brands__item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  z-index: 1;
  margin: 0 -1rem 0 0;
  gap: 0.5rem;
  height: 8.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-compare-brands__item {
    gap: 1rem;
    padding: 1.5rem 3rem;
  }
}

.ctr-compare-brands__item--active {
  font-weight: 700;
}

.ctr-compare-brands__item--active .ctr-compare-brands__item-value {
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .ctr-compare-brands__item--active .ctr-compare-brands__item-value {
    font-size: 2.2rem;
  }
}

.ctr-compare-brands__item--active .ctr-compare-brands__item-description {
  white-space: nowrap;
  font-size: 1.2rem;
}

@media screen and (min-width: 992px) {
  .ctr-compare-brands__item--active .ctr-compare-brands__item-description {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  .ctr-compare-brands__item.m-text-outside .ctr-compare-brands__item-bar {
    overflow: visible;
  }

  .ctr-compare-brands__item.m-text-outside .ctr-compare-brands__item-content {
    width: 100%;
    transform: translateY(-50%) translateX(100%);
    color: var(--ctr-text-color) !important;
  }

  .ctr-compare-brands__item.m-text-outside .ctr-compare-brands__item-content--inverted {
    display: none;
  }
}

.ctr-compare-brands__item-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  width: 40vw;
}

@media screen and (min-width: 992px) {
  .ctr-compare-brands__item-content {
    left: 2rem;
  }
}

.ctr-compare-brands__item-content--inverted {
  color: var(--ctr-text-color);
}

.ctr-compare-brands__item-name {
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--ctr-text-color);
  z-index: 1;
  text-align: center;
  margin-left: auto;
  width: 100%;
  max-width: 25%;
}

@media screen and (min-width: 992px) {
  .ctr-compare-brands__item-name {
    font-size: 3.6rem;
  }
}

.ctr-compare-brands__item-icon {
  margin: 0 auto;
  max-width: 100%;
}

.ctr-compare-brands__item-description {
  font-size: 1rem;
  line-height: 1.2;
  font-family: var(--ctr-secondary-font);
}

@media screen and (min-width: 992px) {
  .ctr-compare-brands__item-description {
    font-size: 1.2rem;
    letter-spacing: 0.16em;
  }
}

.ctr-compare-brands__item-value {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (min-width: 992px) {
  .ctr-compare-brands__item-value {
    font-size: 1.6rem;
  }
}

.ctr-compare-brands__item-bar {
  position: absolute;
  top: 0;
  left: -1px;
  height: 100%;
  width: 1%;
  border: 1px solid var(--ctr-text-color);
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  overflow: hidden;
  transition: width var(--ctr-animation-speed) var(--ctr-animation-easing);
}

.ctr-compare-brands__item-bar.m-active {
  width: var(--ctr-item-bar-width);
}

.ctr-compare-brands br {
  display: inline-block;
}

.ctr-product-quick-nav {
  --ctr-font-size-product-name: 1.2rem;
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 1.6rem;
  background-color: var(--ctr-bg-color);
}

@media screen and (min-width: 992px) {
  .ctr-product-quick-nav {
    display: none;
  }
}

.ctr-product-quick-nav__container {
  padding: 0;
}

.ctr-product-quick-nav__slider {
  display: block;
}

.ctr-product-quick-nav__title {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.ctr-product-quick-nav__product-image {
  width: 100%;
  border-radius: 100%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
  margin-bottom: 0.5rem;
}

.ctr-product-quick-nav__product-title {
  font-size: var(--ctr-font-size-product-name);
  line-height: 1.2;
  text-align: center;
}

.ctr-product-quick-nav .swiper-slide {
  height: auto;
}

.ctr-product-quick-nav .swiper-scrollbar__container {
  max-width: 60rem;
  margin: 0 auto;
  position: relative;
  --swiper-scrollbar-size: 0.8rem;
}

.ctr-product-quick-nav .swiper-scrollbar__container .swiper-scrollbar {
  left: 0;
  right: 1.6rem;
  width: auto;
}

@media screen and (min-width: 992px) {
  .ctr-product-quick-nav .swiper-scrollbar__container .swiper-scrollbar {
    right: 0;
  }
}

.ctr-experts {
  --ctr-active-color: #f1ff67;
  --ctr-bg-color: #ffffff;
  --ctr-text-color: #000000;
  --ctr-title-transform: none;
  --ctr-title-align: left;
  --ctr-text-align: left;
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
  background-color: var(--ctr-bg-color);
  font-family: var(--ctr-primary-font);
}

@media screen and (min-width: 992px) {
  .ctr-experts {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
  }
}

.ctr-experts__container.m-wide-container {
  padding: 0 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-experts__container.m-wide-container {
    padding: 0;
    padding-left: 2rem;
    margin-right: 0;
    max-width: unset;
    margin-left: max(0px, (100% - var(--ctr-container-normal-width) - 5em)/2);
  }
}

@media screen and (min-width: 1801px) {
  .ctr-experts__container.m-wide-container {
    max-width: var(--ctr-container-normal-width);
    padding-right: 2rem;
    margin-right: auto;
  }
}

.ctr-experts__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .ctr-experts__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }
}

.ctr-experts__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  width: 100%;
  margin: 0 0 2rem;
  align-items: var(--ctr-title-align);
}

@media screen and (min-width: 992px) {
  .ctr-experts__header {
    text-align: left;
    width: 50%;
    margin: 0;
  }
}

.ctr-experts .swiper {
  width: 100% !important;
}

.ctr-experts__title {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
  text-transform: var(--ctr-title-transform);
  text-align: var(--ctr-text-align);
}

@media screen and (min-width: 992px) {
  .ctr-experts__title {
    font-size: 4.8rem;
    margin: 0 0 2.7rem;
    max-width: 46rem;
  }
}

.ctr-experts__list {
  display: flex;
  gap: 1rem;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .ctr-experts__list {
    gap: 1.8rem;
    width: 50%;
  }
}

.ctr-experts__list-item {
  flex: 1;
}

.ctr-experts__slider-container {
  display: block;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 992px) {
  .ctr-experts__slider-container {
    width: 50%;
  }
}

.ctr-experts__slider {
  --swiper-pagination-color: var(--ctr-text-color);
  --swiper-pagination-bullet-inactive-color: var(--ctr-text-color);
  --swiper-pagination-bullet-inactive-opacity: 0.4;
  --swiper-navigation-size: auto;
  --swiper-pagination-bullet-size: 20px;
  --swiper-pagination-bullet-horizontal-gap: 8px;
  width: 100%;
  padding: 0 0 6rem !important;
}

.ctr-experts .swiper-slide {
  height: auto !important;
}

.ctr-experts .non-swiper-slide {
  display: none !important;
}

.ctr-experts__controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-experts__controls {
    justify-content: center;
  }
}

.ctr-experts__button-prev,
.ctr-experts__button-next {
  position: relative;
  opacity: 1;
  transform: translateY(-4px);
  width: auto;
}

.ctr-experts__button-prev::before,
.ctr-experts__button-prev::after,
.ctr-experts__button-next::before,
.ctr-experts__button-next::after {
  display: none;
}

.ctr-experts__button-prev svg,
.ctr-experts__button-next svg {
  width: 1.8rem;
}

.ctr-experts__button-prev:hover,
.ctr-experts__button-next:hover {
  opacity: 1;
}

.ctr-experts__button-prev svg {
  transform: rotate(180deg);
}

.ctr-experts__pagination {
  position: relative;
  width: auto !important;
}

.ctr-flavor-highlight {
  --ctr-active-color: #f1ff67;
  --ctr-bg-color: #ffffff;
  --ctr-text-color: #000000;
  --ctr-title-transform: none;
  --ctr-title-align: left;
  --ctr-text-align: left;
  --ctr-order-desktop: 0;
  --ctr-order-mobile: 0;
  --ctr-button-bg-color: #f2f2f2;
  --ctr-button-text-color: #30303080;
  --ctr-button-active-bg-color: #f1ff67;
  --ctr-button-active-text-color: #000000;
  --ctr-slide-description-color: #1e1e1e;
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
  background-color: var(--ctr-bg-color);
  font-family: var(--ctr-primary-font);
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-flavor-highlight {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
  }
}

.ctr-flavor-highlight__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-highlight__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }
}

.ctr-flavor-highlight__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  width: 100%;
  order: var(--ctr-order-mobile);
}

@media screen and (min-width: 992px) {
  .ctr-flavor-highlight__header {
    padding-right: 2rem;
    width: calc(50% - 1.5rem);
    margin: 0;
    order: var(--ctr-order-desktop);
  }
}

.ctr-flavor-highlight .swiper {
  width: 100% !important;
}

.ctr-flavor-highlight__title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-highlight__title {
    font-size: 4.8rem;
    margin: 0 0 2rem;
  }
}

.ctr-flavor-highlight__description {
  font-family: var(--ctr-secondary-font);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: 0.16em;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-highlight__description {
    font-size: 1.6rem;
    max-width: 52rem;
  }
}

.ctr-flavor-highlight__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 0;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-highlight__nav {
    margin: 3rem 0 0;
    max-width: 60rem;
  }
}

.ctr-flavor-highlight__nav.m-one-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.ctr-flavor-highlight__nav.m-2-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 1rem;
}

.ctr-flavor-highlight__nav.m-2-column-grid button {
  width: 100%;
}

.ctr-flavor-highlight__nav.m-3-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: auto;
  gap: 1rem;
}

.ctr-flavor-highlight__nav.m-3-column-grid button {
  width: 100%;
  font-size: 1.2rem;
}

@media screen and (min-width: 576px) {
  .ctr-flavor-highlight__nav.m-3-column-grid {
    grid-template-columns: repeat(3, minmax(0, max-content));
  }
}

.ctr-flavor-highlight__nav-button {
  border: 1px solid var(--ctr-button-bg-color);
  background-color: var(--ctr-button-bg-color);
  color: var(--ctr-button-text-color);
  padding: 0.8rem 2.5rem;
  border-radius: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
  height: 100%;
}

.ctr-flavor-highlight__nav-button:hover,
.ctr-flavor-highlight__nav-button.m-active {
  background-color: var(--ctr-button-active-bg-color);
  border-color: var(--ctr-button-active-bg-color);
  color: var(--ctr-button-active-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-flavor-highlight__nav-button {
    font-size: 1.6rem;
    padding: 1rem 3rem;
  }
}

.ctr-flavor-highlight__slider-container {
  display: block;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-highlight__slider-container {
    width: calc(50% - 1rem);
  }
}

.ctr-flavor-highlight__slider {
  width: 100%;
}

.ctr-flavor-highlight__slide {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-highlight__slide {
    border-radius: 1.5rem;
  }
}

.ctr-flavor-highlight__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-highlight__image {
    aspect-ratio: 1/0.9;
  }
}

.ctr-flavor-highlight__text {
  position: absolute;
  top: 1.4rem;
  left: 1.8rem;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--ctr-slide-description-color);
  max-width: 18rem;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

@media screen and (min-width: 992px) {
  .ctr-flavor-highlight__text {
    top: 2.4rem;
    left: 3.5rem;
    max-width: 32rem;
    font-size: 1.8rem;
  }
}

.ctr-flavor-highlight__text * {
  color: var(--ctr-slide-description-color);
}

.ctr-flavor-highlight .swiper-slide {
  height: auto !important;
}

.ctr-flavor-highlight .swiper-slide-active .ctr-flavor-highlight__text {
  opacity: 1;
}

.ctr-flavor-highlight br {
  display: inline-block;
}

#klaviyo-reviews-all {
  --kl-reviews-reviews-review-images-corner-radius: 1rem;
  --kl-reviews-reviews-filter-button-corner-radius: 1.5rem;
  background: #fff;
  padding: 2rem 0 3rem;
}

@media screen and (min-width: 992px) {
  #klaviyo-reviews-all {
    padding: 3rem 0;
  }
}

#klaviyo-reviews-all .kl_reviews__summary h2 {
  font-size: 3rem;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
  border: none;
}

@media screen and (min-width: 992px) {
  #klaviyo-reviews-all .kl_reviews__summary h2 {
    font-size: 4.8rem;
    padding-bottom: 3rem;
  }
}

#klaviyo-reviews-all .kl_reviews__button {
  border-radius: 0.5rem;
  margin: 0;
  min-width: 12rem;
}

@media screen and (min-width: 992px) {
  #klaviyo-reviews-all .kl_reviews__button {
    margin: 0 0 1rem;
  }
}

#klaviyo-reviews-all .kl_reviews__review__title {
  margin-bottom: 1.3rem;
}

#klaviyo-reviews-all .kl_reviews__review__author {
  font-weight: 700;
}

#klaviyo-reviews-all .kl_reviews__summary__grid--1-2 {
  display: flex;
  gap: 3rem;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  #klaviyo-reviews-all .kl_reviews__summary__grid--1-2 {
    gap: 3rem;
  }
}

#klaviyo-reviews-all .kl_reviews__summary__image_grid {
  max-width: 100%;
  align-self: flex-start;
  margin: 0 0 2rem;
}

#klaviyo-reviews-all .kl_reviews__summary__image_container--large_grid {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

@media screen and (min-width: 992px) {
  #klaviyo-reviews-all .kl_reviews__summary__image_container--large_grid {
    gap: 1rem;
  }

  #klaviyo-reviews-all .kl_reviews__summary__image_container--large_grid .kl_reviews__summary_image {
    flex: 1 0 20rem;
  }
}

#klaviyo-reviews-all .kl_reviews__summary__image_container--large_grid .kl_reviews__summary_image {
  max-height: unset;
  flex: 1 0 8.5rem;
  border-radius: var(--kl-reviews-reviews-review-images-corner-radius);
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0);
}

#klaviyo-reviews-all .kl_reviews__summary__image_container--large_grid .kl_reviews__summary_image:hover {
  border-color: #000;
}

#klaviyo-reviews-all .kl_reviews__summary__rating--1 {
  display: flex;
  justify-content: flex-start;
  margin: 0;
}

#klaviyo-reviews-all .kl_reviews__histogram {
  margin: 0;
  display: none;
}

#klaviyo-reviews-all .kl_reviews__summary__average#klaviyo-reviews-all .kl_reviews__summary__average_and_stars {
  margin: 0;
}

#klaviyo-reviews-all .kl_reviews__summary__stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

#klaviyo-reviews-all .kl_reviews__summary__stars .kl_reviews__stars_badge {
  margin: -3px 0 0;
}

#klaviyo-reviews-all .kl-summary-reviews-text {
  font-size: 1.6rem;
}

#klaviyo-reviews-all .kl_reviews__review__image {
  margin: 0;
}

#klaviyo-reviews-all .kl_reviews__review__image_container {
  width: 8.5rem;
  height: 8.5rem;
}

@media screen and (min-width: 992px) {
  #klaviyo-reviews-all .kl_reviews__review__image_container {
    width: 12rem;
    height: 12rem;
  }
}

#klaviyo-reviews-all .kl_reviews__review__image_row {
  gap: 0.5rem;
}

@media screen and (min-width: 992px) {
  #klaviyo-reviews-all .kl_reviews__review__image_row {
    gap: 1rem;
  }
}

#klaviyo-reviews-all .kl_reviews__button_bar {
  justify-content: flex-end;
}

.ctr-ingredient-preview {
  --ctr-bg-color: #ffffff;
  --ctr-cover-bg-color: #f1ff67;
  --ctr-text-color: #000000;
  --ctr-padding-top-mobile: 0;
  --ctr-padding-bottom-mobile: 0;
  --ctr-padding-top: 0;
  --ctr-padding-bottom: 0;
  --ctr-cover-border-radius: 1rem;
  --ctr-logo-width: 175px;
  --ctr-logo-width-mobile: 175px;
  background: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview {
    --ctr-cover-border-radius: 1.5rem;
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
  }
}

.ctr-ingredient-preview__container {
  height: 100%;
}

.ctr-ingredient-preview__cover {
  background: var(--ctr-cover-bg-color);
  border-radius: var(--ctr-cover-border-radius);
  overflow: hidden;
}

.ctr-ingredient-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'image' 'info';
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'info image';
  }
}

.ctr-ingredient-preview__col {
  grid-area: info;
}

.ctr-ingredient-preview__col--preview {
  grid-area: image;
  padding: 0;
  margin: 0;
  height: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-top-left-radius: var(--ctr-cover-border-radius);
  border-top-right-radius: var(--ctr-cover-border-radius);
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview__col--preview {
    position: relative;
    padding: 0;
    border-top-left-radius: 0;
    border-top-right-radius: var(--ctr-cover-border-radius);
    border-bottom-right-radius: var(--ctr-cover-border-radius);
  }
}

.ctr-ingredient-preview__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem 2rem 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview__content {
    padding: 2rem 3rem 3rem;
  }
}

.ctr-ingredient-preview__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  height: 80%;
  display: block;
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
}

.ctr-ingredient-preview__image-container {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview__image-container {
    width: auto;
  }
}

.ctr-ingredient-preview__image {
  vertical-align: middle;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  display: none;
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview__image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 1;
    aspect-ratio: unset;
  }
}

.ctr-ingredient-preview__image.m-mobile {
  display: block;
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview__image.m-mobile {
    display: none;
  }
}

.ctr-ingredient-preview__title {
  margin: 2rem 0 2rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview__title {
    font-size: 4.8rem;
    margin: 3rem 0;
  }
}

.ctr-ingredient-preview__subtitle {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 1rem;
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview__subtitle {
    font-size: 1.6rem;
    margin: 0 0 1.6rem;
  }
}

.ctr-ingredient-preview__description {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 4rem;
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview__description {
    font-size: 1.6rem;
    margin: 0 0 16rem;
  }
}

.ctr-ingredient-preview__features {
  font-family: var(--ctr-secondary-font);
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: 400;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media screen and (min-width: 992px) {
  .ctr-ingredient-preview__features {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}

.ctr-ingredient-preview__feature-text {
  position: relative;
  z-index: 1;
}

.ctr-ingredient-preview__feature-text::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -1rem;
  width: calc(100% + 2rem);
  height: 80%;
  background: #f1ff67;
  z-index: -1;
}

.ctr-ingredient-preview__feature-icon {
  position: relative;
  z-index: 2;
}

.ctr-ingredient-preview br {
  display: inline-block;
}

.ctr-ingredients-main {
  --ctr-bg-color: #f1ff67;
  --ctr-text-color: #000000;
  --ctr-padding-top-mobile: 0;
  --ctr-padding-bottom-mobile: 0;
  --ctr-padding-top: 0;
  --ctr-padding-bottom: 0;
  --ctr-columns-desktop: 5fr;
  --ctr-columns-mobile: 2fr;
  --ctr-active-button-bg: #f1ff67;
  --ctr-active-button-text: #000000;
  --ctr-border-radius: 1rem;
  --ctr-gap-mobile: 0.8rem;
  --ctr-gap-desktop: 1.2rem;
  background: var(--ctr-bg-color);
  color: var(--ctr-text-color);
  font-family: var(--ctr-primary-font);
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
}

@media screen and (min-width: 992px) {
  .ctr-ingredients-main {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
  }
}

.ctr-ingredients-main__container {
  height: 100%;
}

.ctr-ingredients-main__header {
  padding: 2.4rem 0 1.4rem;
}

.ctr-ingredients-main__filter {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 0.6rem;
  padding-bottom: 1rem;
}

@media screen and (min-width: 992px) {
  .ctr-ingredients-main__filter {
    justify-content: center;
    gap: 1.2rem;
  }
}

.ctr-ingredients-main__grid {
  grid-template-columns: repeat(var(--ctr-columns-mobile), 1fr);
  gap: var(--ctr-gap-mobile);
  row-gap: 3rem;
  display: none;
}

@media screen and (min-width: 992px) {
  .ctr-ingredients-main__grid {
    grid-template-columns: repeat(var(--ctr-columns-desktop), 1fr);
    gap: var(--ctr-gap-desktop);
    row-gap: 6rem;
  }
}

.ctr-ingredients-main__grid.m-active {
  display: grid;
}

.ctr-ingredients-main__filter-button {
  border-radius: 1.5rem;
  background: #ececec;
  color: #939393;
  border-color: #ececec;
  white-space: nowrap;
}

.ctr-ingredients-main__filter-button:hover,
.ctr-ingredients-main__filter-button.m-active {
  background: var(--ctr-active-button-bg);
  border-color: var(--ctr-active-button-bg);
  color: var(--ctr-active-button-text);
}

.ctr-ingredients-main br {
  display: inline-block;
}

.ctr-ingredients-group {
  --ctr-text-align-mobile: left;
  --ctr-text-align-desktop: center;
  --ctr-header-margin-mobile: 0;
  padding: var(--ctr-padding-top-mobile) 0 var(--ctr-padding-bottom-mobile) 0;
  background-color: var(--ctr-bg-color);
}

@media screen and (min-width: 992px) {
  .ctr-ingredients-group {
    padding: var(--ctr-padding-top) 0 var(--ctr-padding-bottom) 0;
  }
}

.ctr-ingredients-group__header {
  text-align: var(--ctr-text-align-mobile);
  margin-bottom: 2rem;
}

@media screen and (min-width: 992px) {
  .ctr-ingredients-group__header {
    text-align: var(--ctr-text-align-desktop);
    max-width: unset;
    margin-bottom: 6rem;
  }
}

.ctr-ingredients-group__actions {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}

@media screen and (min-width: 992px) {
  .ctr-ingredients-group__actions {
    margin-top: 4.8rem;
  }
}

.ctr-ingredients-group__button {
  width: 100%;
  max-width: 39rem;
}

.ctr-ingredients-group__title {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--ctr-text-color);
}

@media screen and (min-width: 992px) {
  .ctr-ingredients-group__title {
    font-size: 4.8rem;
    margin: 0 0 2.7rem;
  }
}

.ctr-ingredients-group__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  row-gap: 1.6rem;
  max-width: 820px;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .ctr-ingredients-group__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/*# sourceMappingURL=ctr-global.min.css.map */
