@charset "UTF-8";
/* 
  @include responsive(desktop) {
  }
  @include responsive(tablet) {
  }
  @include responsive(mobile) {
  } 
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-size: clamp(14px, 0.833vw, 16px);
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

body, html {
  width: 100%;
  min-width: 375px;
  font-size-adjust: none;
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s ease-in;
}
a:focus, a:hover, a:active {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: 3.75rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

img {
  width: auto;
  max-width: 100%;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

ol,
ul {
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
}

strong {
  font-weight: 600;
}

svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media (width <= 991px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.one-three-columns {
  display: flex;
}
.one-three-columns > :first-child {
  width: 25%;
}
.one-three-columns > :last-child {
  width: 75%;
}
@media (width <= 991px) {
  .one-three-columns {
    flex-direction: column;
  }
  .one-three-columns > :first-child {
    width: 100%;
  }
  .one-three-columns > :last-child {
    width: 100%;
  }
}

.reverse > :last-child {
  order: -1;
}

.empty-block-20 {
  height: 20px;
}

.empty-block-40 {
  height: 40px;
}

.empty-block-60 {
  height: 60px;
}

.empty-block-80 {
  height: 80px;
}

.empty-block-100 {
  height: 100px;
}

/* ======= СКРЫТЬ на определенных устройствах ======= */
/* Скрыть на десктопе */
@media (min-width: 992px) {
  .hidden-desktop {
    display: none !important;
  }
}
/* Скрыть на планшетах */
@media (min-width: 768px) and (max-width: 992px) {
  .hidden-tablet {
    display: none !important;
  }
}
/* Скрыть на мобильных */
@media (max-width: 991px) {
  .hidden-mobile {
    display: none !important;
  }
}
/* ======= ПОКАЗАТЬ только на определенных устройствах ======= */
/* Показать ТОЛЬКО на десктопе */
.visible-desktop {
  display: none !important;
}

@media (min-width: 992px) {
  .visible-desktop {
    display: block !important;
  }
}
/* Показать ТОЛЬКО на планшетах */
.visible-tablet {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-tablet {
    display: block !important;
  }
}
/* Показать ТОЛЬКО на мобильных */
.visible-mobile {
  display: none !important;
}

@media (max-width: 991px) {
  .visible-mobile {
    display: block !important;
  }
}
.svg-icon {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-block;
}


@media (max-width: 991px) {
	
	.svg-icon {
 
  font-size: 24px;
}
}

.svg-icon svg {
  vertical-align: -0.125em;
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
}

svg:not(:root) {
  overflow: hidden;
}

