body {
  background-color: #F8F8F8;
}

.products-header {
  max-width: 1484px;
  margin: 0 auto;
  padding: 0 32px;
}

.breadcrumbs {
  margin: 32px 0 24px;
}

.breadcrumbs-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.breadcrumb-slash {
  width: 10px;
  min-width: 10px;
  height: 14px;
  fill: #494C54;
}

.breadcrumb-arrow {
  display: none;
}

.breadcrumb-item {
  color: #494C54;
}
.breadcrumb-item a {
  color: #494C54;
  transition: ease 0.3s;
}
.breadcrumb-item a:visited {
  color: #494C54;
}
.breadcrumb-item a:hover {
  color: #64B499;
}
.breadcrumb-item:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .products-header {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin: 16px 0;
  }
}
.products-body {
  max-width: 1484px;
  margin: 0 auto 100px auto;
  padding: 0 32px;
}

.products-title {
  margin-bottom: 24px;
}

.products-body-row {
  display: flex;
  align-items: flex-start;
}

.products-grid {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .products-grid {
    gap: 8px;
    margin-bottom: 0;
  }
  .products-body {
    padding: 0 16px;
    margin: 0 auto 64px auto;
  }
}
.product {
  position: relative;
  max-width: 340px;
  width: calc((100% - 60px) / 4);
  background: white;
  border: 1.2px solid #E6E6E6;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.3s;
}
.product:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-img {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 1;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  width: 100%;
  padding: 12px 20px 20px 20px;
}

.product-title {
  margin: 12px 0 0;
}

@media (max-width: 900px) {
  .product {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 600px) {
  .product {
    width: calc((100% - 8px) / 2);
  }
  .product-info {
    padding: 12px;
  }
}
.cta-section {
  margin: 100px auto;
  border-radius: 12px;
  max-width: 1420px;
  color: white;
  display: flex;
  position: relative;
  background-color: #64B499;
}

.cta-wrap {
  margin: 96px 0 96px 96px;
}
.cta-wrap .body {
  margin: 24px 0;
  max-width: 500px;
}

.cta-img {
  display: flex;
  position: absolute;
  bottom: -1px;
  right: 70px;
  width: 490px;
  height: 470px;
  object-fit: contain;
}

@media (max-width: 1484px) {
  .cta-section {
    margin: 100px 32px;
  }
}
@media (max-width: 1300px) {
  .cta-wrap {
    margin: 96px 0 96px 32px;
    max-width: 56vw;
  }
  .cta-wrap .body {
    max-width: 40vw;
  }
}
@media (max-width: 1100px) {
  .cta-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: unset;
    margin: 32px 20px;
  }
  .cta-wrap .body {
    max-width: unset;
  }
  .cta-img {
    position: unset;
  }
  .cta-img {
    width: calc(100% - 32px);
    margin-bottom: -1px;
    max-width: 490px;
    aspect-ratio: 490/470;
    height: unset;
  }
}
@media (max-width: 768px) {
  .cta-section {
    margin: 56px 16px;
  }
}