/* CATALOG TABS */
.catalog-tabs .tabs-links{
  overflow: auto;
  -ms-overflow-style: none;
}
.catalog-tabs .tabs-links::-webkit-scrollbar{
  display: none;
}
.catalog-tabs .tabs-links a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--white2);
  padding: 10px 8px 8px 8px;
  min-width: 135px;
  background: var(--white);
}
.catalog-tabs .tabs-links a:first-of-type{
  border: 1px solid var(--red);
}
.catalog-tabs .tabs-links a p{
  font-size: 12px;
  line-height: 18px;
  color: var(--dark);
  font-weight: 500;
  text-transform: uppercase;
}
.catalog-tabs .tabs-links a svg{
  width: 32px;
  height: 32px;
}
.catalog-tabs .tabs-links a:hover{
  border: 1px solid var(--beige);
}
.catalog-tabs .tabs-links a:hover svg path,
.catalog-tabs .tabs-links a.active svg path{
  fill: var(--beige);
}
.catalog-tabs .tabs-links a:hover p{
  color: var(--beige);
}
.catalog-tabs .tabs-links a:first-of-type:hover{
  border: 1px solid var(--red);
}
.catalog-tabs .tabs-links a:first-of-type:hover svg path{
  fill: var(--red);
}
.catalog-tabs .tabs-links a:first-of-type:hover p{
  color: var(--red);
}
.catalog-tabs .tabs-links a.active{
  background: var(--white2);
}
.catalog-tabs .tabs-links a.active p{
  color: var(--beige);
}
.catalog-tabs .tabs-links a:first-of-type.active{
  background: var(--red);
}
.catalog-tabs .tabs-links a:first-of-type.active p{
  color: var(--white);
}
.catalog-tabs .tabs-links a:first-of-type.active svg path{
  fill: var(--white);
}
.catalog-tabs .tabs-content{
  margin-top: 20px;
}
.catalog-tabs .d-grid{
  overflow: auto;
  -ms-overflow-style: none;
}
.catalog-tabs .d-grid::-webkit-scrollbar{
  display: none;
}
.catalog-tabs .product-card{
  min-width: 274px;
}

