

/* Start:/bitrix/templates/aspro-allcorp/components/bitrix/system.pagenavigation/.default/style.css?1745325210799*/
    .wrap_pagination {
        text-align: center;
    }

    .pagination {
        border-radius: 0;
        border-color: #dfe5e9;
        background-color: transparent;
    }

    .pagination .page-item {
        border-radius: 0;
        margin: 0 1px;
    }

    .pagination .page-item .page-link {
        color: #4c7698;
        border-radius: 5 !important;
        padding: 5px 10px;
        transition: background-color 0.3s, color 0.3s;
    }

    .pagination .page-item .page-link:hover {
        background-color: #66bedf;
        color: white;
    }
.pagination .page-item.disabled .page-link {
    color: rgb(46 52 58 / 98%);
}

    .pagination .page-item .page-link:hover .icon {
        color: white;
    }

    .pagination .page-item .page-link .icon {
        color: #acb6bc;
    }
/* End */


/* Start:/bitrix/templates/aspro-allcorp/components/bitrix/news.list/catalog-list/style.css?17552553913753*/
.card {
  border: 1px solid #d7dee3;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(230, 240, 245, 0.63);
  transition: box-shadow 0.3s ease-in-out, transform 0.2s ease-in-out;
  margin-top: 20px;
}

.card:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.005);
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.card .image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.card .image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover .image img {
  transform: scale(1.1);
  box-shadow: 0px 3px 6px rgba(65, 185, 234, 0.3);
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.card-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-title a:hover {
  color: #1da4d3;
  text-decoration: underline;
}

.card .badge {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 8px;
}

.card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #28a745;
  transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.card:hover .price {
  color: #1da4d3;
  transform: scale(1.1);
}

.card .price_old {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  opacity: 0.7;
}

.card-text {
  font-size: 0.8rem;
  margin: 20px 0;
}

.card .btn {
  padding: 8px 12px;
  border-radius: 15px;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card .btn-outline-primary {
  border: 1px solid #007bff;
  color: #007bff;
}

.card .btn-outline-primary:hover {
  background: #007bff;
  color: #fff;
}

.btn i {
  transition: transform 0.2s ease-in-out;
}

.btn:hover i {
  transform: translateX(4px);
}

/* Базовый плоский бейдж */
.k-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  padding: 0.375rem 0.6rem 0.375rem 0.5rem;
  font-size: 0.875rem;
  -webkit-font-smoothing: antialiased;
}

.k-status--flat {
  --k-fg: var(--bs-primary);
  --k-bg: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.1);
  --k-br: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.28);
  color: var(--k-fg);
  background: var(--k-bg);
  border: 1px solid var(--k-br);
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
}

.k-status__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.02);
}

/* Цветовые варианты */
.k-status--available {
  /* В наличии: зелёный */
  --k-fg: #198754; /* Bootstrap success */
  --k-bg: rgba(25, 135, 84, 0.1);
  --k-br: rgba(25, 135, 84, 0.28);
}

.k-status--preorder {
  /* Под заказ: тёплый нейтральный */
  --k-fg: #b8742a;
  --k-bg: rgba(184, 116, 42, 0.12);
  --k-br: rgba(184, 116, 42, 0.32);
}

.k-status--expected {
  /* Ожидается: жёлто-оранжевый */
  --k-fg: #d49100;
  --k-bg: rgba(212, 145, 0, 0.14);
  --k-br: rgba(212, 145, 0, 0.34);
}

.k-status--out {
  /* Нет в наличии: спокойный серый */
  --k-fg: #5f6b7a;
  --k-bg: rgba(95, 107, 122, 0.1);
  --k-br: rgba(95, 107, 122, 0.28);
  color: var(--k-fg);
}

@media (max-width: 992px) {
  .card {
    flex-direction: column;
  }

  .card .image {
    padding: 10px;
  }

  .card .image img {
    width: 90px;
    height: 90px;
  }

  .card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .card {
    flex-direction: column;
  }

  .card .image img {
    width: 80px;
    height: 80px;
  }

  .card-title {
    font-size: 1.3rem;
  }
}

/* End */
/* /bitrix/templates/aspro-allcorp/components/bitrix/system.pagenavigation/.default/style.css?1745325210799 */
/* /bitrix/templates/aspro-allcorp/components/bitrix/news.list/catalog-list/style.css?17552553913753 */
