

/* Start:/assets/css/pages/catalog.css?178431773341263*/
/* ==================================================================
   КАТАЛОГ - ОБЩИЕ СТИЛИ
   ================================================================== */

/* Заголовок каталога */
.catalog-header {
  background: linear-gradient(135deg, #0d6efd 0%, #1d8ce0 100%);
  color: white;
  padding: 60px 0 40px;
}

.catalog-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.catalog-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.catalog-breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

/* Управление каталогом */
.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.catalog-sort {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-label {
  font-weight: 500;
  color: var(--text);
}

.sort-select {
  padding: 0.5rem 2rem 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  min-width: 200px;
  font-family: 'Montserrat', sans-serif;
}

.catalog-view {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee2e6;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.view-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Пустой каталог */
.catalog-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.catalog-empty-icon {
  font-size: 4rem;
  color: #dee2e6;
  margin-bottom: 1.5rem;
}

.catalog-empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.catalog-empty-description {
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Фильтры каталога */
.filters-sidebar {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 80px;
  z-index: 1;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dee2e6;
}

.filter-title {
  font-weight: 600;
  color: var(--text);
  margin: 0;
  font-size: 1.1rem;
}

.filter-clear {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.filter-clear:hover {
  background-color: rgba(220, 53, 69, 0.1);
}

.filter-section {
  margin-bottom: 1.8rem;
  animation: slideInLeft 0.3s ease;
}

.filter-section:last-child {
  margin-bottom: 0;
}

.filter-section h6 {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Категории фильтров */
.filter-categories {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.filter-category:hover {
  background-color: rgba(13, 110, 253, 0.05);
}

.filter-category input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.filter-category label {
  flex: 1;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--gray);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.filter-category-count {
  background: var(--light);
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--text);
}

/* Фильтр по цене */
.price-filter {
  margin-top: 0.5rem;
}

.price-slider {
  margin-bottom: 1rem;
}

.price-range {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.price-range input {
  width: 48%;
  padding: 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
}

.price-filter-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.price-filter-item {
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  background: white;
  border: 1px solid #dee2e6;
}

.price-filter-item:hover {
  background-color: #f8f9fa;
  border-color: #0d6efd;
}

.price-filter-item.active {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

/* Теги фильтров */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  font-size: 0.8rem;
}

.filter-tag button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

/* Действия с фильтрами */
.filter-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

.filter-btn {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.filter-btn.apply {
  background: var(--primary);
  color: white;
}

.filter-btn.apply:hover {
  background: var(--dark-blue);
}

.filter-btn.reset {
  background: #f8f9fa;
  color: var(--text);
  border: 1px solid #dee2e6;
}

.filter-btn.reset:hover {
  background: #e9ecef;
}

/* Активные фильтры */
.active-filters {
  background: #e8f4ff;
  border: 1px solid #b6d4fe;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 20px;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  background: #0066cc;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin: 0 5px 5px 0;
}

.active-filter-tag .remove-filter {
  margin-left: 6px;
  cursor: pointer;
  opacity: 0.8;
}

.active-filter-tag .remove-filter:hover {
  opacity: 1;
}

.clear-all-filters {
  color: #dc3545;
  text-decoration: none;
  font-size: 0.85rem;
  margin-left: 10px;
}

.clear-all-filters:hover {
  text-decoration: underline;
}

/* Поисковый фильтр */
.search-filter {
  position: relative;
  margin-bottom: 20px;
}

.search-filter input {
  padding-left: 40px;
  border-radius: 20px;
}

.search-filter i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}

/* Нет результатов */
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: #6c757d;
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #dee2e6;
}

/* Группы фильтров */
.filter-group {
  margin-bottom: 25px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-option {
  margin-bottom: 8px;
}

.filter-option:last-child {
  margin-bottom: 0;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #495057;
  transition: all 0.2s;
}

.filter-checkbox:hover {
  color: #0066cc;
}

.filter-checkbox input {
  margin-right: 10px;
  cursor: pointer;
}

.filter-count {
  font-size: 0.8rem;
  color: #6c757d;
  background: #e9ecef;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: auto;
}

/* Скрытые элементы */
.catalog-card.hidden,
.service-item.hidden {
  display: none;
}

/* Адаптивность фильтров */
@media (max-width: 991.98px) {
  .filters-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
  
  .filter-header {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .filters-sidebar {
    padding: 1rem;
  }
  
  .filter-actions {
    flex-direction: column;
  }
  
  .filter-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .price-range {
    flex-direction: column;
  }
  
  .price-range input {
    width: 100%;
  }
  
  .filter-tags {
    justify-content: center;
  }
  
  .active-filters {
    margin-top: 20px;
  }
}

/* Адаптивность каталога */
@media (max-width: 991.98px) {
  .catalog-controls {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .catalog-view {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .catalog-header {
    padding: 40px 0 30px;
  }
  
  .catalog-title {
    font-size: 2rem;
  }
  
  .catalog-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .catalog-sort {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .sort-select {
    width: 100%;
  }
}
/* ==================================================================
   ФИЛЬТРЫ КАТАЛОГА
   ================================================================== */

/* Основной контейнер фильтров */
.filter-section {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Поиск */
.search-filter {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-filter i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1rem;
  z-index: 10;
}

.search-filter input {
  padding-left: 45px;
  border-radius: 30px;
  border: 2px solid #e9ecef;
  height: 48px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
  font-family: 'Montserrat', sans-serif;
}

.search-filter input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
  outline: none;
}

.search-filter input::placeholder {
  color: #adb5bd;
  font-size: 0.9rem;
}

/* Активные фильтры */
.active-filters {
  background: #e8f4ff;
  border: 1px solid #b6d4fe;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.active-filters strong {
  color: #0a58ca;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.clear-all-filters {
  color: #dc3545;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: rgba(220, 53, 69, 0.1);
  transition: all 0.3s ease;
}

.clear-all-filters:hover {
  background: #dc3545;
  color: white;
  text-decoration: none;
}

#activeFiltersList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
  animation: tagAppear 0.3s ease;
}

@keyframes tagAppear {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.active-filter-tag .remove-filter {
  margin-left: 8px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.active-filter-tag .remove-filter:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* Группы фильтров */
.filter-group {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1.5rem;
}

.filter-group:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.filter-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #2c3e50;
  display: flex;
  align-items: center;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  position: relative;
}

.filter-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #1d8ce0);
  border-radius: 2px;
}

/* Опции фильтров */
.filter-options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-option {
  margin-bottom: 0.8rem;
}

.filter-option:last-child {
  margin-bottom: 0;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: #495057;
  transition: all 0.2s ease;
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.filter-checkbox:hover {
  color: var(--primary);
  background: rgba(13, 110, 253, 0.03);
  transform: translateX(3px);
}

.filter-checkbox input {
  margin-right: 12px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.filter-count {
  font-size: 0.8rem;
  color: #6c757d;
  background: #e9ecef;
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
  margin-left: auto;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filter-checkbox:hover .filter-count {
  background: var(--light);
  color: var(--primary);
}

/* Диапазон цен */
.price-range {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.5rem;
}

.price-input {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  background: white;
}

.price-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
  outline: none;
}

.price-separator {
  color: #6c757d;
  font-weight: 600;
  font-size: 1.2rem;
}

/* Предустановленные ценовые диапазоны */
.price-filter-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.price-filter-item {
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  background: white;
  border: 1px solid #dee2e6;
  font-weight: 500;
  color: #495057;
}

.price-filter-item:hover {
  background-color: var(--light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.price-filter-item.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

/* Кнопки фильтрации */
.filter-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.filter-btn {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.filter-btn i {
  font-size: 1rem;
}

.filter-btn.apply {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.filter-btn.apply:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 110, 253, 0.3);
}

.filter-btn.apply:active {
  transform: translateY(0);
}

.filter-btn.reset {
  background: #f8f9fa;
  color: var(--text);
  border: 1px solid #dee2e6;
}

.filter-btn.reset:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filter-btn.reset:active {
  transform: translateY(0);
}

/* Статистика фильтров */
.filter-stats {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1.5rem;
  border: 1px solid #e9ecef;
}

.filter-stats .stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #dee2e6;
}

.filter-stats .stat-item:last-child {
  border-bottom: none;
}

.filter-stats .stat-label {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
}

.filter-stats .stat-value {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  background: rgba(13, 110, 253, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
}

/* Быстрые ссылки */
.quick-links-section {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
}

.quick-links-title {
  font-size: 1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.quick-links-title i {
  color: var(--primary);
  font-size: 1.2rem;
}

.quick-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links-list li {
  margin-bottom: 0.8rem;
}

.quick-links-list li:last-child {
  margin-bottom: 0;
}

.quick-links-list a {
  color: #495057;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
  background: #f8f9fa;
}

.quick-links-list a:hover {
  color: var(--primary);
  background: var(--light);
  transform: translateX(5px);
}

.quick-links-list a i {
  color: var(--primary);
  margin-right: 0.75rem;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* Сортировка */
.sort-dropdown .btn {
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid #e9ecef;
  background: white;
  color: #495057;
  transition: all 0.3s ease;
}

.sort-dropdown .btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.sort-dropdown .btn:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.sort-dropdown .dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 200px;
}

.sort-dropdown .dropdown-item {
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #495057;
  transition: all 0.2s ease;
}

.sort-dropdown .dropdown-item:hover {
  background: var(--light);
  color: var(--primary);
  transform: translateX(3px);
}

.sort-dropdown .dropdown-item i {
  margin-right: 0.5rem;
  color: var(--primary);
}

/* Кнопка переключения вида */
.view-toggle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  background: white;
  color: #495057;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.view-toggle.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.view-toggle i {
  font-size: 1.2rem;
}

/* Нет результатов */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 20px;
  border: 2px dashed #e9ecef;
  margin: 2rem 0;
}

.no-results i {
  font-size: 4rem;
  color: #dee2e6;
  margin-bottom: 1.5rem;
}

.no-results h5 {
  font-weight: 700;
  color: #495057;
  margin-bottom: 0.5rem;
}

.no-results p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.no-results .btn {
  border-radius: 30px;
  padding: 0.6rem 2rem;
  font-weight: 600;
}

/* Результаты поиска */
.results-info {
  background: #f8f9fa;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.results-info strong {
  color: var(--primary);
  font-size: 1.1rem;
  margin-right: 0.3rem;
}

/* Адаптивность */
@media (max-width: 991.98px) {
  .filter-section {
    position: static;
    margin-bottom: 2rem;
    padding: 1.25rem;
  }
  
  .filter-actions {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 1rem 0;
    margin: 1rem 0 0;
    border-top: 1px solid #e9ecef;
    z-index: 10;
  }
}

@media (max-width: 768px) {
  .filter-section {
    padding: 1.25rem;
    border-radius: 12px;
  }
  
  .filter-title {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .filter-checkbox {
    font-size: 0.9rem;
  }
  
  .filter-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .filter-btn {
    width: 100%;
    padding: 0.7rem;
  }
  
  .price-range {
    flex-direction: row;
  }
  
  .price-input {
    width: 100%;
  }
  
  .quick-links-list a {
    padding: 0.6rem 1rem;
  }
  
  .active-filters {
    padding: 1rem;
  }
  
  .active-filter-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
  
  .results-info {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
  
  .sort-dropdown .btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
  
  .view-toggle {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 576px) {
  .filter-section {
    padding: 1rem;
  }
  
  .filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
  }
  
  .filter-options {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 0.5rem;
  }
  
  .filter-options::-webkit-scrollbar {
    width: 4px;
  }
  
  .filter-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  
  .filter-options::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
  }
  
  .price-filter-items {
    gap: 0.4rem;
  }
  
  .price-filter-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .filter-stats .stat-value {
    font-size: 1rem;
    padding: 0.15rem 0.6rem;
  }
  
  .search-filter input {
    height: 44px;
    font-size: 0.9rem;
  }
  
  .quick-links-list a {
    font-size: 0.85rem;
  }
}

/* Анимации для фильтров */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.filter-section {
  animation: fadeIn 0.5s ease;
}

.filter-group {
  animation: slideInLeft 0.3s ease;
  animation-fill-mode: both;
}

.filter-group:nth-child(1) { animation-delay: 0.05s; }
.filter-group:nth-child(2) { animation-delay: 0.1s; }
.filter-group:nth-child(3) { animation-delay: 0.15s; }
.filter-group:nth-child(4) { animation-delay: 0.2s; }
.filter-group:nth-child(5) { animation-delay: 0.25s; }
.filter-group:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Стили для скролла в фильтрах */
.filter-options::-webkit-scrollbar {
  width: 6px;
}

.filter-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.filter-options::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.filter-options::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Состояния загрузки */
.filter-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.filter-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}




/* ==================================================================
   ЗАГОЛОВОК КАТАЛОГА - ОПТИМИЗИРОВАННАЯ ВЕРСИЯ
   ================================================================== */

/* Используем CSS custom properties для легкой настройки */
:root {
  --header-primary: #0d6efd;
  --header-secondary: #0b5ed7;
  --header-accent: #ffffff;
  --header-gradient-1: #1a2a6c;
  --header-gradient-2: #0d6efd;
  --header-gradient-3: #0b5ed7;
  --header-text-light: rgba(255, 255, 255, 0.95);
  --header-shadow: rgba(0, 0, 0, 0.2);
  --header-gold-glow: rgba(255, 215, 0, 0.3);
}

.page-header {
  position: relative;
  background: linear-gradient(135deg, 
    var(--header-gradient-1), 
    var(--header-gradient-2), 
    var(--header-gradient-3));
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  will-change: background-position;
}

/* Оптимизация анимаций - используем transform и opacity */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Уменьшаем количество фоновых элементов для производительности */
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: min(800px, 80vw);
  height: min(800px, 80vw);
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 20s ease-in-out infinite;
  z-index: 1;
  will-change: transform;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: min(600px, 60vw);
  height: min(600px, 60vw);
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBlob 25s ease-in-out infinite reverse;
  z-index: 1;
  will-change: transform;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -3%) scale(1.05); }
  66% { transform: translate(-2%, 2%) scale(0.95); }
}

/* Оптимизированные геометрические фигуры - используем меньше элементов */
.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  z-index: 1;
  will-change: transform, border-radius;
}

.shape-1 {
  width: min(400px, 40vw);
  height: min(400px, 40vw);
  top: -15%;
  right: 5%;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
  animation: rotateSlow 35s linear infinite;
}

.shape-2 {
  width: min(300px, 30vw);
  height: min(300px, 30vw);
  bottom: -10%;
  left: 10%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  animation: rotateSlow 45s linear infinite reverse;
}

.shape-3 {
  width: min(200px, 20vw);
  height: min(200px, 20vw);
  top: 30%;
  left: 15%;
  background: rgba(255, 215, 0, 0.02);
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  animation: morphShape 18s ease-in-out infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes morphShape {
  0%, 100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  50% { border-radius: 42% 58% 38% 62% / 48% 33% 67% 52%; }
}

/* Контейнер с контентом */
.page-header .container {
  position: relative;
  z-index: 10;
}

.page-header .py-5 {
  padding-top: clamp(3rem, 8vh, 5rem) !important;
  padding-bottom: clamp(3rem, 8vh, 5rem) !important;
}

/* Левая часть с заголовком */
.page-header .col-lg-8 {
  animation: slideInLeft 0.7s ease-out;
  position: relative;
}

/* Заголовок с оптимизированными анимациями */
.page-header h1 {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--header-accent) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientText 8s ease infinite;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
  text-shadow: 0 5px 15px var(--header-shadow);
  will-change: background-position;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.page-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--header-accent), #fff, var(--header-accent));
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out 0.3s both;
}

@keyframes expandWidth {
  from { width: 0; opacity: 0; }
  to { width: 100px; opacity: 1; }
}

/* Подзаголовок */
.page-header .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--header-text-light);
  max-width: 90%;
  text-shadow: 0 2px 4px var(--header-shadow);
  animation: fadeInUp 0.7s ease-out 0.2s both;
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid var(--header-accent);
  font-weight: 400;
}

/* Счетчик услуг - оптимизирован */
.service-counter {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  border: 1px solid var(--header-gold-glow);
  margin-top: 1.5rem;
  animation: fadeInUp 0.7s ease-out 0.4s both;
  box-shadow: 0 5px 15px var(--header-shadow);
  transition: transform 0.3s ease;
}

.service-counter:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.service-counter i {
  margin-right: 0.8rem;
  color: var(--header-accent);
  font-size: 1.2rem;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.quick-order-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2), 0 0 0 2px var(--header-primary) !important;
}

/* Декоративный элемент */
.quick-order-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--header-primary), var(--header-accent), var(--header-primary));
  background-size: 200% 100%;
  animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* Заголовок карточки */
.quick-order-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.quick-order-title i {
  color: var(--header-primary);
  font-size: 1.6rem;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Описание */
.quick-order-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #e2e8f0;
}

/* Кнопки действий */
.quick-order-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Основная кнопка - синяя */
.btn-order-primary {
  background: linear-gradient(135deg, var(--header-primary), var(--header-secondary));
  border: none;
  border-radius: 16px;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-order-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.btn-order-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(13, 110, 253, 0.4);
  background: linear-gradient(135deg, var(--header-secondary), var(--header-primary));
  color: white;
}

.btn-order-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-order-primary i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-order-primary:hover i {
  transform: translateX(5px) scale(1.1);
}

/* Вторичная кнопка */
.btn-order-secondary {
  background: transparent;
  border: 2px solid var(--header-primary);
  border-radius: 16px;
  padding: 0.9rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--header-primary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
}

.btn-order-secondary:hover {
  background: var(--header-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}

.btn-order-secondary i {
  transition: transform 0.3s ease;
}

.btn-order-secondary:hover i {
  transform: rotate(90deg);
}

/* Ссылка на все контакты */
.all-contacts-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--header-primary);
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 0.8rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.all-contacts-link:hover {
  color: var(--header-secondary);
  gap: 0.8rem;
}

.all-contacts-link i {
  font-size: 0.9rem;
}

/* ==================================================================
   ОПТИМИЗИРОВАННЫЕ ПАРЯЩИЕ ИКОНКИ - МЕНЬШЕЕ КОЛИЧЕСТВО
   ================================================================== */

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

.floating-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  animation: floatIcon 18s linear infinite;
  will-change: transform;
}

.floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 70%; right: 8%; animation-delay: 3s; }
.floating-icon:nth-child(3) { bottom: 15%; left: 12%; animation-delay: 6s; }
.floating-icon:nth-child(4) { top: 40%; right: 18%; animation-delay: 9s; }
.floating-icon:nth-child(5) { bottom: 30%; left: 35%; animation-delay: 12s; }

@keyframes floatIcon {
  0% { transform: translateY(0) translateX(0) rotate(0deg); }
  25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
  50% { transform: translateY(15px) translateX(-15px) rotate(180deg); }
  75% { transform: translateY(-25px) translateX(15px) rotate(270deg); }
  100% { transform: translateY(0) translateX(0) rotate(360deg); }
}

/* ==================================================================
   ОПТИМИЗИРОВАННЫЕ ЧАСТИЦЫ - УМЕНЬШЕНО КОЛИЧЕСТВО
   ================================================================== */

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  opacity: 0.5;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat 12s linear infinite;
  will-change: transform;
}

