/* Секция "Узнать о продуктах" */
.know-products-section {
  width: 100%;
  padding: 80px 0;
  background: #f8f9fa;
}

.know-products-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.know-products-block {
  text-align: center;
}

.know-products-title {
  max-width: 715px;
  font-family: 'DINPro', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #161817;
  margin: 0;
  background: linear-gradient(
    90deg,
    #15a6e1 0%,
    #00caf4 15%,
    #00caf4 31%,
    #6789e0 50%,
    #ef786f 71%,
    #eb5c54 81%,
    #e8423b 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Контейнер с информацией */
.product-info-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.product-info-block {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  width: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
}

.product-info-block:hover {
  transform: translateY(-5px);
}

.product-description {
  font-family: 'DINPro', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #161817;
  margin-bottom: 30px;
  flex-grow: 1;
  max-width: 440px;
  display: flex;
  align-items: center;
  text-align: center;
}

/* Кнопка с градиентной обводкой */
.product-button {
  font-family: 'DINPro', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #161817;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 12px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;

  width: fit-content;
}

.product-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    90deg,
    #15a6e1 0%,
    #00caf4 15%,
    #00caf4 31%,
    #6789e0 50%,
    #ef786f 71%,
    #eb5c54 81%,
    #e8423b 100%
  );
  border-radius: 50px;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.product-button:hover {
  transform: translateY(-2px);
}

.product-button:hover::before {
  opacity: 0.8;
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
  .know-products-section {
    padding: 60px 0;
  }

  .know-products-container {
    gap: 40px;
  }

  .know-products-title {
    font-size: 32px;
  }

  .product-info-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .product-info-block {
    max-width: 100%;
    padding: 30px;
  }

  .product-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .product-button {
    font-size: 15px;
    padding: 10px 25px;
  }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
  .know-products-section {
    padding: 40px 0;
  }

  .know-products-container {
    gap: 30px;
    padding: 0 16px;
  }

  .know-products-title {
    font-size: 22px;
  }

  .product-info-container {
    gap: 20px;
  }

  .product-info-block {
    width: 100%;
    padding: 25px;
    border-radius: 15px;
  }

  .product-description {
    font-size: 15px;
    margin-bottom: 30px;
    text-align: center;
  }

  .product-button {
    font-size: 14px;
    padding: 8px 20px;
    width: 100%;
    text-align: center;
  }
}