/* ADVERTISEMENT */
.advertisement{
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.advertisement-img{
  position: absolute;
  right: 50%;
  top: -120px;
  transform: translateX(50%);
}
@media (min-width: 1920px){
  .advertisement-img{
    width: 100%;
  }
}
.advertisement p{
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
  max-width: 641px;
}
.advertisement p b{
  font-weight: 500;
  letter-spacing: 4.6px;
  text-transform: uppercase;
  margin-top: 90px;
  display: block;
}
.advertisement h6{
  margin-bottom: 20px;
}
.advertisement .btn{
  background: var(--beige);
  color: var(--white);
  margin-top: 100px;
}

/* SECTION TEXT */
.section-text{
  max-width: 633px;
  width: 42%;
}
.section-text_imgs{
  max-width: 760px;
  width: 58%;
  height: 100%;
  min-height: 600px;
}
.section-text_imgs.d-grid{
  gap: 18px;
  grid-template-rows: 64% 33%;
}
.section-text_imgs img{
  height: max-content;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-text_imgs img:nth-of-type(1){
  grid-row: 1;
}
.section-text_imgs img:nth-of-type(2){
  grid-row: 2 span;
}
.section-text_imgs img:nth-of-type(3){
  grid-row: 2;
}
.section-text_content{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-text_content strong{
  font-weight: 600;
}

/* BANNERS */
.banner{
  background-repeat: no-repeat;
  background-size: 100%;
  height: 500px;
  display: flex;
  align-items: center;
}
.collections-banner,
.category-banner,
.subcategory-banner{
  background-position-y: -130px;
}
.collection-banner{
  background-position-y: 28%;
}
.history-banner{
  background-position-y: 53%;
}
.shops-banner{
  background-position-y: 72%;
}
.contacts-banner{
  background-position-y: 66%;
}
.press-banner{
  background-position-y: 14%;
}
.reviews-banner{
  background-position-y: 35%;
}

/* COLLECTION */
.collection-banner .big-title{
  line-height: 140px;
}

/* FILTER */
.filter{
  display: flex;
  justify-content: space-between;
}
.filter-option{
  position: relative;
}
.filter-options{
  display: none;
  position: absolute;
  background: var(--white);
  padding: 20px;
  border: 1px solid var(--beige);
  z-index: 5;
  width: max-content;
  max-width: 338px;
  max-height: 460px;
  overflow: auto;
  top: 40px;
}
.filter-option.active .filter-options{
  display: block;
}
.filter-options ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.filter-options ul li a{
  color: var(--dark);
  font-size: 16px;
  line-height: 24px;
}
.filter-options ul li a:hover,
.filter-options ul li a.selected{
  color: var(--beige);
}
.filter-options ul li a svg{
  margin-left: 10px;
}
.filter-option_switch{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.filter-option_switch svg{
  transition: all 0.3s ease;
}
.filter-option.active .filter-option_switch svg{
  transform: rotate(-180deg);
}
.filter-sort .filter-options{
  right: 0;
}
/* filter mobile */
.filter-mobile{
  background: var(--white);
  padding: 20px 20px 178px 20px;
  position: fixed;
  left: -100%;
  top: 0;
  transition: all 0.3s ease;
  z-index: 55;
  height: 100%;
  min-width: 300px;
}
.filter-mobile.show{
  left: 0;
}
.filter-mobile_header{
  margin-bottom: 40px;
}
.filter-mobile_header p{
  font-size: 20px;
  line-height: 24px;
}
.filter-mobile .accordion{
  overflow: auto;
  max-height: 100%;
  padding-bottom: 70px;
}
.filter-mobile .accordion-header p{
  font-size: 16px;
  line-height: 19px;
  color: var(--dark);
}
.filter-mobile .accordion-content{
  padding-left: 20px;
}
.filter-mobile_param{
  display: flex;
  gap: 10px;
}
.filter-mobile_param label{
  font-size: 14px;
  line-height: 20px;
  color: var(--dark);
}
.filter-mobile_footer{
  position: absolute;
  z-index: 1;
  padding: 20px;
  background: var(--white);
  left: 0;
  bottom: 0;
}
.filter-mobile_footer button:last-of-type{
  background: var(--beige);
  color: var(--white);
}

/* HISTORY */
.banner-mursak{
  min-height: 500px;
  max-height: 810px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.banner-mursak img{
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  object-position: 40%;
}

/* SHOPS */
.shops{
  column-gap: 20px;
  row-gap: 100px;
}
.shop h5{
  font-size: 40px;
  font-weight: 500;
  font-family: 'Noto Serif Display';
}
.shop-img{
  margin: 20px 0;
  height: 460px;
}
.shop-img img,
.press-item_img img{
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 460px;
  object-fit: cover;
  display: block;
}
.shop p{
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 10px;
}
.shop a:hover p{
  color: var(--beige);
}

/* CONTACTS */
.contacts-map{
  max-width: 908px;
  width: 100%;
}
.contacts-map iframe{
  width: 100%;
  height: 100%;
}
.contacts-content h5{
  font-size: 40px;
  line-height: 55px;
  font-weight: 500;
  font-family: 'Noto Serif Display';
}
#contactsForm{ 
  margin-top: 80px; 
}
.contacts-content p{
  font-size: 24px;
  line-height: 36px;
}
#contactsForm p{
  font-size: 20px;
  line-height: 36px;
}

/* PRESS */
.press-item_content{
  padding: 10px 20px;
}
.press-item_img{
  overflow: hidden;
}
.press-item_img img{
  max-height: 310px;
}
.press-item_content span,
.press-item_content a{
  font-size: 16px;
  line-height: 24px;
  color: #BFBFBF;
}
.press-item_content a{
  color: var(--grey);
}
.press-item_content h5{
  font-size: 24px;
  line-height: 36px;
  color: var(--dark);
  font-family: 'Noto Serif Display';
  font-weight: 500;
  margin-top: 10px;
}
.press-item_content p{
  font-size: 16px;
  line-height: 24px;
  color: var(--grey);
  margin-top: 4px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.press-item a:hover,
.press-item:hover h5{
  color: var(--beige);
}
.press-item_content object{
  display: flex;
}

/* videos */
.videos h4{
  text-align: center;
  font-size: 64px;
  line-height: 87px;
  color: var(--black);
  font-weight: 500;
  font-family: 'Noto Serif Display';
  margin-bottom: 40px;
}
.videos iframe{
  width: 100%;
  height: 275px;
}

/* REVIEWS */
.review{
  max-width: 1034px;
  margin: 0 auto;
  padding: 0 20px;
}
.review h4{
  font-size: 20px;
  line-height: 27px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.review h3{
  font-size: 40px;
  line-height: 44px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 20px;
  font-family: 'Noto Serif Display';
}
.review p{
  color: var(--grey);
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
.review-text{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-img img{
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* PRODUCT */
.product-page .breadcrumbs a{
  color: var(--white2);
}
.product-page .breadcrumbs a::after{
  color: var(--white2);
}
.product{
  margin-top: 50px;
}
.product-imgs{
  max-width: 632px;
  width: 100%;
  height: 689px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
#productSlider{
  height: 100%;
  width: 100%;
}
#productSlider img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#productSlider .splide__track{
  height: 100%;
}
#productThumbnailSlider {
  height: 100%;
}
#productThumbnailSlider .splide__slide {
  border: unset;
}
.custom-arrow {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}
.custom-arrow--prev {
  top: -27px;
}
.custom-arrow--next {
  bottom: -27px;
}
.splide__pagination{
  justify-content: end !important;
}
.splide__pagination button{
  margin: 0 !important;
  background: var(--grey) !important;
  transform: unset !important;
  width: 10px;
  height: 2px;
}
.splide__pagination button.is-active{
  background: var(--white) !important;
}
.product-content{
  max-width: 763px;
  width: 100%;
}
.product-color{
  width: 60px;
  height: 80px;
  cursor: pointer;
}
.product-color input:checked + a {
  border: 3px solid var(--white);
  outline: 1px solid var(--beige);
}
.product-color a{
  width: 100%;
  height: 100%;
  display: block;
}
.product-color img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-color input,
.product-size input{
  display: none;
}
.product-size label{
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--beige);
  background-color: var(--white);
  font-size: 16px;
  line-height: 24px;
  color: var(--dark);
  text-transform: uppercase;
  cursor: pointer;
}
.product-size input:checked + label{
  background-color: var(--beige);
  color: var(--white);
}
.product-form_param p{
  font-size: 16px;
  line-height: 24px;
  color: var(--dark);
  margin-bottom: 10px;
}
.product-form_param p span{
  color: var(--grey);
}
.product-sku,
.product-collection{
  font-size: 14px;
  line-height: 21px;
  display: block;
}
.product-sku{
  color: var(--grey);
  margin-bottom: 5px;
}
.product-collection{
  color: var(--dark);
  margin-bottom: 8px;
}
.product-title{
  color: var(--dark);
  margin-bottom: 12px;
  display: block;
  font-size: 40px;
  line-height: 54px;
  font-family: 'Noto Serif Display';
  font-weight: 500;
}
.product-price{
  font-size: 20px;
  line-height: 30px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 40px;
}
.product-content .accordion-header a,
.product-content .accordion-content li{
  font-size: 18px;
  line-height: 27px;
  color: var(--dark);
}
.product-content .accordion-content{
  margin-top: 20px;
}
.product-content .accordion-content ul{
  padding-left: 20px;
  margin-top: 16px;
}
.product-content .accordion-content li{
  list-style: disc;
  margin-bottom: 4px;
}