.particle:nth-child(1) { top: 15%; left: 8%; animation-duration: 10s; }
.particle:nth-child(2) { top: 75%; left: 15%; animation-duration: 14s; animation-delay: 2s; }
.particle:nth-child(3) { top: 35%; right: 12%; animation-duration: 12s; animation-delay: 4s; }
.particle:nth-child(4) { bottom: 25%; right: 20%; animation-duration: 16s; animation-delay: 1s; }
.particle:nth-child(5) { top: 85%; left: 35%; animation-duration: 13s; animation-delay: 3s; }

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-30px) translateX(15px); }
  50% { transform: translateY(20px) translateX(-20px); }
  75% { transform: translateY(-25px) translateX(12px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Анимации текста */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================================================================
   АДАПТИВНОСТЬ И ОПТИМИЗАЦИЯ ДЛЯ МОБИЛЬНЫХ
   ================================================================== */

@media (max-width: 991.98px) {
  .page-header .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .page-header .col-lg-8,
  .page-header .col-lg-4 {
    text-align: center !important;
  }
  
  .page-header .lead {
    margin-left: auto;
    margin-right: auto;
    border-left: 4px solid var(--header-accent);
    padding-left: 1rem;
    text-align: left;
    max-width: 90%;
  }
  
  .page-header h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .page-header .col-lg-4 {
    margin-top: 2rem;
  }
  
  .quick-order-card {
    max-width: 450px;
    margin: 0 auto;
  }
  
  /* Отключаем тяжелые анимации на мобильных */
  .floating-icons,
  .particles,
  .shape {
    opacity: 0.2;
    animation: none;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header .lead {
    font-size: 1rem;
    padding-left: 0.8rem;
  }
  
  .quick-order-title {
    font-size: 1.2rem;
  }
  
  .btn-order-primary,
  .btn-order-secondary {
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .service-counter {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }
  
  .service-counter i {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-header .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .quick-order-card {
    padding: 1.2rem !important;
    border-radius: 20px !important;
  }
  
  .quick-order-actions {
    gap: 0.6rem;
  }
  
  .floating-icons,
  .particles {
    display: none;
  }
}

/* Для пользователей, которые предпочитают уменьшенное движение */
@media (prefers-reduced-motion: reduce) {
  .page-header,
  .page-header::before,
  .page-header::after,
  .shape,
  .floating-icon,
  .particle,
  .service-counter i,
  .btn-order-primary,
  .btn-order-secondary {
    animation: none !important;
    transition: none !important;
  }
  
  .quick-order-card:hover {
    transform: none;
  }
}
/* End */


/* Start:/assets/css/pages/catalog-list.css?17843177337716*/
/* ==================================================================
   КАТАЛОГ - СЕТКА УСЛУГ
   ================================================================== */

/* Основная сетка */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Элемент каталога */
.catalog-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.catalog-item:nth-child(1) { animation-delay: 0.1s; }
.catalog-item:nth-child(2) { animation-delay: 0.15s; }
.catalog-item:nth-child(3) { animation-delay: 0.2s; }
.catalog-item:nth-child(4) { animation-delay: 0.25s; }
.catalog-item:nth-child(5) { animation-delay: 0.3s; }
.catalog-item:nth-child(6) { animation-delay: 0.35s; }
.catalog-item:nth-child(7) { animation-delay: 0.4s; }
.catalog-item:nth-child(8) { animation-delay: 0.45s; }
.catalog-item:nth-child(9) { animation-delay: 0.5s; }
.catalog-item:nth-child(10) { animation-delay: 0.55s; }
.catalog-item:nth-child(11) { animation-delay: 0.6s; }
.catalog-item:nth-child(12) { animation-delay: 0.65s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(13, 110, 253, 0.2);
}

/* Заголовок элемента */
.catalog-item-header {
  position: relative;
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.catalog-item-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

/* Код услуги */
.catalog-code {
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.25rem;
  font-family: 'Montserrat', sans-serif;
}

.catalog-code.level-1 {
  color: #0d6efd;
}

.catalog-code.level-2 {
  color: #1d8ce0;
}

/* Заголовок */
.catalog-item-title {
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Тело элемента */
.catalog-item-body {
  padding: 0 1.5rem 1rem 1.5rem;
}

.catalog-item-description {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

/* Мета-информация */
.catalog-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.catalog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.catalog-meta-item i {
  font-size: 0.9rem;
}

/* Подвал элемента */
.catalog-item-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Цена */
.catalog-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}

.catalog-price .old {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

/* Действия */
.catalog-actions {
  display: flex;
  gap: 0.5rem;
}

.catalog-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  font-family: 'Montserrat', sans-serif;
}

.catalog-btn.primary {
  background: var(--primary);
  color: white;
}

.catalog-btn.primary:hover {
  background: var(--dark-blue);
}

.catalog-btn.secondary {
  background: #f8f9fa;
  color: var(--text);
  border: 1px solid #dee2e6;
}

.catalog-btn.secondary:hover {
  background: #e9ecef;
}

/* Карточки для уровней (альтернативный вид) */
.catalog-card {
  border-left: 4px solid #0d6efd;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.catalog-card.level-1 {
  background-color: #f8f9fa;
  border-left-color: #0d6efd;
}

.catalog-card.level-2 {
  background-color: #ffffff;
  border-left-color: #1d8ce0;
}

.catalog-card.level-2:hover {
  border-left-color: #1d8ce0;
}

/* Ссылка на карточку */
.catalog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.catalog-card-link:hover .card {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  transition: all 0.2s ease-in-out;
}

/* Скрытые карточки */
.catalog-card.hidden,
.service-item.hidden {
  display: none;
}

/* Дополнительные стили для карточек */
.service-meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.service-meta span {
  background: var(--light);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-right: 0.5rem;
}

/* Адаптивность сетки */
@media (max-width: 1199.98px) {
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 991.98px) {
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }
  
  .catalog-item-header,
  .catalog-item-body,
  .catalog-item-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .catalog-item-header {
    padding-top: 1.2rem;
  }
  
  .catalog-item-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .catalog-actions {
    justify-content: center;
  }
  
  .catalog-item-title {
    font-size: 1rem;
  }
  
  .catalog-item-description {
    font-size: 0.9rem;
  }
  
  .catalog-price {
    font-size: 1.1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  
  .catalog-item-badge {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.7rem;
  }
  
  .catalog-code {
    font-size: 1.1rem;
  }
}

/* Режим списка (для будущего использования) */
.catalog-list-view .catalog-grid {
  grid-template-columns: 1fr;
}

.catalog-list-view .catalog-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.catalog-list-view .catalog-item-header {
  flex: 0 0 200px;
  padding: 1rem;
}

.catalog-list-view .catalog-item-body {
  flex: 1;
  padding: 1rem;
}

.catalog-list-view .catalog-item-footer {
  flex: 0 0 150px;
  border-top: none;
  border-left: 1px solid #e9ecef;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .catalog-list-view .catalog-item {
    flex-direction: column;
  }
  
  .catalog-list-view .catalog-item-header,
  .catalog-list-view .catalog-item-body,
  .catalog-list-view .catalog-item-footer {
    flex: auto;
    width: 100%;
  }
  
  .catalog-list-view .catalog-item-footer {
    border-left: none;
    border-top: 1px solid #e9ecef;
  }
}
/* End */
/* /assets/css/pages/catalog.css?178431773341263 */
/* /assets/css/pages/catalog-list.css?17843177337716 */
