/* Plaka Dağıtım Sayfası - Kurumsal Basit Tasarım */

.plaka-distribution-page {
  background-color: #f8f9fa;
}

/* Hero Section - Basit ve Kurumsal */
.plaka-hero-section {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 30px 0;
}

.plaka-hero-section .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 15px;
}

.plaka-hero-section .breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
}

.plaka-hero-section .breadcrumb-item a:hover {
  color: #495057;
}

.plaka-hero-section .breadcrumb-item.active {
  color: #212529;
}

.plaka-hero-section h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
}

.plaka-hero-section p {
  font-size: 1rem;
  color: #6c757d;
}

/* Products Section */
.products-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.plaka-product-card {
  transition: box-shadow 0.2s ease;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dee2e6 !important;
  overflow: hidden;
}

.plaka-product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  border-color: #adb5bd !important;
}

.product-image-wrapper {
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.product-image {
  transition: transform 0.3s ease;
  max-width: 100%;
  height: auto;
  display: block;
}

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

.card-body {
  padding: 1.5rem;
}

.product-title-link {
  color: #212529;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  transition: color 0.2s ease;
}

.product-title-link:hover {
  color: #667eea;
}

.product-actions .btn {
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 20px;
  transition: all 0.2s ease;
}

.product-actions .btn-primary {
  background-color: #667eea;
  border-color: #667eea;
}

.product-actions .btn-primary:hover {
  background-color: #5568d3;
  border-color: #5568d3;
  transform: none;
}

/* Info Section - Basit ve Kurumsal */
.info-section {
  padding: 60px 0;
  background: #fff;
}

.info-item {
  padding: 1.5rem;
  transition: none;
}

.info-icon {
  transition: none;
  border: 1px solid #e9ecef;
}

.info-item h6 {
  font-size: 1rem;
  color: #212529;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
}

/* Empty State */
.empty-state {
  padding: 3rem 1rem;
}

.empty-state i {
  opacity: 0.3;
}

.empty-state h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

.empty-state p {
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .plaka-hero-section {
    padding: 20px 0;
  }

  .plaka-hero-section h1 {
    font-size: 1.5rem;
  }

  .products-section {
    padding: 40px 0;
  }

  .info-section {
    padding: 40px 0;
  }

  .product-image-wrapper {
    min-height: 150px;
  }
}

@media (max-width: 576px) {
  .plaka-hero-section h1 {
    font-size: 1.25rem;
  }

  .card-body {
    padding: 1rem;
  }
}
