*{
  margin: 0;
  padding: 0;
  font-weight: 400;
  list-style: none;
  text-decoration: none;
  font-family: 'Inter';
  box-sizing: border-box;
  -ms-overflow-style: none;
}
/* scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: #93855E;
  border-radius: 50px;
}
/* Edge */
*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
*::-webkit-scrollbar-thumb {
  background-color: #93855E;
  border-radius: 50px;
}

/* CONTAINER */
.container{
  max-width: 1540px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.distance{
  margin-top: 100px;
}
/* SCROLL */
.scroll-container{
  cursor: grab;
}
.scroll-container.active {
  cursor: grabbing;
}

/* COLORS */
:root{
  --black: #000000;
  --white: #ffffff;
  --dark: #1D1D1C;
  --beige: #93855E;
  --grey: #777777;
  --red: #90141D;
  --white2: #E6E3DA;
}

/* BUTTONS */
button{
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.btn{
  padding: 14px 30px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid var(--beige);
  color: var(--beige);
  background: var(--white);
  letter-spacing: 0.5px;
}
.btn:hover{
  background: var(--beige);
  color: var(--white);
}
.btn-full{
  background: var(--beige);
  color: var(--white);
}

/* BODY */
body{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}
body.noscroll{
  overflow: hidden;
}
main{
  padding-top: 100px;
}

/* INPUTS */
/* all */
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
/* firefox */
input[type="search"] {
  -moz-appearance: textfield;
}
input[type="checkbox"] {
  appearance: none;
  background-color: var(--white);
  border: 1px solid var(--beige);
  min-width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
input[type="checkbox"]:checked{
  background-image: url('../images/icons/checkbox.svg');
  background-color: var(--beige);
}
input[type="text"]{
  border: 1px solid var(--white2);
  background: var(--white);
  padding: 8px 12px 12px;
  outline: unset;
}
input[type="text"],
input[type="text"]::placeholder{
  font-size: 16px;
  line-height: 24px;
  color: var(--grey);
}
.form-policy{
  display: flex;
  gap: 8px;
  cursor: pointer;
}
.form-policy label{
  font-size: 15px;
  line-height: 22px;
  color: var(--grey);
  cursor: pointer;
}

/* TITLES */
.big-title{
  font-size: 140px;
  line-height: normal;
  color: var(--white);
  font-family: 'Noto Serif Display';
}
.title{
  font-size: 82px;
  line-height: 112px;
  color: var(--dark);
  font-family: 'Noto Serif Display';
}
p{
  font-size: 18px;
  line-height: 27px;
  color: var(--dark);
}
s{
  text-decoration: line-through;
}
.line{
  width: 100%;
  height: 1px;
  display: block;
  background: var(--beige);
}

/* HEADER */
header{
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--beige);
  z-index: 50;
}
.header{
  margin: 0 auto;
  max-width: 1840px;
  padding: 0 20px;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 38% 21% 38%;
  min-height: 100px;
}
.header a{
  color: var(--dark);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}
.header a:hover{
  color: var(--beige);
}
.header ul li a{
  padding: 38px 20px;
  display: block;
}
.header ul li:first-of-type a{
  padding-left: 0;
}
.header ul li:last-of-type a{
  padding-right: 0;
}
.logo img{
  max-width: 150px;
}
.header-icons{
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-icons a{
  height: 40px;
}
.header-lang{
  padding: 20px 0;
}
.header-lang a{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey);
  color: var(--grey);
}
.header-lang a.active{
  border: 1px solid var(--beige);
  color: var(--beige);
}
.header-lang_menu{
  position: absolute;
  border: 1px solid var(--beige);
  padding: 20px;
  background: var(--white);
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.header-lang:hover .header-lang_menu{
  display: flex;
}
.header-lang_menu a:hover{
  border: 1px solid var(--beige);
  background-color: var(--beige);
  color: var(--white);
}
.header-icons a:hover svg path,
.header-icons a.active svg path{
  stroke: var(--beige);
}
.shop-link_count{
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: var(--white);
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  letter-spacing: unset;
  padding-left: 1px;
  padding-top: 1px;
  position: absolute;
  right: 4px;
  bottom: 0;
}
.header-icons a:last-of-type.active .shop-link_count{
  display: flex;
}
/* sub menu */
.sub-menu{
  position: absolute;
  top: 100px;
  width: 100%;
  height: max-content;
  left: 0;
  background: var(--white);
  padding: 30px 0 100px 0;
  display: none;
  border-top: 1px solid var(--beige);
}
.sub-menu_list{
  max-width: 484px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: max-content;
  column-gap: 40px;
  row-gap: 16px;
  margin-top: 48px;
}
.sub-menu_list a{
  padding: 0 !important;
  font-weight: 400;
  text-transform: unset;
}
.new-products{
  max-width: 786px;
  width: 100%;
  overflow: auto;
  -ms-overflow-style: none;
  margin-top: 50px;
}
.new-products::-webkit-scrollbar{
  display: none;
}
.new-products h6{
  font-size: 16px;
  line-height: 24px;
  color: var(--dark);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.new-products p{
  font-size: 14px;
  line-height: 21px;
  margin-top: 10px;
}
.new-products .product{
  padding: 0;
  height: 340px;
  min-width: 222px;
  margin: 0;
}
.new-products .item-img{
  max-height: 282px;
  height: 100%;
}
.new-products .item-img img{
  object-position: top;
}
.header ul li.show .sub-menu,
.sub-menu.show{
  display: block;
}
.header ul li.show a:not(.sub-menu_list a),
.new-products .product:hover p{
  color: var(--beige);
}
.search-menu{
  max-width: 786px;
}
.search-menu input{
  width: 100%;
  border: unset;
  border-bottom: 1px solid var(--grey);
  padding: 10px 20px;
  outline: unset;
  font-size: 14px;
  line-height: 21px;
  color: var(--grey);
  font-weight: 300;
}
.item-img{
  height: 680px;
}
.search-menu input::placeholder{
  font-size: 14px;
  line-height: 21px;
  color: var(--grey);
  font-weight: 300;
}
.search-menu button{
  position: absolute;
  right: 20px;
  height: 20px;
  bottom: 10px;
}
.search-menu button img{
  width: 20px;
}
/* burger */
.burger{
  display: none;
  align-items: center;
  cursor: pointer;
}
.burger-close,
.burger.active .burger-btn{
  display: none;
}
.burger.active .burger-close{
  display: block;
}
.burger-modal{
  position: fixed;
  z-index: 55;
  right: -100%;
  top: 101px;
  max-width: 360px;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-bottom: 141px;
  background: var(--white);
  transition: all 0.3s ease;
}
.burger-modal.show{
  right: 0;
}
.burger-modal .header-lang{
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  padding-bottom: 121px;
  background: var(--white);
}
.burger-modal .accordion{
  max-height: 94%;
  overflow: auto;
  padding: 40px;
}
.burger-modal .accordion a{
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.burger-modal .accordion-content{
  margin-top: 20px;
}
.burger-modal .accordion-content ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.burger-modal .accordion-content ul a{
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: var(--dark);
  width: 100%;
  display: inline-block;
  text-transform: uppercase;
}
.burger-modal .accordion-item.active .accordion-header a,
.burger-modal .accordion-header:hover a,
.burger-modal .accordion a:hover{
  color: var(--beige);
}

/* ACCORDION */
.accordion-content{
  display: none;
}
.accordion-header{
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}
.accordion-item svg{
  transition: all 0.3s ease;
}
.accordion-item.active svg{
  transform: rotate(-180deg);
}

/* FOOTER */
footer{
  background: var(--dark);
  padding: 100px 0;
}
.footer{
  display: grid;
  justify-content: space-between;
  grid-template-columns: 150px 21% 15% 20% 20%;
}
.footer-policy{
  margin-top: 80px;
}
.footer-policy p{
  color: var(--grey);
  font-size: 16px;
  line-height: 24px;
}
.footer ul li a{
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
}
.footer ul li a:hover{
  color: var(--beige);
}
.footer ul{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer a:hover svg path{
  fill: var(--beige);
}
.footer img{
  height: max-content;
}

/* PRODUCT */
.item-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 670px;
  object-position: top;
}
.item h6{
  font-family: 'Noto Serif Display';
  font-weight: 500;
  font-size: 40px;
  line-height: 55px;
  color: var(--dark);
  text-align: center;
  margin-top: 20px;
}
.item:hover h6,
.product:hover a{
  color: var(--beige);
}
.product-card{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card_news{
  position: absolute;
  display: flex;
  gap: 10px;
  left: 10px;
  top: 10px;
}
.product-card span{
  padding: 2px 10px 5px 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--white);
  background: var(--red);
  width: max-content;
}
.product-card_discount{
  background: var(--beige) !important;
  font-weight: 600 !important;
}
.product-card_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card  h5{
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
  margin: 10px 0;
}
.product-card p,
.product-card  h5,
.product-card a{
  font-size: 16px;
  line-height: 24px;
}
.product-card a{
  color: var(--grey);
}
.product-card a:hover{
  color: var(--beige);
}
.product-card_done,
.product-card_shopbtn.active .product-card_add{
  display: none;
}
.product-card_footer{
  display: flex;
  justify-content: space-between;
}
.product-card_footer div{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
}
.product-card s{
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
  color: var(--grey);
}
.product-card strong{
  font-weight: 700;
  color: var(--dark);
}
.product-card_shopbtn.active .product-card_done{
  display: block;
}

/* MODAL */
.background{
  background: #FFFFFFB2;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 8;
  pointer-events: none;
}
.background.show{
  opacity: 1;
  pointer-events: all;
  transition: all 0.3s ease;
}
.background.higher{
  z-index: 54;
}
.background.dark{
  background: #77777780;
}
.modal {
  z-index: 55;
  position: fixed;
  top: 0;
  padding: 100px 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.modal.show{
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.modal-frame{
  background-color: var(--white);
  height: max-content;
  width: 100%;
  position: relative;
}
.modal-close{
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal-header{
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 10px;
}
.product-modal .modal-frame{
  max-width: 484px;
  padding: 40px;
  text-align: center;
}
.product-modal .modal-content h6{
  font-size: 40px;
  line-height: 40px;
  font-family: 'Noto Serif Display';
  color: var(--dark);
}
.product-modal .modal-content p{
  font-size: 16px;
  line-height: 24px;
}

/* OWL CAROUSEL */
.owl-dot{
  background: var(--beige1);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.owl-dots{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -46px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.owl-dot.active{
  background: var(--pink);
}
.owl-nav{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.owl-next,
.owl-prev{
  position: relative;
}
.owl-next span,
.owl-prev span{
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: var(--white);
  border: 1px solid var(--blueDark) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.owl-prev.disabled,
.owl-next.disabled{
  visibility: hidden;
  pointer-events: none;
}
.owl-next span:hover,
.owl-prev span:hover{
  background-color: var(--blueBg);
}
.owl-next:hover::after,
.owl-prev:hover::after{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blueDark);
  border-radius: 5px;
  position: absolute;
  z-index: -1;
  left: 3px;
  top: 3px;
}
.owl-carousel .owl-stage{
  display: flex;
}

/* TABS */
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}

/* BREADCRUMBS */
.breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
}
.breadcrumbs a{
  font-size: 16px;
  line-height: 19px;
  color: var(--white);
  position: relative;
}
.breadcrumbs a::after{
  content: '>';
  position: absolute;
  right: -18px;
  color: var(--grey);
}
.breadcrumbs p{
  font-size: 16px;
  line-height: 19px;
  color: #BFBFBF;
}

/* PAGINATION */
.pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination a{
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  color: var(--grey);
  border: 1px solid var(--white);
}
.pagination-number.active{
  color: var(--beige);
  border-color: var(--beige);
}
.pagination a:hover{
  color: var(--beige);
}
.pagination-prev{
  margin-right: 8px;
}
.pagination-next{
  margin-left: 8px;
}
.pagination-btn:hover svg path{
  stroke: var(--beige);
}


@media(max-width: 1600px){
  .header ul li a{
    padding: 38px 10px;
  }
}
@media(max-width: 1400px){
  .header {
    grid-template-columns: 38% 13% 44%;
  }
  .item-img{
    height: 550px;
  }
}
@media(max-width: 1200px){
  .header {
    grid-template-columns: repeat(2, 1fr);
  }
  .burger{
    display: flex;
  }
  .item h6{
    font-size: 30px;
    line-height: 45px;
  }
  .distance{
    margin-top: 70px;
  }
  .item-img {
    height: 400px;
  }
}
@media(max-width: 992px){
  .footer{
    grid-template-columns: 150px 1fr 1fr;
    gap: 20px;
  }
  .footer ul:last-of-type{
    grid-column: 2 ;
  }
  .title{
    font-size: 40px;
    line-height: 55px;
  }
  .item h6{
    font-size: 24px;
    line-height: 33px;
  }
  .item-img {
    height: 500px;
  }
}
@media(max-width: 768px){
  .header{
    min-height: 70px;
  }
  .logo img{
    max-width: 107px;
  }
  main{
    padding-top: 70px;
  }
  .sub-menu,
  .burger-modal{
    top: 71px;
  }
  .item-img {
    height: 300px;
  }
}
@media(max-width: 576px){
  .burger-modal{
    max-width: unset;
  }
  .header-icons{
    gap: 16px;
  }
  .header-icons a svg{
    width: 30px;
    height: 30px;
  }
  .header-icons a{
    height: 30px;
  }
  .shop-link_count{
    width: 13px;
    height: 13px;
    font-size: 6px;
    line-height: 9px;
    padding-top: 0;
  }
  footer{
    padding: 50px 0;
  }
  .footer{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-logo{
    max-width: 150px;
  }
  .footer ul:last-of-type{
    grid-column: unset;
  }
  .distance{
    margin-top: 40px;
  }
  .breadcrumbs{
    display: none;
  }
  .pagination-prev{
    margin-right: unset;
  }
  .pagination-next{
    margin-left: unset;
  }
  .form-policy label{
    font-size: 14px;
    line-height: 21px;
  }
  .modal{
    padding: 50px 20px;
  }
  .item-img {
    height: 250px;
  }
}
