.products-page {
  padding: 0 0 110px;
  background: #fffdf8;
}

.products-hero {
  background: #f6d47a;
  border-radius: 0 0 42px 42px;
  padding: 70px 80px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.products-hero__content {
  max-width: 720px;
}

.products-hero h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #2b2b2b;
  margin-bottom: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.products-hero p {
  font-size: 22px;
  line-height: 1.6;
  color: #1f1f1f;
  margin: 0;
}

.products-category {
  margin-bottom: 90px;
}

.products-category--yellow {
  background: #f6d47a;
  border-radius: 42px;
  padding: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.products-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: #ffffff;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card__image {
  height: 300px;
  background: #fff5d8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.product-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.product-card__content {
  padding: 34px;
}

.product-card__content h3 {
  font-size: 30px;
  line-height: 1.2;
  color: #2b2b2b;
  margin-bottom: 16px;
  font-weight: 800;
}

.product-card__content p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 22px;
}

.product-card__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-card__content li {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  padding: 10px 0;
  border-top: 1px solid #f0e6c8;
}

.product-card__content li strong {
  color: #e42313;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .products-grid,
  .products-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-hero {
    padding: 56px 48px;
  }

  .products-hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .products-page {
    padding: 40px 0 70px;
  }

  .products-hero {
    padding: 42px 24px;
    margin-bottom: 50px;
    border-radius: 0 0 28px 28px;
  }

  .products-hero h1 {
    font-size: 34px;
  }

  .products-hero p {
    font-size: 17px;
  }

  .products-category--yellow {
    padding: 34px 18px;
    border-radius: 28px;
  }

  .products-grid,
  .products-grid--three {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    border-radius: 26px;
  }

  .product-card__image {
    height: 240px;
    padding: 22px;
  }

  .product-card__content {
    padding: 26px;
  }

  .product-card__content h3 {
    font-size: 24px;
  }

  .product-card__content p {
    font-size: 16px;
  }
}
.product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 16px 28px;
  margin-top: 28px;
  border-radius: 60px;
  background: #e42313;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
}

.product-card__btn:hover {
  background: #c81d10;
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .product-card__btn {
    width: 100%;
    min-width: 100%;
  }
}
