/*--------------------------------------------------------------
# Produktové karty
--------------------------------------------------------------*/
.product-showcase {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  padding: 0 0 40px 0;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #4fa6d5;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  font-size: 16px;
  color: #777;
  max-width: 700px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
  overflow: hidden;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  position: relative;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-content {
  padding: 25px;
}

.product-title {
  color: #2e3135;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.product-title::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: #4fa6d5;
  bottom: 0;
  left: 0;
}

.product-description {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-badge {
  display: inline-block;
  background-color: #e9f6fe;
  color: #4fa6d5;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* Responzivní styly pro produktové karty */
@media (max-width: 991px) {
  .product-image-wrapper {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 28px;
  }
  
  .product-content {
    padding: 20px;
  }
  
  .product-title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .product-image-wrapper {
    height: 200px;
  }
  
  .product-content {
    padding: 15px;
  }
  
  .product-description {
    font-size: 14px;
  }
}