.producers-archive-page {
  max-width: 1400px;
}

/* هدر */
.archive-header {
  background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
  border-radius: 2rem;
  padding: 3rem 2rem;
}

.header-badge {
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* آمار */
.stat-box {
  min-width: 120px;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

/* فیلترها */
.filters-section .form-select,
.filters-section .btn {
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
}

.filters-section .form-select:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* کارت تولیدکننده */
.producer-card {
  position: relative;
}

.producer-card .card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f1f1f1;
}

.producer-card .card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
  border-color: #198754;
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.card-badge .badge {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(25, 135, 84, 0.2);
}

/* تصویر */
.producer-image-container {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.producer-image {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.producer-card:hover .producer-image {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.producer-card:hover .image-overlay {
  opacity: 1;
}

.placeholder-image {
  height: 240px;
}

/* اطلاعات */
.producer-info .info-item {
  display: flex;
  align-items: center;
}

.producer-quote {
  background: linear-gradient(135deg, #f8fff8 0%, #f1fff1 100%);
  position: relative;
  overflow: hidden;
}

.producer-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23198754" opacity="0.05" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
}

/* Pagination */
.producers-pagination ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.producers-pagination li {
  margin: 0 4px;
}

.producers-pagination a,
.producers-pagination span {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #dee2e6;
  color: #495057;
  transition: all 0.3s ease;
}

.producers-pagination a:hover {
  background-color: #f8f9fa;
  border-color: #198754;
  color: #198754;
}

.producers-pagination .current {
  background-color: #198754;
  border-color: #198754;
  color: white;
}

/* CTA */
.archive-cta {
  position: relative;
  overflow: hidden;
}

.archive-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(25,135,84,0.05) 0%, transparent 70%);
  z-index: 0;
}

.archive-cta > .container {
  position: relative;
  z-index: 1;
}

/* Empty state */
.empty-state {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .archive-header h1 {
    font-size: 2.2rem;
  }
  
  .producer-image-container {
    height: 200px;
  }
  
  .filters-section .row > div {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .archive-stats .col-auto {
    flex: 1;
    min-width: 100px;
  }
  
  .producer-card .card-body {
    padding: 1.5rem;
  }
}