._ba-product__wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
@media (width <= 991px) {
  ._ba-product__wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
._ba-product__header {
  padding: 20px 0;
}
._ba-product__container {
  width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
._ba-product__right {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;   /* 44/16 */
}
@media (width <= 991px) {
  ._ba-product__right {
    gap: 34px;
  }
}
._ba-product__title {
  font-weight: 400;
  font-size: 50px;
  text-transform: uppercase;
  line-height: 104%;
}
._ba-product__title-brand {
  color: #8f1212;
}
._ba-product__title-brand:hover {
  color: #8f1212;
}
._ba-product__variations {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 0 10px;
}
@media (width <= 991px) {
  ._ba-product__variations {
    margin: 0;
    gap: 12px;
  }
}
._ba-product__action {
  margin: -7px 0 25px;
}
@media (width <= 991px) {
  ._ba-product__action {
    margin: -20px 0 14px;
  }
}
._ba-product__buttons {
  display: flex;
  column-gap: 10px;
  height: 76px;
}
@media (width <= 991px) {
  ._ba-product__buttons {
    height: 57px;
  }
}
._ba-product__buttons button:last-of-type {
  max-width: 76px;
  padding: 0;
}
@media (width <= 991px) {
  ._ba-product__buttons button:last-of-type svg {
    width: 17px;
  }
}
._ba-product__buttons button {
  width: max-content;
  padding: 0 40px;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  font-size: 16px;
  max-width: 279px;
}
@media (width <= 991px) {
  ._ba-product__buttons button {
    border-radius: 20px;
  }
}
._ba-product__payments-button {
  margin-top: 8px;
}
@media (width <= 991px) {
  ._ba-product__payments-button {
    margin-top: 0;
  }
}
._ba-product__payments-button-text {
  cursor: pointer;
  font-size: 16px;
  margin-right: 3px;
}
@media (width <= 991px) {
  ._ba-product__payments-button-text {
    font-size: 11px;
  }
}
._ba-product__quantity {
  width: 279px;
  border-radius: 25px;
  box-shadow: 0 0 0 1px inset;
  color: #8f1212;
}
@media (width <= 991px) {
  ._ba-product__quantity {
    border-radius: 20px;
  }
}
._ba-product__payments-heading {
  margin: 0 0 1.875rem 0;   /* 30/16 */
  font-weight: 600;
  font-size: 1.5rem;
}
._ba-product__payments-list {
  display: flex;
  gap: 6px;
  margin-bottom: 35px;
}
._ba-product__payments-text {
  margin-bottom: 18px;
}
._ba-product__payments-link {
  margin-bottom: 0;
}
._ba-product__payments-step {
  flex: 1 1 auto;
  padding-bottom: 16px;
  position: relative;
}
._ba-product__payments-step strong {
  display: block;margin: 0.5rem 0 0 0;   /* 8/16 */
font-size: 1.125rem;    /* 18/16 */

  font-weight: 600;
}
._ba-product__payments-step::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #F9E8DC;
  border-radius: 3px;
}
._ba-product__payments-step_active {
  opacity: 1;
}
._ba-product__payments-step_active::before {
  background: #8F1212;
}

.quantity {
  cursor: pointer;
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
.quantity__text {
  display: inline-flex;
  border: none;
  font-weight: 500;
  font-size: 16px;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.quantity__btn {
  align-items: center;
  color: inherit;
  display: flex;
  height: 50px;
  justify-content: center;
  width: 50px;
}
.quantity__icon {
  width: 18px;
  height: 18px;
}

._ba-product-gallery__list {
  display: grid;
  grid-column: 1/2;
  height: fit-content;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
._ba-product-gallery__item picture {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
._ba-product-gallery__item img {
  border-radius: 36px;
  width: 100%;
}

.product-photos {
  display: grid;
  grid-column: 1/2;
  height: fit-content;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.product-photos__item picture {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.product-photos__item img {
  border-radius: 36px;
  width: 100%;
}

._ba-variation {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (width <= 991px) {
  ._ba-variation {
    font-size: 11px;
  }
}
._ba-variation__options {
  display: flex;
  gap: 6px;
}
@media (width <= 991px) {
  ._ba-variation__options {
    gap: 10px;
  }
}
._ba-variation__option {
  border: 1px solid transparent;
  border-radius: 36px;
  height: 41px;
  padding-inline: 1.25rem;
  align-content: center;
  background: rgba(0, 0, 0, 0.03);
}
@media (width <= 991px) {
  ._ba-variation__option {
    height: 30px;
    padding-inline: 1.125rem;
  }
}
._ba-variation__option.active {
  border-color: #000;
}

._ba-product-price__price {
  display: flex;
  gap: 1.5rem;
}
._ba-product-price ins {
  font-size: clamp(25px, 4vw, 33px);
  font-size: 2rem;
  text-decoration: none;
  color: #000;
}
._ba-product-price del {
  font-size: clamp(25px, 4vw, 33px);
  font-size: 2rem;
  font-weight: 300;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.35);
}

._ba-product-slider__heading {
  font-weight: 600;
  text-transform: uppercase;
  
  font-size: clamp(30px, 4vw, 40px);
  
  font-size: 2.5rem;    
margin-bottom: 1.875rem;  
}

._ba-product-tags__header {
  margin-bottom: 30px;
    margin-bottom: 1.875rem;
}
._ba-product-tags__title {
  font-weight: 600;
  font-size: clamp(30px, 4vw, 40px);
  text-transform: uppercase;
}
._ba-product-tags__wrapper {
  display: flex;
  gap: 22px;
  overflow-y: auto;
  scrollbar-width: none;
}
._ba-product-tags__item {
  border: 1px solid #dfdfdf;
  border-radius: 3.4375rem;   /* 55/16 */
  flex: 1;
  max-width: 315px;
  height: 94px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 991px) {
  ._ba-product-tags__item {
    min-width: 203px;
    height: 59px;
  }
}
._ba-product-tags__item span {
  font-size: 16px;
  text-transform: uppercase;
}

._ba-product-related {
  margin-bottom: 80px;
}

.customer-layout__user {
  margin: 20px 0 32px;
}
@media (width <= 991px) {
  .customer-layout__user {
    margin: 0 0 12px;
  }
}

.customer-layout__user-title {
  font-weight: 600;
  font-size: clamp(18px, 4vw, 40px);
  text-transform: uppercase;
}

.customer-layout__loyality {
  display: flex;
  justify-content: space-between;
}
@media (width <= 991px) {
  .customer-layout__loyality {
    flex-direction: column;
  }
}

.customer-loyalty__card {
  max-width: 530px;
  width: 100%;
}
.customer-loyalty__benefits {
  width: 392px;
  display: flex;
  flex-direction: column;
}
@media (width <= 991px) {
  .customer-loyalty__benefits {
    display: none;
  }
}
.customer-loyalty__title {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
}
.customer-loyalty__list {
  list-style: none;
  margin-top: 40px;
}
.customer-loyalty__list > li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}
.customer-loyalty__list > li span {
  font-size: 20px;
}
.customer-loyalty__list > li span:nth-child(2) {
  font-weight: 600; /* medium */
}
.customer-loyalty__list > li span:nth-child(1) {
  text-transform: uppercase;
}

.customer-loyalty__toggle-level {
  user-select: none;
  flex: 1;
}
.customer-loyalty__toggle-level.is-open {
  color: #8F1212;
}
.customer-loyalty__toggle-level.is-open i {
  transform: rotate(180deg);
}

.customer-loyalty__level {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.customer-loyalty__level-info {
  margin: 20px 0 16px;
}
.customer-loyalty__level-info > div {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.customer-loyalty__level-info > div:first-child {
  font-size: 20px;
}

.customer-loyalty__level-link {
  text-transform: uppercase;
  margin-left: auto;
}

.customer-loyalty__toggle-level-dropdown {
  display: none;
  color: #000;
  flex-direction: column;
}
.customer-loyalty__toggle-level-dropdown.is-open {
  display: flex;
}

.customer-layout__header {
  margin-bottom: 80px;
}
@media (width <= 991px) {
  .customer-layout__header {
    display: none;
  }
}

.customer-layout-header {
  height: 540px;
  box-sizing: border-box;
  min-height: max-content;
  position: relative;
  grid-column: 1/-1;
}

.customer-layout-header__background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.customer-layout-header__background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.customer-aside-menu__list {
  flex-direction: column;
  list-style: none;
  display: flex;
}

.customer-aside-menu-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
}
.customer-aside-menu-item.active {
  color: #8F1212;
}

.customer-aside-menu-item + .customer-aside-menu-item {
  margin-top: 28px;
}

.customer-layout__inner {
  display: flex;
  align-items: start;
  gap: 20px;
}
@media (width <= 991px) {
  .customer-layout__inner {
    flex-direction: column;
  }
}

.customer-layout__aside {
  background: #FDF9F6;
  padding: 40px;
  border-radius: 30px;
  width: 393px;
  flex-shrink: 0;
}
@media (width <= 991px) {
  .customer-layout__aside {
    order: 2;
    width: 100%;
  }
}

.customer-layout__back-link {
  margin-bottom: 30px;
  align-items: center;
  display: none;
}
@media (width <= 991px) {
  .customer-layout__back-link {
    display: flex;
  }
}
.customer-layout__back-link i {
  margin-right: 10px;
}

.customer-layout__column {
  flex: auto;
  padding-left: 138px;
}
@media (width <= 991px) {
  .customer-layout__column {
    padding: 0;
    width: 100%;
  }
}

.customer-edit__section {
  margin-bottom: 60px;
}
.customer-edit__section-title {
  font-weight: 600;
  font-size: 2.5rem;   /* 40/16 */
  text-transform: uppercase;

margin-bottom: 2.5rem;   /* 40/16 */
  
}

@media (width <= 991px) {
	.customer-edit__section-title {
  font-size: 18px;
}

	
}
.customer-edit__field {
  width: calc(50% - 15px);
  float: left;
  margin-right: 15px;
  margin-bottom: 20px;
}
@media (width <= 991px) {
  .customer-edit__field {
    width: 100%;
  }
}
.customer-edit__field.wide {
  width: 100%;
  clear: both;
}
.customer-edit__gender-radio-group {
  clear: both;
  display: flex;
}
.customer-edit__submit {
  margin-top: 40px;
}

.input__label {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
}
.input__control {
  width: 100%;
  border-radius: 12px;
  background: #fdf9f6;
  padding: 15px 20px;
  border: none;
}
@media (width <= 991px) {
  .input__control {
    padding: 12px 16px;
  }
}

.radio-group__input {
  -webkit-appearance: none;
  appearance: none;
  caret-color: transparent;
  color: transparent;
  pointer-events: none;
  z-index: -9999;
  outline: none;
  position: absolute;
}

.radio {
  gap: 9px;
  display: flex;
  user-select: none;
  align-items: flex-start;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  margin-right: 40px;
  cursor: pointer;
}
.radio__box {
  flex-shrink: 0;
  position: relative;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.radio__box:after,
.radio__box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.radio__box:before {
  box-sizing: border-box;
  border-style: solid;
  border-width: 1px;
  transition-property: border;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  border-color: #8F1212;
}

.radio__box:after {
  opacity: 0;
  transform-origin: 50%;
  background: currentColor;
  transition-property: opacity, transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transform: scale(0);
}

.radio__box,
.radio__box:after,
.radio__box:before {
  width: 18px;
  height: 18px;
}

.radio-group__input:checked ~ .radio .radio__box:before {
  border-width: 5px;
}

form.edit-account .form-row-first {
  width: calc(50% + 97.5px);
}

.form-row-last {
  padding-left: 15px;
}

form.edit-account .input-text {
  flex: 1;
}

/* to do
    order list
    order
    subscribe
    wishlist
*/
.customer-layout__title {
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.orders__item + .orders__item {
  border-top: 1px solid #eee;
}
.orders-card {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
}
.orders-card__price {
  display: flex;
  flex-direction: column;
}
.orders-card__price span:last-child {
  font-size: 1rem;
  font-weight: 600;
}

.order__inner {
  border: 1px solid #ccc;
  padding: 30px;
  background: #fff;
  overflow: hidden;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.order__number {
  font-weight: 600;
}
.order__status {
  font-weight: 600;
}
.order__info {
  display: flex;
  flex-direction: column;
}
.order__info > div {
  display: flex;
  gap: 1rem;
}
.order__info > div *:first-child {
  font-size: 14px;
}
.order__info > div *:last-child {
  font-weight: 600;
}
.order__products {
  margin-top: 2rem;
}

.order-product {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 0;
}
.order-product + .order-product {
  border-top: 1px solid #eee;
}
.order-product__image {
  width: 68px;
}
.order-product__name {
  text-transform: uppercase;
  font-size: 14px;
}
.order-product__price {
  font-weight: 600;
}

.order-totals {
  border-top: 1px solid #eee;
}
.order-totals__total {
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  flex-direction: column;
  gap: 0.5rem;
}
.order-totals__total > * {
  display: flex;
  justify-content: space-between;
}

.card-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}
.card-container__card {
  height: 100%;
  width: 100%;
}
.card-container__card--white {
  color: #8F1212;
}
.card-container__card--rose {
  color: #8F1212;
}
.card-container__card--maroon {
  color: #F9E8DC;
}
.card-container__card--black {
  color: #F9E8DC;
}
.card-container__front, .card-container__back {
  height: 100%;
  position: relative;
  height: 321px;
  border-radius: 25px;
  overflow: hidden;
  backface-visibility: hidden;
  #background-color: #8F1210;
  background-image: var(--loyality-card-bg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 991px) {
  .card-container__front, .card-container__back {
    height: 198px;
    border-radius: 16px;
  }
}
@media (width <= 991px) {
  .card-container__front {
    display: none;
  }
}
.card-container__back {
  display: none;
}
@media (width <= 991px) {
  .card-container__back {
    display: block;
  }
}
.card-container__brand {
  position: absolute;
  left: 30px;
  bottom: 30px;
  display: flex;
}
@media (width <= 991px) {
  .card-container__brand {
    left: 1rem;
    bottom: 1rem;
  }
}
.card-container__brand svg {
  height: 24px;
  width: auto;
}
@media (width <= 991px) {
  .card-container__brand svg {
    height: 14px;
  }
}
.card-container__brand svg path {
  fill: currentColor;
}
.card-container__status {
  position: absolute;
  right: 30px;
  top: 30px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 20px;
}
@media (width <= 991px) {
  .card-container__status {
    right: 16px;
    top: 16px;
    font-size: 14px;
  }
}
.card-container__text {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 14px;
}
.card-container__text > div {
  display: flex;
  gap: 16px;
  margin-bottom: 2px;
}
.card-container__text > div > div {
  min-width: 59px;
  text-transform: uppercase;
}
.card-container__info-cirlce {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
}
.card-container__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.card-container__info {
  position: absolute;
  width: 100%;
  height: 100%;
  background: red;
  padding: 1rem;
}
.card-container__list {
  list-style: none;
}
.card-container .card-container__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.card-container .card-container__info {
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card-container .card-container__title {
  text-transform: uppercase;
  font-size: 14px;
}
.card-container .card-container__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-container .card-container__list li {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}
.card-container .card-container__list li:first-of-type {
  font-size: 15px;
  margin-bottom: 2px;
}
.card-container .card-container__link {
  margin-left: auto;
  color: inherit;
}

._ba-brands__container {
  width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
._ba-brands__alphabet {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  overflow-x: auto;
}
._ba-brands__alphabet-letter {
  padding: 0 0.75rem;
  font-size: 18px;
}
._ba-brands__brand + ._ba-brands__brand {
 margin-top: 3.125rem;   /* 50/16 */
}
._ba-brands__brand-title {
  display: block;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 1.25rem;   /* 20/16 */
}
._ba-brands__brand-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
._ba-brands__brand-link {
  display: inline-block;
  padding: 6px 0;
}

.about-partners {
  padding-block: 3.75rem ;
}
@media (width <= 991px) {
  .about-partners {
    padding-block: 44px;
  }
}
.about-partners__inner {
  display: flex;
  gap: 100px;
  align-items: center;
}
@media (width <= 991px) {
  .about-partners__inner {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }
}
.about-partners__inner p {
  flex-shrink: 0;
  font-size: 1.5rem;
  opacity: 0.8;
  margin: 0;
}
@media (width <= 991px) {
  .about-partners__inner p {
    font-size: 16px;
  }
}
.about-description {
  padding-block: 7.5rem;
}
@media (width <= 991px) {
  .about-description {
    padding-block: 30px;
  }
}
.about-description__inner {
  display: flex;
  flex-direction: column;
gap: 5rem;   /* 80/16 */
}
@media (width <= 991px) {
  .about-description__inner {
    gap: 0;
  }
}
.about-description__text {
max-width: 41.25rem;
  margin-left: auto;
  font-size: 1.25rem   /* 20/16 */;
  line-height: 140%;
  
}
@media (width <= 991px) {
  .about-description__text {
    max-width: 248px;
    font-size: 14px;
  }
}
.about-description:last-of-type {
padding-block: 15rem 12.5rem;
}
@media (width <= 991px) {
  .about-description:last-of-type {
    padding-block: 100px;
  }
}
@media (width <= 991px) {
  .about-description__image {
    max-width: 248px;
  }
}

.about-place {
  padding-block: 3.75rem   /* 60/16 */;
}
@media (width <= 991px) {
  .about-place {
    padding-block: 0;
  }
}
.about-place__image {
  border-radius: 24px;
}

.about-quote {
  padding-block: 120px;
}
@media (width <= 991px) {
  .about-quote {
    padding-block: 100px;
  }
}
.about-quote__inner {
  display: flex;
  gap: 3.75rem   /* 60/16 */;
}
@media (width <= 991px) {
  .about-quote__inner {
    gap: 40px;
    flex-direction: column;
  }
}
.about-quote__content {
  flex: auto;
}
.about-quote__image {
  max-width: 927px;
  object-fit: contain;
}
.about-quote__title {
  font-size: clamp(28px, 4vw, 50px);
  font-size: 3.125rem;
  
  margin-bottom: 7.5rem;   /* 120/16 */
}
@media (width <= 991px) {
  .about-quote__title {
    margin-bottom: 44px;
font-size: 16px;	
  }
}
.about-quote__list {
  list-style: none;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
gap: 4rem;                 /* 64/16 */
padding: 0 0 0 3.75rem;    /* 60/16 */
}
@media (width <= 991px) {
  .about-quote__list {
    padding: 0;
    gap: 36px;
  }
}
.about-quote__item {
  position: relative;
  display: flex;
  gap: 35px;
  align-items: center;
}
@media (width <= 991px) {
  .about-quote__item {
    gap: 24px;
  }
}
.about-quote__item svg {

  height: 3.4375rem ;  /* 55/16 */
  
  top: 0;
  position: absolute;
}
@media (width <= 991px) {
  .about-quote__item svg {
    height: 35px;
    width: auto;
  }
}
.about-quote__item p {
  margin: 0;
  font-size: 1.75rem;   /* 28/16 */
  line-height: 120%;
}
@media (width <= 991px) {
  .about-quote__item p {
    font-size: 16px;
  }
}
.about-quote__step {
  width: 4.8125rem;   /* 77/16 */
}
@media (width <= 991px) {
  .about-quote__step {
    width: 47px;
  }
}

.about-advantages {
  padding-block: 80px 160px;
  background: rgba(249, 232, 220, 0.26);
}
@media (width <= 991px) {
  .about-advantages {
    padding-block: 40px;
  }
}
.about-advantages__title {
  font-size: 3.125rem;
  

  
}

@media (width <= 991px) {
	.about-advantages__title {
  font-size: 28px;
  
}
	
}
.about-advantages__image {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  max-width: 600px;
}
@media (width <= 991px) {
  .about-advantages__image {
    max-width: 86%;
    margin: 0 auto 16px;
    transform: none;
    position: static;
  }
}
.about-advantages__image-text {
  padding: 120px 0;
}
@media (width <= 991px) {
  .about-advantages__image-text {
    max-width: 164px;
    padding: 52px 0;
  }
}
.about-advantages__content {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (width <= 991px) {
  .about-advantages__content {
    flex-direction: column;
  }
}
.about-advantages__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin: 0;
}
@media (width <= 991px) {
  .about-advantages__list {
    gap: 0;
  }
}
.about-advantages__list:last-child > *:nth-child(2) {
  padding-left: 110px;
}
@media (width <= 991px) {
  .about-advantages__list:last-child > *:nth-child(2) {
    padding-left: 0;
  }
}
.about-advantages__item {
max-width: 30.9375rem;   /* 495/16 */
font-size: 1.25rem;      /* 20/16 */
  line-height: 130%;
  margin: 0;
}
@media (width <= 991px) {
  .about-advantages__item {
	  max-width: 100%;
    font-size: 14px;
    display: flex;
    gap: 3rem;
    padding-block: 16px;
    border-bottom: 1px solid #8F1212;
  }
}
.about-advantages__item svg {
  flex-shrink: 0;
}
@media (width <= 991px) {
  .about-advantages__item svg {
    max-width: 28px;
  }
}
.about-advantages__item p {
  margin: 0;
}

/*

about-page__main-screen about-main-screen
about-page__description about-description
about-page__quote about-quote
about-page__history about-history
about-page__quote about-quote about-quote_right
about-page__advantages about-advantages
about-page__brands brands-list
about-page__shops

*/
.loyalty__header {
  height: 33.625rem;                 /* 538/16 */
  background: #aaa;
  color: #fff;
  padding: 0.75rem 0 2.25rem;       /* 12/16=0.75, 36/16=2.25 */
}
@media (width <= 991px) {
  .loyalty__header {
    height: 515px;
    padding: 24px 0 48px;
  }
}
.loyalty__header h1 {
  font-size: clamp(30px, 4vw, 58px);
  font-size: 3.625rem;
  text-transform: uppercase;
  font-weight: 600;
}
.loyalty__header p {
  font-size: clamp(16px, 4vw, 25px);
  font-size: 1.5625rem;
  line-height: 130%;
  text-align: justify;
}
.loyalty__plan {
  display: flex;
  gap: 82px;
  margin-bottom: 96px;
  gap: 5.125rem;          /* 82/16 */
margin-bottom: 6rem;    /* 96/16 */

}
@media (width <= 991px) {
  .loyalty__plan {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 47px;
  }
}
.loyalty__card {
  max-width: 35.1875rem;
}
.loyalty__info {
  flex: auto;
}
.loyalty__title {
  font-size: 2.8125rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}


@media (width <= 991px) {
  .loyalty__title {
	  
	  font-size: 24px;
    margin-bottom: 28px;
  }
}
.loyalty__list {
  list-style: none;
}
.loyalty__list li {
  display: flex;
  align-items: center;
  padding: 1.75rem 0;
  font-size: 1.5625rem;
  
  border-bottom: 1px solid #eee;
}
@media (width <= 991px) {
  .loyalty__list li {
    padding: 17px 0;
	font-size: 16px;
  }
}
.loyalty__list li:first-child {
  border-top: 1px solid #eee;
}
.loyalty__list li * {
  flex: 1;
}
@media (width <= 991px) {
  .loyalty__list li * {
    display: none;
  }
}
.loyalty__list li > :last-child {
  opacity: 0.4;
  flex: 1.25;
}
@media (width <= 991px) {
  .loyalty__list li > :last-child {
    opacity: 1;
    flex: 1;
    display: block;
  }
}
.loyalty__vibe {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;   /* 80/16 */
}
@media (width <= 991px) {
  .loyalty__vibe {
    gap: 5px;
    margin-bottom: 55px;
  }
}
.loyalty__vibe img {
  width: 77%;
  height: 100%;
}
.loyalty__vibe img:last-child {
  width: 23%;
}
.loyalty .loyalty__accordions ._ba-accordion__title {
  font-size: clamp(16px, 4vw, 25px);
  font-size: 1.5625rem;   /* 25/16 */
  
}

@media (width <= 991px) {
	.loyalty .loyalty__accordions ._ba-accordion__title {
		font-size: 16px;
	}
	
}	

.loyalty .loyalty-_accordions ._baaccordion__content {
  font-size: clamp(16px, 4vw, 25px);
  font-size: 1.5625rem;   /* 25/16 */
}


@media (width <= 991px) {	
		.loyalty .loyalty-_accordions ._baaccordion__content {
			font-size: 16px;
		}
	
}


	


._ba-contacts-info__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (width <= 991px) {
  ._ba-contacts-info__row {
    flex-direction: column;
  }
}
._ba-contacts-info__row > div {
  flex: 1;
  display: flex;
  gap: 26px;
  flex-direction: column;
}
@media (width <= 991px) {
  ._ba-contacts-info__row > div {
    gap: 0;
  }
}
._ba-contacts-info__contact {
  display: flex;
}
@media (width <= 991px) {
  ._ba-contacts-info__contact {
    flex-direction: column;
  }
}
._ba-contacts-info__contact > div {
  flex: 1;
}
._ba-contacts-info__ya-map {
  border-radius: 30px;
  overflow: hidden;
  height: 600px;
  width: 100%;
}
@media (width <= 991px) {
  ._ba-contacts-info__ya-map {
    border-radius: 20px;
    height: 440px;
  }
}

._ba-contact__title {
  color: #8F1212;
  text-transform: uppercase;

  font-size: 1.125rem;
}
@media (width <= 991px) {
  ._ba-contact__title {
    font-size: 15px;
  }
}
@media (width <= 991px) {
  ._ba-contact__text {
    font-size: 15px;
  }
}
._ba-contact__socials span {
  font-size: 1.875rem;
  color: #8F1212;
}

._ba-page__container {
  width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
._ba-page__header {
  padding-bottom: 20px;
}

._ba-user__inner {
  grid-template-rows: repeat(2, max-content);
  row-gap: 40px;
  display: grid;
  -moz-column-gap: 135px;
  grid-template-columns: 1fr 2.21fr;
  column-gap: 135px;
}
._ba-user__header {
  -moz-column-gap: 135px;
  grid-template-columns: 1fr 2.21fr;
  column-gap: 135px;
  grid-column: 1/-1;
  grid-template-columns: subgrid;
  display: grid;
  overflow: hidden;
}
._ba-user__aside-menu {
  min-width: 315px;
  max-width: 100%;
  overflow: hidden;
  margin-left: auto;
}
._ba-user__heading {
  font-weight: 600;
  font-size: 2.5rem;           /* 40/16 */
  text-transform: uppercase;
  margin: 1.25rem 0 2.1875rem; /* 20/16=1.25, 35/16=2.1875 */
}

@media (width <= 991px) {
  ._ba-user__heading {
    font-size: 1.125rem;       /* 18/16 */
  }
}
._ba-user__loyalty {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
._ba-user__loyalty-dropdown {
  width: 100%;
  display: flex;
  flex-direction: column;
}
._ba-user__loyalty-dropdown.is-open ._ba-user__loyalty-dropdown-button {
  color: #8F1212;
}
._ba-user__loyalty-dropdown-button {
  display: flex;
  text-transform: uppercase;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}
._ba-user__loyalty-level-link {
  margin-top: 0.5rem;    /* 8/16 */
}
._ba-user__loyalty-level {
  padding: 1rem 0 0;     /* 16/16 */
  display: none;
}
._ba-user__loyalty-level > div {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;    /* 8/16 */
}
._ba-user__loyalty-level > div:not(:first-child) {
  font-size: 1rem;       /* 16/16 */
}
._ba-user ._ba-user-aside-menu__list {
  flex-direction: column;
  list-style: none;
  display: flex;
  gap: 1.875rem;   /* 30/16 */
}
._ba-user ._ba-user-aside-menu__menu-item {
font-size: 1.25rem;   /* 20/16 */
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  width: 100%;
  display: flex;
  justify-content: space-between;
gap: 0.625rem;   /* 10/16 */
  align-items: center;
  text-transform: uppercase;
}
._ba-user ._ba-user-aside-menu__menu-item.active {
  color: #8F1212;
}
._ba-user__loyalty-info {
  width: 392px;
  display: flex;
  flex-direction: column;
}
._ba-user__loyalty-info ul {
  list-style: none;
  margin-top: 2.375rem;   /* 38/16 */
}
._ba-user__loyalty-info ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1.25rem 0;      /* 20/16 */
  font-size: 1.25rem;      /* 20/16 */
}
._ba-user__loyalty-info ul li span:first-child {
  text-transform: uppercase;
}
._ba-user__loyalty-heading {
  font-weight: 600;
  font-size: 1.5rem;       /* 24/16 */
  text-transform: uppercase;
}
._ba-loyalty-card {
  height: 100%;
  width: 100%;
  max-width: 530px;
}
._ba-loyalty-card--white {
  color: #8F1212;
}
._ba-loyalty-card--rose {
  color: #8F1212;
}
._ba-loyalty-card--maroon {
  color: #F9E8DC;
}
._ba-loyalty-card--black {
  color: #F9E8DC;
}
._ba-loyalty-card__front {
  height: 100%;
  position: relative;
  height: 321px;
  border-radius: 25px;
  overflow: hidden;
  backface-visibility: hidden;
  background-image: var(--loyalty-card-bg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
._ba-loyalty-card__back {
  display: none;
}
._ba-loyalty-card__status {
  position: absolute;
  right: 30px;
  top: 30px;
  text-transform: uppercase;
  line-height: 1;
  font-size: 20px;
}
._ba-loyalty-card__logo {
  position: absolute;
  left: 30px;
  bottom: 30px;
  display: flex;
}
._ba-loyalty-card__logo svg path {
  fill: currentColor;
}

._ba-user-header__background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

._ba-auth__inner {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}
._ba-auth__links {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
.slick-arrow.slick-prev, .slick-arrow.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  transition: 0.5s;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #161619;
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
  z-index: 9;
  border: none;
  border-radius: 100%;
  width: 52px;
  height: 52px;
  /*! left: 0; */
}
.slick-arrow.slick-prev:hover, .slick-arrow.slick-prev:focus, .slick-arrow.slick-next:hover, .slick-arrow.slick-next:focus {
  outline: none;
}
.slick-arrow.slick-prev.slick-disabled:before, .slick-arrow.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-arrow.slick-prev:before, .slick-arrow.slick-next:before {
  font-size: 16px;
  line-height: 1;
  transition: 0.5s;
  color: #efefef;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-next {
  right: 0;
}

.slick-dots {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}
.slick-dots li {
  display: inline-block;
  line-height: 1;
  margin: 0 5px;
}
.slick-dots li:first-child {
  margin-left: 0;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 20px;
  height: 20px;
  padding: 7px;
  border: 0;
  outline: 0;
  position: relative;
  background: transparent;
}
.slick-dots li button:before {
  content: "";
  font-size: 6px;
  line-height: 20px;
  color: #161619;
  text-align: center;
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #cdcfd0;
}
.slick-dots li.slick-active button:before {
  background: #161619;
}

.accordion {
  border-bottom: 1px solid #e3e7e8;
}
.accordion:first-child {
  border-top: 1px solid #e3e7e8;
}
.accordion.active {
  #padding-bottom: 40px;
}
.accordion.active .accordion__icon-plus {
  transform: rotate(-90deg);
}

.accordion__title {
  position: relative;
  line-height: 1;
  font-size: 18px;
  padding: 29px 40px 29px 0;
  margin: 0;
  color: #161619;
  cursor: pointer;
  text-transform: uppercase;
}
@media (width <= 991px) {
  .accordion__title {
    font-size: 16px;
  }
}
.accordion__title:hover {
  color: rgba(0, 0, 0, 0.3);
}

.accordion__icon-plus {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 31px;
}
@media (width <= 991px) {
  .accordion__icon-plus {
    width: 24px;
  }
}
.accordion__icon-plus svg {
  width: 100%;
}

.accordion__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
@media (width <= 991px) {
  .accordion__content {
    font-size: 11px;
  }
}

._ba-accordion {
  border-bottom: 1px solid #e3e7e8;
}
._ba-accordion.test ._ba-accordion__icon-plus {
  transform: rotate(-90deg);
}

._ba-accordion:first-child {
  border-top: 1px solid #e3e7e8;
}
._ba-accordion.active {
  #padding-bottom: 40px;
}
._ba-accordion.active .accordion__icon-plus {
  transform: rotate(-90deg);
}

._ba-accordion__content {
  font-weight: 400;
  line-height: 1.5;
}
@media (width <= 991px) {
  ._ba-accordion__content {
    font-size: 11px;
  }
}
._ba-accordion__title {
  position: relative;
  line-height: 1;
  font-size: 18px;
   font-size: 1.125rem;
  padding: 29px 40px 29px 0;
  padding: 1.8125rem 2.5rem 1.8125rem 0;
  margin: 0;
  color: #161619;
  cursor: pointer;
  text-transform: uppercase;
  user-select: none;
}
@media (width <= 991px) {
  ._ba-accordion__title {
    font-size: 16px;
  }
}
._ba-accordion__title:hover {
  color: rgba(0, 0, 0, 0.3);
}
._ba-accordion__icon-plus {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1.9375rem   /* 31/16 */;
}
@media (width <= 991px) {
  ._ba-accordion__icon-plus {
    width: 24px;
  }
}
._ba-accordion__icon-plus svg {
  width: 100%;
}

._ba-home-banner__container {
  width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
  display: flex;
}
._ba-home-banner img {
  border-radius: 3.4375rem;   /* 55/16 */
  height: 100%;
  object-fit: cover;
}
@media (width <= 991px) {
  ._ba-home-banner img {
    border-radius: 22px;
  }
}
._ba-home-banner::before {
  content: "";
  inset: 0;
  border-radius: 3.4375rem;   /* 55/16 */
  background: rgba(0, 0, 0, 0.15);
}
@media (width <= 991px) {
  ._ba-home-banner::before {
    border-radius: 22px;
  }
}
._ba-home-banner__content {
  position: absolute;
  inset: 0;
  padding: 3.75rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
@media (width <= 991px) {
  ._ba-home-banner__content {
    padding: 25px;
  }
}
._ba-home-banner__description {
  font-size: 16px;
  color: #fff;
  margin-bottom: auto;
}
@media (width <= 991px) {
  ._ba-home-banner__description {
    display: none;
  }
}
._ba-home-banner__text {
  font-weight: 600;
  font-size: 50px;
  text-transform: uppercase;
  color: #fff;
 
  font-size: clamp(30px, 4vw, 50px);
  font-size: 3.125rem;
  width: 100%;
}

._ba-breadcrumbs__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
._ba-breadcrumbs__item {
  white-space: nowrap;
  display: flex;
  font-weight: 400;
  opacity: 0.35;
}
@media (width <= 991px) {
  ._ba-breadcrumbs__item {
    font-size: 11px;
  }
}
._ba-breadcrumbs__item:has(a) {
  opacity: 1;
}
._ba-breadcrumbs__item + ._ba-breadcrumbs__item::before {
  content: "/";
  padding-left: 4px;
  padding-right: 4px;
}
._ba-breadcrumbs__link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.breadcrumbs {
  display: flex;
  list-style: none;
  margin: 24px 0;
}
.breadcrumbs ul {
  display: flex;
  white-space: nowrap;
  list-style: none;
}
.breadcrumbs__item {
  display: inline-flex;
  font-weight: 400;
  font-size: 16px;
  opacity: 0.35;
}
@media (width <= 991px) {
  .breadcrumbs__item {
    font-size: 11px;
  }
}
.breadcrumbs__item:not(:last-child) {
  color: inherit;
  opacity: 1;
}
.breadcrumbs__item:not(:first-child)::before {
  content: "/";
  margin: 0 7px;
}
.breadcrumbs__link {
  text-decoration: none;
  touch-action: manipulation;
  color: inherit;
}

._ba-button {
  border-radius: 16px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  outline: 0;
  user-select: none;
  cursor: pointer;
}
@media (width <= 991px) {
  ._ba-button {
    width: 100%;
  }
}
._ba-button_size_m {
 height: 3.125rem;
  width: 15.9375rem;
    border-radius:1rem;
	
}


@media (width <= 991px) {
 ._ba-button_size_m {
 height: 46px;
  width: 246px;
    border-radius:16px;
	
}
}

._ba-button_size_l {
  width: 271px;
  height: 76px;
  width: 16.9375rem;   /* 271/16 */
height: 4.75rem;  
  border-radius: clamp(1rem, 1.5625rem, 1.5625rem);
  font-size: 1rem;
  
  
}
@media (width <= 991px) {
  ._ba-button_size_l {
    height: 46.5px;
    border-radius: 15px;
    font-size: 14px;
  }
}
._ba-button_full {
  width: 100%;
}
._ba-button_primary {
  color: #8f1212;
  background: #f9e8dc;
}
._ba-button_primary:hover {
  color: #f9e8dc;
  background: #8f1212;
  box-shadow: none;
}
._ba-button_outline {
  color: #8f1212;
  background: transparent;
  border: 1px solid;
}
._ba-button_outline:hover {
  background: #f9e8dc;
  border-color: #f9e8dc;
}

._ba-home-categories__container {
  width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
@media (width <= 991px) {
  ._ba-home-categories__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
._ba-home-categories__item {
  position: relative;
}
._ba-home-categories__item img {
  height: 100%;
  object-fit: cover;
  border-radius: 3.4375rem;
}
@media (width <= 991px) {
  ._ba-home-categories__item img {
    border-radius: 22px;
  }
}
._ba-home-categories__item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3.4375rem;
  background: rgba(0, 0, 0, 0.15);
}
@media (width <= 991px) {
  ._ba-home-categories__item::before {
    border-radius: 22px;
  }
}
._ba-home-categories__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2.5rem;
  width: 100%;
}
@media (width <= 991px) {
  ._ba-home-categories__content {
    padding: 32px;
  }
}
._ba-home-categories__text {
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
   font-size: clamp(30px, 4vw, 46px);
   font-size: 2.875rem;
}

._ba-cookie {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 119;
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  background-color: #fff;
  box-shadow: 4px 4px 16px 0 rgba(32, 32, 32, 0.15);
  transition: bottom 0.3s ease-out;
  border-radius: 20px;
  padding: 12px;
  align-items: center;
  gap: 16px;
  height: 60px;
  font-size: 14px;
}
@media (width <= 991px) {
  ._ba-cookie {
    left: 12.5px;
    bottom: 32px;
    width: calc(100% - 25px);
    padding: 8px 8px 8px 16px;
    height: 52px;
    border-radius: 16px;
  }
}
._ba-cookie__title {
  grid-column: 1/-1;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
}
._ba-cookie__text {
  grid-column: 1/-1;
  color: #202020;
  flex: 1;
  line-height: 17px;
}
._ba-cookie__button {
  padding: 7px;
  border-radius: 0.5rem;
  border-color: #e5e5e5;
  font-size: 16px;
  color: #8f1212;
  background: transparent;
  border: 1px solid;
}

._ba-input + ._ba-input {
  margin-top: 30px;
}
._ba-input + button {
  margin-top: 30px;
}
._ba-input__control {
  width: 100%;
  border-radius: 12px;
  background: #fdf9f6;
  padding: 15px 20px;
  border: none;
  outline: none;
  color: rgba(0, 0, 0, 0.8);
}

.promo {
  position: relative;
}
.promo__header {
  color: #fff;
  padding-block: 60px;
}
.promo__header-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.promo__header-title {
  font-weight: 700;
  font-size: 58px;
  text-transform: uppercase;
}
.promo__header-link {
  font-weight: 700;
  font-size: clamp(14px, 4vw, 16px);
  text-transform: uppercase;
  color: inherit;
  border-bottom: 1px solid;
}
.promo__header-info {
  max-width: 400px;
  padding-top: 20px;
}
.promo__cover {
  height: 561px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (width <= 991px) {
  .promo__cover {
    height: 280px;
  }
}
.promo__cover::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3.4375rem;   /* 55/16 */
  background: rgba(0, 0, 0, 0.15);
}
.promo__cover img {
  border-radius: 3.4375rem;   /* 55/16 */
  height: 100%;
  object-fit: cover;
}
.promo h2 {
  font-size: 58px;
  font-size: clamp(30px, 4vw, 58px);
}

.slick-products:not(.slick-initialized),
.slick-promo:not(.slick-initialized),
.slick-person:not(.slick-initialized) {
  overflow-y: auto;
  display: flex;
  gap: 20px;
  scrollbar-width: none;
}
.slick-products:not(.slick-initialized) > *,
.slick-promo:not(.slick-initialized) > *,
.slick-person:not(.slick-initialized) > * {
  width: 75%;
  flex-shrink: 0;
}

.fullwidth-slider .slick-arrow {
  color: #fff;
  width: 56px;
  height: 56px;
}
.fullwidth-slider .slick-arrow svg {
  height: 17px;
  width: 17px;
}
.fullwidth-slider__pagination {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.fullwidth-slide {
  display: flex;
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
}
.fullwidth-slide img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}
.fullwidth-slide p {
  font-size: 16px;
  color: #fff;
}
@media (width <= 991px) {
  .fullwidth-slide p {
    font-size: 14px;
  }
}
.fullwidth-slide__inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
}
.fullwidth-slide__title {
  font-weight: 700;
  font-size: 58px;
  text-transform: uppercase;
  color: #fff;
  max-width: 600px;
}
@media (width <= 991px) {
  .fullwidth-slide__title {
    font-size: 30px;
  }
}

.fullwidth-slider-wrapper {
  position: relative;
}

.fullwidth-slider-pagination {
  position: absolute;
  bottom: 47px;
  padding: 0 25px;
  width: 100%;
}
.fullwidth-slider-pagination ul {
  width: 100%;
  display: flex;
  gap: 5px;
}
.fullwidth-slider-pagination li {
  display: inline-block;
  line-height: 1;
  /*! margin: 0 5px; */
  flex: 1;
}
.fullwidth-slider-pagination li:not(.slick-active) {
  opacity: 0.37;
}
.fullwidth-slider-pagination li button {
  font-size: 0;
  line-height: 0;
  /*! width: 20px; */
  /*! height: 20px; */
  /*! padding: 7px; */
  border: 0;
  outline: 0;
  position: relative;
  background: transparent;
  background: #fff;
  height: 3px;
  width: 100%;
}

._ba-home-slider {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  #max-height: 795px;
  z-index: 1;
  display: block;
  position: relative;
}
@media (width <= 991px) {
  ._ba-home-slider {
    max-height: 605px;
  }
}
._ba-home-slider__wrapper {
  box-sizing: initial;
  z-index: 1;
  height: 100%;
  position: relative;
}
._ba-home-slider__slide {
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
  margin: 0 !important;
}
._ba-home-slider__picture-wrapper {
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 100%;
}
._ba-home-slider__picture-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
}
._ba-home-slider__content {
  font-size: 16px;
  color: #fff;
}
._ba-home-slider__content h2 {
  font-weight: 600;
  font-size: 3.625rem;
  text-transform: uppercase;
  color: #fff;
  /*! max-width: 833px; */
}
@media (width <= 991px) {
  ._ba-home-slider__content h2 {
    font-size: 30px;
  }
}
._ba-home-slider__content p {
  font-size: 16px;
  color: #fff;
}
@media (width <= 991px) {
  ._ba-home-slider__content p {
    font-size: 14px;
  }
}
._ba-home-slider__dots-pagination {
  z-index: 9;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  position: absolute;
  bottom: 47px;
  padding: 0 25px;
  width: 100%;
}
._ba-home-slider__dots-pagination ul {
  width: 100%;
  display: flex;
  gap: 5px;
}
._ba-home-slider__dots-pagination li {
  display: inline-block;
  line-height: 1;
  /*! margin: 0 5px; */
  flex: 1;
}
._ba-home-slider__dots-pagination li:not(.slick-active) {
  opacity: 0.37;
}
._ba-home-slider__dots-pagination li button {
  font-size: 0;
  line-height: 0;
  /*! width: 20px; */
  /*! height: 20px; */
  /*! padding: 7px; */
  border: 0;
  outline: 0;
  position: relative;
  background: transparent;
  background: #fff;
  height: 3px;
  width: 100%;
}

._ba-home-slider__slide-inner {
  position: absolute;
  /*! height: 100%; */
  top: 0;
  left: 0;
  /*! width: 300px; */
  /*! height: 300px; */
  /*! background: red; */
  width: 100%;
  height: 100%;
}

._ba-home-slider__content-wrapper {
  width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

._ba-home-slider .slick-arrow {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

._ba-home-slider .slick-arrow {
  color: #fff;
  width: 56px;
  height: 56px;
}

.tabs > ul {
  padding: 0;
  margin: 0;
}

.tabs__tab {
  list-style: none;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  transition: ease 0.4s;
  cursor: pointer;
  word-break: break-word;
}
@media (width <= 991px) {
  .tabs__tab {
    font-size: 14px;
  }
}

.tabs__tab.active {
  cursor: text;
}

.tabs__panels {
  position: relative;
}

.tabs__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  transform: translateY(30px);
  opacity: 0;
  transition: opacity ease 0.5s, transform ease 0.5s;
}

.tabs__panel.active {
  position: relative;
  transform: translateY(0);
  opacity: 1;
  z-index: 1;
}

.tabs__tab {
  display: inline-block;
}

.tabs__tab:hover {
  color: #161619;
}

.tabs__tab.active {
  color: #161619;
}

.tabs__panels {
  padding: 36px 0;
  position: relative;
}

.tabs > ul {
  flex: 0 0 auto;
  display: flex;
}

.tabs__tab {
  position: relative;
  margin: 28px 0;
  flex: 1;
}

.tabs__tab span {
  transition: transform 0.4s;
  display: inline-block;
}

.tabs__tab.active span {
  transform: translateX(30px);
  color: #161619;
}

.loyalty__tabs {
  margin-top: -49px;
  margin-top: -3.0625rem;   /* -49/16 */
  position: relative;
  z-index: 2;
}
@media (width <= 991px) {
  .loyalty__tabs {
    margin-top: -24px;
  }
}

.loyalty__tabs .tabs__tab {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
padding: 0.9375rem 0 3.125rem;   /* 15/16=0.9375, 50/16=3.125 */
margin: 0;
font-size: 1.5625rem;             /* 25/16 */
}
@media (width <= 991px) {
  .loyalty__tabs .tabs__tab {
    padding: 6px 0 2px;
  }
}

.loyalty__tabs .tabs__tab.active {
  color: #000;
}

.tabs__tab {
  position: relative;
}

.tabs__tab:before {
  content: "";
  display: none;
  position: absolute;
  height: 100%;
  background: #fff;
  border-radius: 200px;
  width: 100%;
  z-index: -1;
  bottom: 0;
}
@media (width <= 991px) {
  .tabs__tab:before {
    border-radius: 20px 20px 0 0;
  }
}

.tabs__tab.active:before {
  display: block;
}

._ba-products-listing__link-more {
  text-align: center;
  margin-top: 65px;
}

._ba-home-brands__container {
  width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
._ba-home-brands-link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 600;
  text-transform: uppercase;
}
._ba-home-brands__slider {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
._ba-home-brands__item {
  position: relative;
}
._ba-home-brands__item-image {
  height: 40px;
}
._ba-home-brands__item-link {
  text-decoration: underline;
}
._ba-home-brands__item-link:hover {
  text-decoration: none;
}

._ba-text-color {
  color: #8F1212;
}

._ba-modal2 {
  max-width: 530px;
}
._ba-modal2:not(.open) {
  display: none;
}
._ba-modal2__wrapper {
  width: calc(100% - 48px);
  max-width: 600px;
  min-height: 0;
  background: #fff;
  padding: 2.5rem;   /* 40/16 */        /* 20/16 */
border-radius: 1.875rem;   /* 30/16 */
  position: relative;
  pointer-events: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
._ba-modal2__heading {
  font-weight: 600;
}

._ba-modal2 {
  max-width: 530px;
}
._ba-modal2:not(.open) {
  display: none;
}

._ba-modal2__heading {
  font-weight: 600;
}

._ba-notifications {
  z-index: 99999;
  position: fixed;
}

._ba-notification {
  display: flex;
  max-width: 391px;
  border-radius: 30px;
  box-shadow: 6px 6px 16px rgba(63, 59, 56, 0.12);
  background: #fff;
}
._ba-notification + ._ba-notification {
  margin-top: 12px;
}

._ba-notification-product__content {
  display: flex;
  gap: 20px;
  padding: 16px;
}
._ba-notification-product__image-container {
  width: 77px;
  height: 88px;
  flex-shrink: 0;
  background: #FAFAFA;
  padding: 10px;
  border-radius: 16px;
}
._ba-notification-product__image {
  object-fit: cover;
  height: 100%;
  mix-blend-mode: multiply;
}
._ba-notification-product__content-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
._ba-notification-product__title svg {
  font-size: 16px;
}
._ba-notification-product__text {
  color: #8F1212;
  font-weight: 600;
  margin-left: 4px;
  vertical-align: baseline;
}
._ba-notification-product__name {
  overflow: hidden;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
._ba-notification-product__attribute {
  font-size: 14px;
}

._ba-select {
  background: none;
  border: none;
}

._ba-home-bloggers__container {
  width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  display: flex;
  position: relative;
}
._ba-home-bloggers__header {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
}
._ba-home-bloggers__header-heading {
  font-weight: 600;
  font-size: clamp(30px, 4vw, 40px);
font-size: 2.5rem;         /* 40/16 */
text-transform: uppercase;
margin-bottom: 0.9375rem;  /* 15/16 */
}
._ba-home-bloggers__header-text {
padding-right: 6.875rem;   /* 120/16 */
}
._ba-home-bloggers__header-link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
._ba-home-bloggers__slider {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

._ba-home-bloggers__slider-items {
	position: static;
}
._ba-home-bloggers__item {
  position: relative;
}
._ba-home-bloggers__item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3.4375rem;   /* 55/16 */
  background: rgba(0, 0, 0, 0.15);
}
._ba-home-bloggers__item-image {
  width: 100%;
  border-radius: 3.4375rem;   /* 55/16 */
  display: block;
}
._ba-home-bloggers__item-content {
  width: 100%;
  padding: 2.5rem 1.5625rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
._ba-home-bloggers__item-name {
  font-weight: 600;
  font-size: 1.8125rem;
  text-transform: uppercase;
  color: #fff;
}
._ba-home-bloggers__item-link {
  text-decoration: underline;
  color: #fff;
}
._ba-home-bloggers__item-link:hover {
  text-decoration: none;
}

/*
_ba-products-slider-with-header {

 }

 */
._ba-home-product__container {
  width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  display: flex;
}
._ba-home-product__header {
  flex: 0 0 25%;
  padding: 40px 0 60px;
  padding: 2.5rem 0 3.75rem;
  display: flex;
  flex-direction: column;
}
._ba-home-product__header-heading {
  font-weight: 600;
 font-size: clamp(30px, 4vw, 40px); 
 font-size: 2.5rem; 
 
 margin-bottom: 1.25rem;
 
  text-transform: uppercase;
}
._ba-home-product__header-text {
  padding-right: 120px;
}
._ba-home-product__header-link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 10px;
  /*! font-size: clamp(14px, 4vw, 16px); */
  font-weight: 600;
  text-transform: uppercase;
}
._ba-home-product__slider {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

._ba-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  z-index: 998;
}

._ba-qnt {
  display: inline-flex;
  border: 1px solid #8F1212;
  border-radius: 100px;

  color: #8F1212;
  position: absolute;
  right: 0;
  top: 0;
}
._ba-qnt__input {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
  min-width: 2ch;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  background: 0 0;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  cursor: default;
  color: inherit;
  font-weight: 600;
}
._ba-qnt__decrease {
  order: -1;
}
._ba-qnt__decrease, ._ba-qnt__increase {
color: inherit;
font-size: 1rem;           /* 16/16 */
padding: 0 1rem;           /* 16/16 */
line-height: 2.375rem;     /* 38/16 */
user-select: none;
cursor: pointer;
transition: 0.4s;
}

._ba-cart::after {
  content: "";
  height: 130px;
  margin-top: 20px;
  display: block;
}
._ba-cart__title {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
}
._ba-cart__item {
  padding-top: 20px;
  padding-bottom: 20px;
}
._ba-cart__totals {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 40px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 -4px 16px rgba(63, 59, 56, 0.04);
}
@media (width <= 991px) {
  ._ba-cart__totals {
    gap: 12px;
  }
}
._ba-cart__totals > * {
  flex: 1;
}
@media (width <= 991px) {
  ._ba-cart__totals > * {
    flex: none;
  }
}
._ba-cart__totals-total {
  display: flex;
  flex-direction: column;
}
._ba-cart__totals-title {
  font-size: 18px;
  flex-grow: 1;
  flex-shrink: 1;
}
._ba-cart__totals-value {
  font-size: 1.5rem;
  font-weight: 600;
}

._ba-cart-item {
  padding: 1.25rem 0;   /* 20/16 */
}
._ba-cart-item_with-divider {
  border-bottom: 1px solid #f2f2f2;
}
._ba-cart-item__content {
  align-items: stretch;
  column-gap: 20px;
  display: flex;
  position: relative;
}
._ba-cart-item__preview {
  width: 152px;
  height: 157px;
  
  width: 9.5rem;     /* 152/16 */
height: 9.8125rem; /* 157/16 */
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: #FDF9F6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border-radius: clamp(1rem, 1.25rem, 1.25rem);   /* 16/16=1, 20/16=1.25 */
}
@media (width <= 991px) {
  ._ba-cart-item__preview {
    width: 70px;
    height: 80px;
  }
}
._ba-cart-item__image {
  display: block;
  width: 101px;
  mix-blend-mode: multiply;
}
._ba-cart-item__right {
  flex-direction: column;
  flex-grow: 1;
  display: flex;
  gap: 12px;
}
._ba-cart-item__heading {
  flex-direction: column;
  row-gap: 12px;
  max-width: 310px;
  display: flex;
}
._ba-cart-item__name {
  text-transform: none;
  word-break: break-word;
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
}
@media (width <= 991px) {
  ._ba-cart-item__name {
    font-size: 14px;
  }
}
._ba-cart-item__brand {

  font-style: italic;
  color: #8F1311;
}
._ba-cart-item__attribute {

  flex-grow: 1;
  flex-shrink: 1;
}
._ba-cart-item__price {
  justify-content: flex-end;
  align-items: center;
  column-gap: 20px;
  display: flex;
  font-weight: 600;
}
._ba-cart-item__amount {
  font-size: 1.25rem;
}
@media (width <= 991px) {
  ._ba-cart-item__amount {
    font-size: 15px;
  }
}

@media (width <= 991px) {
  ._ba-qnt {
    display: none;
  }
}
._ba-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1600;
}
._ba-modal:not(.open) {
  display: none;
}


._ba-modal__close {
  position: absolute;
right: 2.5rem;   /* 40/16 */
top: 2rem;       /* 32/16 */
  padding: 0;
  
    width: 2.5rem;
  height: 2.5rem;
}

._ba-modal__close svg {
 width: 100%;
  height: 100%;
  display: block;
}
  

._ba-modal__wrapper {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  max-width: 707px;
  width: 100%;
  margin: 0;
  background: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.5s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
}

._ba-modal__header,
._ba-modal__content {
  padding: 0 60px;
}

._ba-modal__header {
  padding-top: 35px;
}

._ba-modal__content {
  flex: 1;
  overflow-y: auto;
  padding: 0 40px;
}

body.panel-opened {
  overflow: hidden;
}

.site {
  min-height: 100%;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

.site-content {
  padding-bottom: 60px;
}

.slick-slide {
  margin: 0 15px;
}

@media (width <= 991px) {
  ._ba-footer__collapse-header::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 14px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='14' viewBox='0 0 25 14' fill='none'%3E%3Cpath d='M18.3529 0.327926L24 6.82793M24 6.82793L18.3529 13.3279M24 6.82793L-2.6917e-07 6.82793' stroke='%23F9E8DC'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
  }
}

@media (width <= 991px) {
  ._ba-footer__collapse-header {
    padding: 20px 25px;
    margin: 0 -25px;
  }
}

._ba-footer__collapse-header::after {
  right: 25px;
}

._ba-footer__menu-title {
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
padding: 0 0 1.875rem;   /* 30/16 */
}

@media (width <= 991px) {
  ._ba-footer__column div:nth-child(2), ._ba-footer__column ul {
    display: none;
  }
}
@media (width <= 991px) {
  ._ba-footer__title {
    padding: 20px 25px;
    margin: 0 -25px;
  }
}
._ba-footer__column:last-child ._ba-footer__title {
  border-bottom: 1px solid;
}

.product__quantity {
  box-shadow: none;
  color: #f9e8dc;
  background: #8f1212;
}

._ba-plp-panel__panel {
  padding-top: 15px;
}

._ba-plp-panel__panel {
  padding-bottom: 15px;
}

._ba-plp-panel__container {
  max-width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}

._ba-plp-header__title {
  text-transform: uppercase;
  font-size: 54px;
  font-weight: 600;
}

@media (width <= 991px) {
  ._ba-plp-header__title {
    font-size: 30px;
  }
}
._ba-icon {
  display: inline-flex;
}



._ba-plp-header {
  min-height: 25.9375rem;
}


@media (width <= 991px) {
._ba-plp-header {
  min-height: 193px;
}
}


._ba-plp-header {
  color: #fff;
  #pointer-events: none;
  position: relative;
}

._ba-plp-header__adult {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

._ba-plp-header__image-responsive, ._ba-plp-header__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

._ba-plp-header__image-wrapper {
  overflow: hidden;
}

._ba-plp-header__image-wrapper::after {
  background: #000;
  content: "";
  opacity: 0.2;
}

._ba-plp-header__image-wrapper, ._ba-plp-header__image-wrapper::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (min-width: 1120px) {
  ._ba-plp-panel_complex {
    padding-top: 5px;
  }
}
._ba-plp-panel_complex {
  padding-bottom: 15px;
}

@media screen and (min-width: 768px) {
  ._ba-plp-header__header-info-wrapper {
    align-items: flex-end;
  }
}
._ba-plp-header__header-info-wrapper {
  min-height: inherit;
  justify-content: center;
  width: 100%;
  display: flex;
}

._ba-plp-header__header-info {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column-reverse;
  width: 100%;
  max-width: 1690px;
  padding: 15px 30px;
}

@media screen and (min-width: 1120px) {
  ._ba-plp-header__header-info {
    padding: 30px 30px 80px;
    flex-direction: column;
  }
}
._ba-plp-header_not-cover {
  min-height: 160px;
  color: #000;
}

._ba-product-card__name {
  font-weight: 600;
  /*! font-size: 1rem; */
  text-transform: uppercase;
  margin-top: 5px;
  display: inline-block;
  /*! font-size: clamp(14px, 4vw, 20px); */
  /*! height: 44px; */
  display: -webkit-box;
  overflow: hidden;
    -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (width <= 991px) {
  ._ba-product-card__name {
    font-size: 14px;
  }
}
._ba-product-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 2rem 2.25rem 2.5rem;
  border-radius: 2.25rem;
  background: #fafafa;
  position: relative;
}

@media (width <= 991px) {
  ._ba-product-card {
    gap: 15px;
    padding: 7px 24px 18px;
    border-radius: 22px;
    gap: 0;
  }
}
._ba-plp-panel__group {
  flex: 1 0 20%;
  align-items: center;
  display: flex;
}

._ba-plp-panel__group_right {
  justify-content: flex-end;
}

._ba-plp-panel__group {
  flex: 1 0 20%;
  align-items: center;
  display: flex;
}

._ba-product-card-in__icon {
  width: 32px;
  height: 32px;
  color: #8F1212;
}

@media (width <= 991px) {
  ._ba-product-card-in__icon {
    width: 22x;
    height: 22px;
  }
}
._ba-product-card__brand {
  color: #8f1212;
  font-style: italic;
  font-size: 0.875rem;
  /*! font-size: clamp(14px, 4vw, 10px); */
}

._ba-product-card__image {
  mix-blend-mode: multiply;
  height: 230px;
  margin: 0 auto;
  display: block;
}

._ba-product-card__info {
  margin-top: 16px;
  font-size: 1.125rem;
}

._ba-grid-cards-listing__page {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}

@media (width <= 991px) {
  ._ba-grid-cards-listing__page {
    grid-template-columns: repeat(2, 1fr);
  }
}
._ba-product-card-vertical__ratio {
  position: relative;
}

._ba-product-card-vertical__name {
  display: flex;
  flex-direction: column;
}

._ba-price {
  font-weight: 600;
  margin-top: 30px;
  font-size: clamp(14px, 4vw, 20px);
}

._ba-product-card__cart,
._ba-product-card__favorite {
  pointer-events: auto;
}

._ba-product-card__actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

._ba-product-card__labels {
  position: absolute;
  top: 0;
  left: 0;
}

._ba-product-card__favorite {
  position: absolute;
  top: 28px;
  right: 28px;
  
  
  top: 1.75rem;
  right: 1.75rem;
  
}

._ba-product-card-favorite_added {
  color: red;
}

._ba-product-card__cart {
  position: absolute;
  bottom: 28px;
  right: 28px;
  
  bottom: 1.75rem;
  right: 1.75rem;
}

@media (width <= 991px) {
  ._ba-plp-panel-categories {
    display: none;
  }
}
._ba-plp-panel-categories__inner {
  display: flex;
  gap: 22px;
  overflow-y: auto;
  /* scrollbar-width: none;*/
}

._ba-plp-panel-categories__item {
  border: 1px solid #dfdfdf;
  border-radius: 3.4375rem;   /* 55/16 */
  width: 315px;
  height: 94px;
  
  
  width: 19.6875rem;
  height: 5.875rem;
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (width <= 991px) {
  ._ba-plp-panel-categories__item {
    min-width: 203px;
    height: 59px;
  }
}
._ba-plp-category-chip__text {
  
  text-transform: uppercase;
}

._ba-plp-panel__inner {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

._ba-plp-panel__count {
  color: rgba(0, 0, 0, 0.35);
}

@media (width <= 991px) {
  ._ba-plp-panel__count {
    font-size: 14px;
  }
}
._ba-button-base {
  align-items: center;
  display: flex;
  padding: 0;
}

._ba-filters-toggle__label {
  margin-left: 11px;
}

._ba-offset-panel__content {
  padding: 32px 40px;
}
._ba-offset-panel__heading {
  font-size: 32px;
  text-transform: uppercase;
}

._ba-home-category {
  margin: 0 auto;
}

._ba-category-slider__inner {
  position: relative;
  padding-top: 240px;
  padding-top: 15rem;
}
._ba-category-slider__link {
  font-weight: 600;
  #font-size: clamp(14px, 4vw, 16px);
  text-transform: uppercase;
  color: inherit;
  border-bottom: 1px solid;
  position: absolute;
  right: 0;
  top: 10px;
}
._ba-category-slider__bg-wrapper {
  position: absolute;
  top: 0;
  overflow: hidden;
  height: 560px;
  left: 0;
  right: 0;
}
._ba-category-slider__bg-image-wrapper {
  position: relative;
  display: flex;
}
._ba-category-slider__bg-image-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.15);
}
._ba-category-slider__slider-wrapper {
  margin: 0 auto;
  
width: 1260px;
padding-left: 30px;
padding-right: 30px;

  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  

  /*
  left: 0;
      right: 0;
  	margin: 0 auto;
  	box-sizing: border-box;
      justify-content: center;
  display: flex;

    */
}
._ba-category-slider__title-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
width: 1260px;

  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
  padding-top: 60px;
  
padding-left: 30px;
padding-right: 30px;


padding-top: 3.75rem;        /* 60/16 */
padding-left: 30px;      /* 30/16 */
padding-right: 30px;     /* 30/16 */
}
._ba-category-slider__title-wrapper p {
  margin: 0;
  padding-top: 5px;
}
._ba-category-slider__title {
 font-size: clamp(30px, 4vw, 58px);
 font-size: 3.625rem;
 
  text-transform: uppercase;
  font-weight: 600;
}

._ba-float-social {
  position: fixed;
  z-index: 9;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (width <= 991px) {
  ._ba-float-social {
    right: 40px;
    bottom: 32px;
  }
}
._ba-float-social__link {
  color: #F9E8DC;
  font-size: 0;
  padding: 12px;
  border-radius: 64px;
  background: #8f1212;
  transition: 0.25s ease-out;
}
@media (width <= 991px) {
  ._ba-float-social__link {
    padding: 13px;
  }
}
._ba-float-social__link:hover {
  transform: scale(0.9);
}

.header {
  z-index: 100;
  width: 100%;
  background: #fff;
  top: 0;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (width <= 991px) {
  .header {
    height: 54px;
    /*
        @at-root .site::before {
          content: '';
          display: block;
          width: 100%;
          height: 54px;
        }
          */
  }
}
.header__mobile {
  display: none;
}
@media (width <= 991px) {
  .header__mobile {
    display: block;
    height: 100%;
  }
}
.header__mobile .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 14px;
}
.header__top {
  height: 100%;
  z-index: 1;
  position: relative;
 
}
@media (width <= 991px) {
  .header__top {
    display: none;
  }
}
.header__top .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  /*! height: 100%; */
}
.header__bottom {
  width: 100%;
}
.header__bottom > .container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 100%;
}
@media (width <= 991px) {
  .header__bottom {
    display: none;
  }
}
.header__phone {
  justify-self: start;
}
.header__logo {
  justify-self: center;
  margin: 0 auto;
  height: 20px;
  line-height: 1;
}
@media (width <= 991px) {
  .header__logo {
    height: 14px;
  }
}
.header__logo svg {
  height: 100%;
  max-width: 100%;
}
.header__icons {
  display: flex;
  column-gap: 1.5rem;
  justify-self: end;
}
.header .counter {
  position: absolute;
  left: 15px;
  bottom: -3px;
  /*! min-width: 18px; */
  /*! height: 18px; */
  /*! padding: 1px 5px; */
  font: 400 11px/16px sans-serif;
  text-align: center;
  color: #fff;
  background: #8f1212;
  border-radius: 100px;
  z-index: 9;
}
.header__icon {
  position: relative;
  display: inline-flex;
}
@media (width <= 991px) {
  .header__icon .svg-icon {
    font-size: 18px;
  }
}
.header__catalog {
  width: 100%;
}
.header__catalog-list {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.header__catalog-link span {
  text-transform: uppercase;
  font-size: 18px;
}
.header__catalog-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 1793px;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0;
  background: #fff;
  border-radius: 0 0 55px 55px;
  pointer-events: none;
  transition: opacity 0s linear 0.2s;
}
.header__catalog-dropdown .container {
  display: flex;
}
.has-dropdown:hover .header__catalog-dropdown {
  opacity: 1;
  pointer-events: all;
  transition-delay: 0.3s;
}
.header__catalog-left {
  flex: 1;
  position: relative;
  margin: 36px 0;
}
.header__catalog-right {
  flex: 1;
  position: relative;
  margin: 50px 0;
}
.header__catalog-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  box-sizing: border-box;
}
.header__catalog-menu .header__catalog-menu {
  left: 100%;
  width: 100%;
}
.header__catalog-menu-link {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 500 14px/1.2 sans-serif;
}
.header__catalog-menu-link:has(+ div)::after {
  content: "";
  width: 7px;
  height: 10px;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml,<svg width="7" height="10" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 0.999999L5 5L1 9" stroke="black" stroke-width="1.5"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml,<svg width="7" height="10" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 0.999999L5 5L1 9" stroke="black" stroke-width="1.5"/></svg>') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  margin-left: 12px;
}
.header__catalog-menu ul {
  list-style: none;
  padding: 0 30px 0 0;
}

.header--transparent {
  background: transparent;
  position: absolute;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}
@media (width <= 991px) {
  .form-row {
    flex-direction: column;
  }
}

.field {
  flex: 1;
}
.field__title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  display: inline-block;
}
.field__input {
  width: 100%;
  border-radius: 12px;
  background: #fdf9f6;
  padding: 15px 20px;
  border: none;
}
.radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.radio__input {
  width: 1em;
  height: 1em;
  margin: 0;
  margin-right: 0.5em;
  border: 1px solid #8f1212;
  border-radius: 50%;
  appearance: none;
}

.radio__input:checked {
  border-color: #8f1212;
  background-color: #fff;
  padding: 3px;
}

.radio__input:checked::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  /*! margin: 2px; */
  background: #8f1212;
  border-radius: 50%;
  /*! box-sizing: border-box; */
}

.radio__label {
  font-size: 1rem;
}

._ba-footer {
  background: #8F1212;
  color: #F9E8DC;
  padding-bottom: 80px;
}
._ba-footer a {
  color: inherit;
}
._ba-footer__container {
  width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
._ba-footer__row {
  padding-top: 5rem;   /* 80/16 */
}
._ba-footer__column {
  display: flex;
  flex-direction: column;
}
._ba-footer__column:last-child {
  min-width: 400px;
  margin-left: 110px;
}
@media (width <= 991px) {
  ._ba-footer__column:last-child {
    display: block;
    min-width: auto;
    margin-left: 0;
  }
}
@media (width <= 991px) {
  ._ba-footer__column:nth-child(2) {
    order: -1;
  }
}
._ba-footer__item {
  line-height: 20px;
}
._ba-footer__contacts p:first-child {
  margin-top: 0;
}
._ba-footer__collapse-content {
  overflow: hidden;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}
._ba-footer__socials {
  margin-bottom: 1.5rem;
}
._ba-footer__menu {
  --footerMenuColumns: 5;
  display: grid;
  grid-template-columns: repeat(var(--footerMenuColumns), 1fr);
  gap: 30px;
}

@media (width <= 991px) {
  ._ba-footer__menu {
    --footerMenuColumns: 1;
    gap: 0;
    padding: 60px 0 20px;
  }
}
._ba-footer__menu-item {
  display: flex;
  flex-direction: column;
}
._ba-footer__menu-item:last-child {
  min-width: 400px;
  margin-left: 100px;
}
@media (width <= 991px) {
  ._ba-footer__menu-item:last-child {
    min-width: auto;
    margin-left: 0;
  }
}
._ba-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 10px;
}
._ba-footer__menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 10px;
}
@media (width <= 991px) {
  ._ba-footer__menu-links {
    padding-bottom: 20px;
  }
}
._ba-footer__menu-link {
  line-height: 1.25rem;   /* 20/16 */
}
._ba-footer__copyright {
  font-size: 12px;
  opacity: 0.7;
  margin-top: auto;
}
@media (width <= 991px) {
  ._ba-footer__copyright {
    margin-top: 40px;
    font-size: 10px;
  }
}

._ba-socials__list {
  list-style: none;
  display: flex;
  gap: 1rem;
}
._ba-subscribe__text {
  font-weight: 400;
}
._ba-subscribe__field {
  display: flex;
  position: relative;
}
._ba-subscribe__field input {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 1px solid;
  color: inherit;
}
._ba-subscribe__field button {
  position: absolute;
  right: 0;
}
._ba-subscribe small {
  display: block;
  margin: 1rem 0 0;
  font-size: 0.625rem   /* 10/16 */;
}

.section {
  margin: 0 0 50px;
}
.section__header {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
@media (width <= 991px) {
  .section__header {
    padding: 20px 0;
  }
}
.section__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.section__title {
  font-weight: 700;
  font-size: clamp(30px, 4vw, 40px);
  text-transform: uppercase;
}
@media (width <= 991px) {
  .section__description {
    display: none;
  }
}
.section__link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
}
@media (width <= 991px) {
  .section__link {
    display: none;
  }
}

.scroll-gallery__item {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

.scroll-gallery__item img {
  width: 100vw;
}

@media (min-width: 1200px) {
  .scroll-gallery__item img {
    width: 32vw;
  }
}
.popup-layout-fullscreen {
  height: 100vh;
  width: 100%;
}

.page-header .entry-thumbnail {
  position: relative;
}

.page-header--single .entry-thumbnail {
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  height: 100vh;
}
@media (width <= 991px) {
  .page-header--single .entry-thumbnail {
    max-height: 716px;
  }
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 1100;
}
.modal .modal-header {
  padding: 45px 60px;
}
.modal .modal-header h3 {
  margin: 0;
}
.modal .modal-content {
  position: relative;
  background: #fff;
  height: 100vh;
  width: 100%;
  overflow-y: auto;
}
.modal.open {
  visibility: visible;
  z-index: 2000;
}
.modal.open .modal-header {
  opacity: 1;
}
.modal.open .modal-content {
  opacity: 1;
}
.modal .backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0.5;
}
.modal .button-close {
  position: absolute;
  right: 60px;
  top: 45px;
  z-index: 1;
}

body.modal-opened {
  overflow: hidden;
}

.popup-modal .button-close {
  top: 12px;
  right: 20px;
  z-index: 2;
}
.popup-modal .popup-modal-content {
  width: 900px;
  max-width: 90%;
  min-height: 540px;
  max-height: 100%;
  display: flex;
  align-items: stretch;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background: #fff;
}
.popup-modal .popup-image {
  flex: 1;
}
.popup-modal .popup-image img {
  display: block;
}
.popup-modal .popup-image-holder {
  background-size: cover;
}
.popup-modal .popup-content {
  flex: 1;
  display: flex;
  align-items: center;
  z-index: 1;
}
.popup-modal .popup-content-wrapper {
  padding: 40px;
}
.popup-modal .popup-content-wrapper > :first-child {
  margin-top: 0;
}
.popup-modal .popup-content-wrapper > :last-child {
  margin-bottom: 0;
}

._ba-home-products-listing ._ba-home-product__header {
	height: 100%;
}


._ba-product-tags__title {
	font-size: 2.5rem;
}



._ba-product-card {
	gap: .75rem;
  padding: 2rem 2.25rem 2.5rem;
}