.products {
  padding: 60px 0;
  background: #f4f7fb;
}

.products-enef, .products-reflux, .products-basor {
  background-size: cover;
  background-position: center;
  padding: 60px 0px;
}

.products-reflux {
  background-image: url('../img/hero2.png');
}

.products-enef {
  background-image: url('../img/enefbg.png');
}

.products-basor {
  background-image: url('../img/basorbg.png');
}


.reflux-title {
  color: #fffcc3;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

/* Сетка */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Карточка */
.product-card {
  position: relative;
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;

  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  border: 3px solid rgba(0, 0, 0, 0.1);

  overflow: hidden;
}

/* ⚡ Левая "энергетическая" линия */
.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #009d95, #005651);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 73, 44, 0.2);
  border-color: rgba(0, 0, 0, 0.3);
}


/* лёгкое свечение */
.product-card:hover::before {
  box-shadow: 0 0 12px #009d95;
}
.product-card .icon {
  margin-right: 6px;
  color: #009d95;
}
/*
.product-card .btn {
  margin-top: 15px;
  background: linear-gradient(145deg, #007bff, #0056b3);
  box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}


.product-card .btn:hover {
  box-shadow: 0 10px 25px rgba(0,123,255,0.5);
}
*/
/* Лёгкий техно-паттерн */
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0,123,255,0.08), transparent 60%);
  pointer-events: none;
}

.product-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-card p {
  font-size: 14px;
  color: #555;
}


  .fa-file-pdf{
    font-size: 26px;

  }


 .products-additional{
  margin-top: 30px;
  text-align: center;
 } 

  .products-additional h3{
  margin-bottom: 20px;
 } 

 .product-image {
  width: 100%;
  aspect-ratio: 1 / 1.414;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Само изображение */
.product-image img {
  width: 100%;
  height: 100%;

  object-fit: contain; /* ВАЖНО */
}