@font-face {
  font-family: 'nn';
  src: url('../fonts/Null-Normal.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 's';
  src: url('../fonts/Sonic\ Logo\ Bold\ RUS\ by\ vania5617sonfan.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'o';
  src: url('../fonts/Obrazec-2.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'd1';
  src: url('../fonts/d1.ttf');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

a {
  color: black;
  text-decoration: none;
}

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


/* HEADER START */
.header {
  position: fixed;
  width: 100vw;
  z-index: 99;
  top: 0;
}

.top_row {
  display: flex;
  padding: 5px 100px 3px 100px;
  justify-content: space-between;
  border-bottom: 0.5px solid rgb(186, 186, 186);
  background-color: rgb(224, 221, 221);
  align-items: center;

}

.top_row_adress {
  font-size: 13px;
  font-weight: 300;
}

.top_row_socials {
  display: flex;
}

.top_row_social {
  margin-left: 15px;
}

.top_row_social img {
  width: 15px;
}

.header_gray {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 100px;
  background-color: rgb(248, 248, 248);
}

.header_gray_logo {
  font-size: 50px;
  font-family: 'o';
  display: flex;
  align-items: center;
}

.header_gray_logo img {
  width: 40px;
  margin-right: 5px;
}

.header_gray_logo span {
  font-weight: 800;
  color: rgb(34, 126, 34);

  background: linear-gradient(45deg, rgb(34, 126, 34) 33%, rgb(99, 162, 17) 66%, #a4fdac);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-family: 'o';
}

.header_gray_contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  margin-left: -7vw;
}

.header_gray_contacts_item {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  /* box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 5px, rgba(0, 0, 0, 0.24) 0px 2px 5px; */
}

.header_gray_contacts_item_img img {
  width: 25px;
  margin-right: 7px;
  position: relative;
  top: 2px;
}


.header_gray_basket {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(1, 149, 9);
  background: linear-gradient(75.7deg, rgb(34, 126, 34) 3.8%, rgb(99, 162, 17) 87.1%);


  border-radius: 30px;
  color: white;
  padding: 3px 20px;
  font-size: 14px;
}

.line img {
  width: 8px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

.header_gray_basket_img {
  position: relative;
}

.header_gray_basket_img img {
  width: 30px;
}

.header_row_green {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 100px;
  background-color: rgb(1, 149, 9);



  background: radial-gradient(circle at -1% 57.5%, rgb(19, 170, 82) 0%, rgb(0, 102, 43) 90%);

  background-image: linear-gradient(45deg, #3cbe00, #076400);
  background: linear-gradient(75.7deg, rgb(34, 126, 34) 3.8%, rgb(99, 162, 17) 87.1%);
  /* background: linear-gradient(45deg, rgb(34, 126, 34) 33%,  rgb(99, 162, 17) 66%, #245428); */
  color: white;
}

.header_row_green_catalog {
  display: flex;
  align-items: center;
  background-color: white;
  color: black;
  padding: 5px 25px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
}

.header_row_green_catalog_img img {
  width: 20px;
  margin-right: 6px;
  position: relative;
  top: 1px;
}

.header_row_green_catalog_img {
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_row_green_catalog_img div,
.header_row_green_catalog_img::before,
.header_row_green_catalog_img::after {
  width: 18px;
  height: 2px;
  background: #444444;

}

.header_row_green_catalog_img::before,
.header_row_green_catalog_img::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
}

.header_row_green_catalog_img::before {
  top: 5px;

}

.header_row_green_catalog_img::after {
  bottom: 5px;

}

.header_row_green_catalog.active .header_row_green_catalog_img div {
  opacity: 0;
}

.header_row_green_catalog.active .header_row_green_catalog_img::before {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

.header_row_green_catalog.active .header_row_green_catalog_img::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  bottom: 35%;
}



.nav__link {
  display: block;
  color: white;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.nav__link::before {
  position: absolute;
  content: '';
  bottom: -2px;
  left: 50%;
  transform: translate(-50%);
  transition: all 0.3s;
  width: 0;
  height: 2px;
  background: #fff;
}

.nav__link:hover::before {
  width: 100%;
}

.search {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search_input input {
  background-image: url(../img/loop.svg);
  background-repeat: no-repeat;
  background-position: left 9px center;
  width: 10vw;
  border-radius: 30px;
  padding: 7px 0 7px 32px;
  border: none;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.header_green_social img {
  width: 16px;
}

.header_green_socials {
  display: flex;
}

.burger {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 2px;
  cursor: pointer;
  transition: all 0.2s;
  flex: none;
  margin-left: 20px;
}

.burger.active div {
  opacity: 0;
}

.burger.active::before,
.burger.active::after {
  top: 50%;
  transition: all 0.3s;
}

.burger.active::before {
  transform: translateY(-50%) rotate(45deg);
}

.burger.active::after {
  transform: translateY(-50%) rotate(-45deg);
}


.burger div {
  width: 25px;
  height: 2px;
  background: linear-gradient(75.7deg, rgb(34, 126, 34) 3.8%, rgb(99, 162, 17) 87.1%);
}

.burger::before,
.burger::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 2px;
  background: linear-gradient(75.7deg, rgb(34, 126, 34) 3.8%, rgb(99, 162, 17) 87.1%);
}

.burger::before {
  top: 6px;
}

.burger::after {
  bottom: 6px;
}

/* menu */

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 120;
  display: flex;
  justify-content: flex-start;
  z-index: -10;
}

.menu.active {
  z-index: 100;
}

.menu.active .menu__wrap {
  transition: all 0.4s;
  transform: translate(0);
}

.menu__wrap {
  width: 50%;
  height: 100vh;
  overflow-y: auto;
  padding: 50px 20px;
  background: #fff;
  box-shadow: 3px 0px 20px 0px rgba(57, 57, 57, 0.5176470588);
  transform: translateX(-120%);
}

.menu__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu__contacts a {
  display: flex;
  gap: 15px;
}


.menu form .search {
  justify-content: normal;
  margin-bottom: 15px;
}

.menu form .search input {

  border: 1px solid #076400;
  border-radius: 20px;
}

.header_row_green_nav nav {
  display: flex;
  align-items: center;
  gap: 60px;
}


@media (min-width: 1025px) {

  .burger,
  .menu {
    display: none;
  }
}

@media (max-width:1024px) {

  .header_gray,
  .header_row_green,
  .top_row {
    padding-left: 15px;
    padding-right: 15px;
  }

  .search_input input {
    width: auto;
  }

  .header_gray_contacts {
    display: none;
  }

  .header_row_green_nav nav {
    display: none;
  }


}

@media (max-width:600px) {
  .menu__wrap {
    width: 70%;
  }
}

@media (max-width:500px) {

  .menu form {
    display: block;
  }

  .header_row_green form {
    display: none;
  }

  .header_gray_logo {
    font-size: 10vw;
  }

}

/* HEADER END */

.main_container {
  padding-top: 146px;
  min-height: 100vh;
}

@media (max-width:500px) {
  .main_container {
    padding-top: 125px;
  }
}

.main_banner {
  width: 100vw;
  height: 85vh;
  display: flex;
  overflow: hidden;
  position: relative;
}

@media (max-width:768px) {
  .main_banner {
    height: 65vh;
  }
}

.right {
  width: 60vw;
}


.left {
  width: 100%;
  max-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


@media (max-width:768px) {
  .right{
    display: none;
  }

  .left{
    max-width: 100%;
  }
}

@media (max-width: 1120px) {
  .left {
    min-width: auto;
    width: auto;
    margin-top: 75px;
  }
}

.h1_container {
  background-color: rgb(1, 149, 9);
  background: linear-gradient(75.7deg, rgb(34, 126, 34) 3.8%, rgb(99, 162, 17) 87.1%);
  padding: 30px 25px;
  width: 30vw;
  color: white;
  border-radius: 20px;
}

@media (max-width: 1120px) {
  .h1_container {
    width: 90%;
  }
}

.left h1 {
  font-size: 28px;
}

.left_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 31vw;
  margin-top: 40px;
}

.left_list_item {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  width: 15vw;
  align-items: center;
  margin: 7px 10px;
  padding: 5px 8px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 5px, rgba(0, 0, 0, 0.24) 0px 2px 5px;
  border-radius: 5px;
  background: #fff;
}

@media (max-width: 600px) {

  .left h1 {
    font-size: 22px;
  }

  .left_list {
    width: 300px;
  }

  .left_list_item {
    width: 400px;
    background-color: white;
  }
}

.left_list_item_number {
  font-family: 'd1';
  font-size: 30px;
  color: rgb(1, 149, 9);
  background: linear-gradient(75.7deg, rgb(34, 126, 34) 3.8%, rgb(99, 162, 17) 87.1%);
  margin-right: 10px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.catalog_wrap {
  padding: 60px 100px;
}

.catalog_wrap h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  padding-bottom: 20px;
}

.catalog {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.catalog_item {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 270px;
  margin: 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  border-radius: 5px;
  transition: all 0.3s;
}

.catalog_item:hover,
.product_link:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.05) 1px 7px 14px 9px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}

.catalog_img img {
  height: 200px;
  padding: 5px 0 15px 0;
}

@media (max-width: 600px) {
  .catalog_wrap {
    padding: 60px 10px;
  }

}

.catalog_title {
  margin-bottom: 10px;
  min-height: 50px;
  text-align: center;
}

.catalog_btn {
  background: linear-gradient(75.7deg, rgb(34, 126, 34) 3.8%, rgb(99, 162, 17) 87.1%);
  width: 60%;
  text-align: center;
  color: white;
  padding: 4px 0;
  border-radius: 4px;
  margin: 10px 0;
}

.container {
  width: 100%;
  max-width: 1600px;
  padding: 0 120px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}



.category_container {
  padding: 50px 0;
}

.category_title h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 300;
  padding-bottom: 40px;
}

.products_row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

@media (max-width:500px) {
  .products_row {
    gap: 15px;
  }

}

.product_link {
  width: 100%;
  max-width: 438px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 30%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  padding: 20px 10px;
  border-radius: 6px;
  gap: 15px;
  transition: all 0.3s;
}

.product_row {
  display: flex;
  gap: 90px;
}

.category_title {
  text-align: center;
}

.product_wrap {
  padding: 20px 0 0 0;
}

@media (max-width: 1120px) {
  .product_wrap {
    padding: 0;
  }
}

.category_price {
  font-weight: 600;
}

.bread_crumbs {
  display: flex;
  gap: 5px;
  font-size: 13px;
  padding-bottom: 30px;
}

@media (max-width: 1120px) {
  .bread_crumbs {
    display: none;
  }
}

.bread_crumbs_item {
  display: flex;
  align-items: center;
}

.bread_crumbs_item img {
  width: 20px;
  margin-right: 3px;
}

.arrow {
  width: 22px;
}

.product_nav {
  width: 300px;
}

.product_nav nav {
  display: flex;
  flex-direction: column;
  gap: 13px;

}

@media (max-width: 1120px) {
  .product_row {
    flex-direction: column;
  }

  .product_nav {
    width: 100%;
  }

  .product_nav nav {
    flex-direction: row;
    overflow-x: auto;
    padding: 20px 0;
  }

  .product_nav nav a {
    white-space: nowrap;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
    padding: 4px 8px;
    border-radius: 2px;

  }

}

.category_nav_item {
  background-color: #e7e7e7;
  padding: 7px 0 7px 15px;
  border-radius: 15px;
  transition: all 0.3s;
}

.category_nav_item:hover{
  transform: translate(10px);
}

.product_container {
  display: flex;
  gap: 40px;
  max-width: 880px;
}

.big_text {
  padding-top: 10%;
}

@media (max-width: 1120px) {
  .big_text {
    padding-top: 15%;
  }
}

@media (max-width: 1120px) {
  .product_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .product_img {
    width: 100%;
    max-width: 400px;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 1000px) {
  .product_link {
    flex: 1 1 40%;
  }
}


.product_img {
  width: 100%;
  height: 200px;
}

@media (max-width:600px) {
  .product_img {
    height: 100px;
  }
}

.product_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product_title h1 {
  font-weight: 600;
  font-size: 30px;
}

.product_short_text {
  font-size: 14px;
}

.product_price {
  font-size: 26px;
  font-weight: 500;
}

.product_btn {
  background: linear-gradient(75.7deg, rgb(34, 126, 34) 3.8%, rgb(99, 162, 17) 87.1%);
  width: 50%;
  text-align: center;
  color: white;
  padding: 5px 0;
  border-radius: 20px;
  font-weight: 500;
}

@media (max-width:600px) {
  .product_btn {
    width: 80%;
  }
}

.product_big_text {
  padding: 90px 0 50px 0;
}

/* FOOTER START */


.footer_row {
  background-color: rgb(224, 221, 221);
  padding: 30px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(186, 186, 186);

}


.footer_gray_logo {
  font-size: 24px;
  font-family: 'o';
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: white;
  width: 140px;
  margin-bottom: 10px;
}

.footer_gray_logo img {
  width: 20px;
  margin-right: 3px;
}

.footer_gray_logo span {
  font-weight: 800;
  color: rgb(34, 126, 34);

  background: linear-gradient(45deg, rgb(34, 126, 34) 33%, rgb(99, 162, 17) 66%, #a4fdac);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-family: 'o';
}

.requisites {
  font-size: 13px;
}

.footer_center {
  width: 100%;
  max-width: 605px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto;
}

.footer_category_item {
  width: 140px;
  min-height: 50px;
  font-size: 14px;
  border: 0.5px solid green;
  border-radius: 3px;
  padding: 6px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: dashed;
  font-weight: 500;
  background: #fff;
}

.footer_contacts {
  background-color: white;
  padding: 5px 20px;
  border-radius: 5px;
}

.footer_contacts_item {
  display: flex;
  align-items: center;
  margin: 7px 0;
}

.footer_contacts_item img {
  width: 20px;
  margin-right: 5px;
}

.footer_right {
  margin-left: 20px;
}

@media (max-width:1024px) {

  .footer_row {
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
    gap: 20px;
  }

  .footer_left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .footer_center {
    width: 100%;
  }

  .footer_right {
    margin-right: auto;
    margin-left: auto;
  }
}


/* FOOTER END */

.tst {}

.product_table p {
  font-size: 20px;
  padding: 10px 0;
}

table {
  border-collapse: collapse;
  color: #001c00;
  width: 100%;
}

table td,
table th {
  border: 1px solid #D6D6D6;
  box-sizing: border-box;
  padding: 6px 40px 2px 10px;
  color: #001c00;
}

.slidet_wrapper {
  max-width: 350px;
  width: 100%;
  margin-right: 40px;
}

@media (max-width: 1120px) {
  .slidet_wrapper {
    max-width: 100%;
    margin: 0;
  }


}


.slider-product_img {
  width: 100%;
  max-width: 350px;
}

.slider-product_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


@media (max-width: 600px) {
  .slider-product_img {
    padding-bottom: 0px;
  }

}

@media (max-width:340px) {
  .slidet_wrapper {
    max-width: 320px;
  }
}

.main_img {
  /* width: 400px; */
}

#lightSlider {
  list-style: none outside none;
  padding-left: 0;
  margin-bottom: 0;
}

.product_image_text li {
  display: block;
  float: left;
  cursor: pointer;
}




.fancybox-stage img {
  width: auto !important;
}

.lSSlideOuter .lSPager.lSGallery li {
  opacity: 0.5;
}

.lSSlideOuter .lSPager.lSGallery li.active {
  opacity: 1;
}

lSSlideOuter .lSPager.lSGallery li.active,
.lSSlideOuter .lSPager.lSGallery li {
  border-radius: 0;
}

lSSlideOuter .lSPager.lSGallery li.active:hover,
.lSSlideOuter .lSPager.lSGallery li:hover {
  border-radius: 0;
}

.lSPager {
  width: 100% !important;
  margin-top: 15px;
}

.lSPager li {
  width: 100px !important;
  padding: 2px;

  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  /* height: 130px !important; */
}

.lSSlideOuter .lSPager.lSGallery img {
  display: block;
  height: 94px !important;
  max-width: 100% !important;
  object-fit: contain;
}


/* basket counter */

.basket-counter {
  position: absolute;
  top: 3px;
  right: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgb(206, 46, 46);
  color: #fff;
  text-align: center;
  font-size: 10px;
  display: none;
  align-items: center;
  justify-content: center;
}

/* -- */


.slider-el {
  display: block;
  width: 100%;

}



/* BASKET START*/

.cart_container {
  width: 100%;
  max-width: 1300px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 50px auto;
}


.cart_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.cart-product {
  width: 32%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  border-radius: 5px;
  overflow: hidden;
  padding: 10px 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.cart-product__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.cart-product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-product__title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}

.cart-product__price {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}


.cart-product__btns {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.cart-product__btn {
  border-radius: 3px;
  background: linear-gradient(75.7deg, rgb(34, 126, 34) 3.8%, rgb(99, 162, 17) 87.1%);
  padding: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.cart-product__count {
  width: 30px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

@media (max-width:1100px) {
  .cart_container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cart-product {
    width: 32%;
  }
}

@media (max-width:768px) {

  .cart_wrap {
    flex-direction: column;
  }

  .cart-product {
    width: 100%;
  }

}

.cart_btn_container {
  display: flex;
  justify-content: center;
  padding-top: 100px;
}

.cart_btn {
  display: block;
  margin: 1px auto;
  background-color: rgb(249, 68, 68);
  color: white;
  padding: 7px 35px;
  border-radius: 25px;
}

.cart_title {
  font-weight: 400;
  margin-bottom: 50px;
}

.cart_form {
  width: 50vw;
  margin: 1px auto;
}

@media (max-width:768px) {
  .cart_form {
    width: 100%;
  }

  .cart_form form{
    padding: 16px;
  }
}

.form {
  display: flex;
  flex-direction: column;
  background-color: #ededed;
  padding: 40px 20px;
  border-radius: 10px;
}

.form input,
textarea {
  margin-bottom: 20px;
  height: 30px;
  width: 50%;
  padding-left: 10px;
  border: none;
  border: 1px solid #878787;
}

.form textarea {
  height: 100px;
}

@media (max-width:768px) {
  .form input,
  textarea{
    width: 100%;
  }
}

.form button {
  background-color: rgb(249, 68, 68);
  color: white;
  font-weight: 500;
  border-radius: 30px;
  font-size: 16px;
  width: 40%;
  padding: 6px 0;
  margin-bottom: 20px;
}

.confirmed_row_img img {
  width: 200px;
  margin: 20px 0;
}

.mp_btn {
  background-color: rgb(249, 68, 68);
  padding: 6px 0;
  display: block;
  width: 40%;
  color: white;
  margin-top: 30px;
}

/* BASKET END */

/* modal START */

.catalog-modal {
  position: fixed;
  z-index: 100;
  top: 146px;
  left: 0;
  width: 100%;
  background: #fff;
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s;
  box-shadow: -1px 10px 20px 0px #46464699;
}

.catalog-modal .catalog_item {
  width: 200px;
  padding: 10px;

}

.catalog-modal .catalog_item .catalog_img {
  width: 70%;
  height: 100px;
}

.catalog-modal .catalog_item .catalog_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-modal__wrap {
  overflow-y: auto;
  max-height: 70vh;
}

@media (max-width:500px) {
  .catalog-modal__wrap {
    max-height: 80vh;

  }

}

/* modal END */

/* ABOUT START */

.about-header {
  width: 100%;
  height: 30vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-attachment: fixed;

}

.about-header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000088;
  z-index: 0;
  backdrop-filter: blur(2px);

}

.about-header h1 {
  position: relative;
  z-index: 1;
  font-size: 80px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.about-text {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;

}

.about-text p {
  margin: 16px 0;
}

@media (max-width:1000px) {
  .about-header h1 {
    font-size: 30px;
  }

  .about-text {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ABOUT END */

/* MODAL START */

.open-modal {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  width: 100%;
  max-width: 400px;
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.close-modal {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background: linear-gradient(75.7deg, rgb(34, 126, 34) 3.8%, rgb(99, 162, 17) 87.1%);
  color: white;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
}

.modal-contact {}

.modal-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-contact-item img {
  width: 30px;
  height: auto;
  object-fit: contain;
}

.modal-contact-text {
  font-size: 18px;
  font-weight: 500;
}

/* MODAL END */


/* SEARCH START */

.s-search {
  width: 100%;
  max-width: 1300px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 150px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-error {
  font-size: 25px;
  font-weight: bold;
}

.search-title {
  font-size: 28px;
  margin-bottom: 50px;
}

.search-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  border: 1px solid #00000083;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 200px;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.card p {
  text-align: center;
  font-size: 18px;
  padding: 10px 15px;
}

@media (max-width:600px) {

  .s-search {
    margin: 50px auto;
  }

  .card {
    width: 30%;
  }

  .card img {
    height: 100px;
  }

  .card p {
    font-size: 16px;
    padding: 8px;
  }
}

@media (max-width:440px) {
  .card {
    width: 45%;
  }
}

/* SEARCH END  */


/* ANIMATION START */



.anim-title {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.4s;
}

.anim-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
}

.anim-item.show,
.anim-title.show {
  opacity: 1;
  transform: translate(0);
}

/* ANIMATION END */

.product_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin-top: 20px;
}

.product_list li {
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  padding: 3px 0 3px 10px;
  border-radius: 3px;

}

.product_list li span {
  font-weight: 500;
}

.product_list li img {
  width: 25px;
  height: auto;
  object-fit: contain;
}


.category_list {
  padding-bottom: 30px;
  width: fit-content;
  /* align-items: flex-end; */
  margin: 0 0 0 auto;
  padding: 10px 15px;
  display: flex;
  margin-bottom: 30px;
  justify-content: space-around;
}
.category_list li{
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0 5px;
    padding: 4px 7px;
    max-width: 200px;
    font-size: 12px;
    font-weight: 300;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
    border-radius: 10px;
}
.category_list img{
    width: 15px;
    height: 15px;
    margin-left: 4px;
}
.flex{
    display: flex;
    align-items: center;
}
@media (max-width:740px) {
    .category_list {
        flex-direction: column;
        margin: auto;
    }
    .category_list li{
        margin-bottom: 10px;
        max-width: 300px;
    }
  }
