/* product-models.css - Ürün modeli kartları için özel stiller */

.product-model-card {
  border-radius: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  background: #fff;
  border: none;
}

.product-model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.product-model-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-model-card:hover .product-model-img {
  transform: scale(1.05);
}

.product-model-body {
  padding: 1.5rem;
}

.product-model-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.8rem;
}

.product-model-description {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-model-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-model-features li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: #4a5568;
  border-bottom: 1px solid #e2e8f0;
}

.product-model-features li:last-child {
  border-bottom: none;
}

.product-model-features li i {
  color: #38a169;
  margin-right: 0.5rem;
}

.product-model-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e53e3e;
  margin-top: 1rem;
}

.btn-model-details {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 25px;
  padding: 0.7rem 1.5rem;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-model-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  color: white;
}

.product-models-container {
  padding: 2rem 0;
}

.product-models-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 3rem;
  position: relative;
}

.product-models-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .product-model-card {
    margin-bottom: 2rem;
  }
  
  .product-models-title {
    font-size: 2rem;
  }
}
