.section-products_and_services {
  padding: 2rem 3rem;
  width: 90%;
  max-width: 1300px;
  margin: 2rem auto;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}

.section-products_and_services h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-products_and_services .products-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 2rem;
  gap: 2rem;
}

.section-products_and_services .products-block {
  flex: 1;
}

.section-products_and_services .product-menu {
  padding: 2rem;
  background-color: #f0f0f0;
  max-width: 300px;
  width: 100%;
}

.section-products_and_services .product-menu .city-select-form {
  display: none;
}

.section-products_and_services .product-menu .city-select-form label {
  display: block;
  font-size: 1rem;
  color: #464646;
  margin-bottom: 0.5rem;
}

.section-products_and_services .product-menu .city-select-form select {
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  color: #222;
  outline: none;
}

.section-products_and_services .product-menu .menu-section {
  margin-bottom: 2rem;
}

.section-products_and_services .product-menu .menu-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #888;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 1rem;
}

@media (hover: hover) and (pointer: fine) {
  .section-products_and_services .product-menu .menu-title:hover {
    cursor: pointer;
  }
}

.section-products_and_services .product-menu .menu-section .menu-title svg {
  transition: all 0.3s ease-in;
}

.section-products_and_services .product-menu .menu-section.hide .menu-title svg {
  transform: rotate(180deg);
}

.section-products_and_services .product-menu .menu-item-list {
  list-style: none;
  overflow: hidden;
}

.section-products_and_services .product-menu .menu-section.hide .menu-item-list {
  display: none;
}

.section-products_and_services .product-menu .menu-item-list.city-list {
  margin-bottom: 0;
  columns: 2;
}

.section-products_and_services .product-menu .menu-item a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  padding: 5px 0;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .section-products_and_services .product-menu .menu-item a:hover {
    color: #018e37;
  }
}

.section-products_and_services .products-block .breadcrumb {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.section-products_and_services .products-block .breadcrumb .breadcrumb-item:not(:last-child) {
  position: relative;
  padding-right: 1rem;
}

.section-products_and_services
  .products-block
  .breadcrumb
  .breadcrumb-item:not(:last-child)::after {
  content: '❯';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #5c5c5c;
}

.section-products_and_services .products-block .breadcrumb .breadcrumb-item::before {
  content: none;
}

.section-products_and_services .products-block .breadcrumb .breadcrumb-item:last-child a {
  pointer-events: none;
}

.section-products_and_services .products-block .breadcrumb .breadcrumb-item a {
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  color: #5c5c5c;
}

.section-products_and_services .products-block .breadcrumb .breadcrumb-item.active a {
  color: #018e37;
}

@media (hover: hover) and (pointer: fine) {
  .section-products_and_services .products-block .breadcrumb .breadcrumb-item a:hover {
    color: #018e37;
  }
}

.section-products_and_services .products-block h4 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.section-products_and_services .products-block .result-count {
  margin: 0.2rem 0 1.5rem 0;
  color: #5c5c5c;
}

.section-products_and_services .products-block .card-section .card-list {
  list-style: none;
  display: grid;
  /* align-items: center; */
  align-items: normal;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  column-gap: 1rem;
  row-gap: 2rem;
}

.section-products_and_services .products-block .card-section .card-item {
  background-color: #fff;
  border: 1px solid #5c5c5c;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in;
}

@media (hover: hover) and (pointer: fine) {
  .section-products_and_services .products-block .card-section .card-item:hover {
    box-shadow: 0 0 7px #f9914d;
  }
}

.section-products_and_services .products-block .card-section .card-item .image-block {
  position: relative;
  border-bottom: 1px solid #5c5c5c;
  line-height: 0;
}

.section-products_and_services .products-block .card-section .card-item .view-count {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  color: #b5b5b5;
}

.section-products_and_services .products-block .card-section .card-item .product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.section-products_and_services .products-block .card-section .card-item .content {
  padding: 1rem;
}

.section-products_and_services .products-block .card-section .card-item .content .title {
  color: #212529;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-products_and_services .products-block .card-section .card-item .content .title a {
  color: #212529;
}

.section-products_and_services .products-block .card-section .card-item .content .price-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.section-products_and_services .products-block .card-section .card-item .content .amount {
  font-size: 14px;
  font-weight: 500;
  color: #f9914d;
}

.section-products_and_services .products-block .card-section .card-item .content .previous-amount {
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
  color: #999;
}

.section-products_and_services .products-block .card-section .card-item .content p {
  color: #8e8e8e;
  font-size: 14px;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-products_and_services .products-block .card-section .card-item .content .cta-btn {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 38px;
  color: #018e37;
  background-color: transparent;
  text-transform: uppercase;
  display: block;
  text-align: center;
  border: 1px solid #018e37;
  border-radius: 4px;
  transition: all 0.3s ease-in;
}

@media screen and (min-width: 620px) {
  .section-products_and_services .products-block .card-section .card-item .content .title {
    min-height: 50px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .section-products_and_services .products-block .card-section .card-item .content .cta-btn:hover {
    color: #fff;
    background-color: #018e37;
  }
}

@media (width < 1024px) {
  .section-products_and_services {
    padding: 2rem;
  }

  .section-products_and_services .products-container {
    flex-direction: column;
  }

  .section-products_and_services .product-menu {
    max-width: unset;
  }

  .section-products_and_services .product-menu .city-select-form {
    display: block;
  }

  .section-products_and_services .product-menu .menu-section {
    display: none;
  }
}
