.block-realmain {
    background-color: var(--color-background-page);
    width: 100vw;
    height: fit-content;
    min-height: 100vh;
}

.block-main-realmain {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.block-block {
    display: flex;
    padding-left: 32px;
    gap: 16px;
    margin: 0 auto;
}

.no-scroll {
    overflow: hidden !important; /* Для десктопа */
    position: fixed; /* Для мобильных: фиксирует body, предотвращая скролл */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Для iOS: предотвращает bounce-скролл */
    -webkit-overflow-scrolling: touch;
    touch-action: none; /* Запрещает touch-скролл на body */
}


/* Выбор-категории-фильтр */
.categories-filters {
    overflow-y: auto; /* Позволяет скролл внутри блока */
    touch-action: auto; /* Разрешает touch-скролл внутри */
    
    margin-bottom: 24px;

    display: flex;
    flex-direction: column;
    gap: 24px;

    height: 100%;
    min-height: 100dvh;
    width: 20vw;
    padding: 132px 0 0 24px;

    transition: right 0.3s;
}

.title-filter-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-filter-line-dop {
    display: flex;
    width: 91.667vw;
    max-width: calc(415px + 415px + 2.083vw);
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 10000;
    top: 110px;

    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-category-btn {
  border: none;
  background-color: var(--color-background-primary);
  padding: 10px 18px 9px 17px;
  border-radius: 38px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  display: none;
}


.filter-icon {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.choice {
    display: flex;
    flex-direction: column;
    width: 16.719vw;
    gap: 16px;

    display: none;
}

.choice-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.choice-title {
    color: #000;
    line-height: 125%;
    font-size: var(--font-size-md);
    font-weight: 500;
}

.reset-button {
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
    padding: 0;
    text-decoration: none;

    line-height: 140%;
    color: var(--color-foreground-tertiary);
    font-size: var(--font-size-sm);
}

.choice-cont {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.choice-cont-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    height: 32px;
    padding: 6px 8px;
    background-color: var(--color-background-accent-muted);
    border-radius: 8px;

    color: #000;
    line-height: 140%;
    font-size: var(--font-size-sm);
}

.delete-choice-cont-item {
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
    padding: 0;

    width: 16px;
    height: 16px;
    background-image: url("../img/catalog/delete_icon.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Категории */
.categories {
    display: flex;
    width: 17.344vw;
    transition: display 0.5s ease-in;
}

.categories-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 26px;

    color: #000;
    font-size: var(--font-size-md);
    line-height: 125%;
    font-weight: 500;
}

.categories-icon {
    width: 17.75px;
    height: 9.55px;
    background-image: url("../img/catalog/categories_close.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.categories-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin-top 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 222px;
    box-sizing: border-box;
}
.categories-content.active {
    max-height: 1000px;
    margin-top: 24px;
}


.categories-header.active .categories-icon {
    background-image: url("../img/catalog/categories_open.svg");
}


.category {
    color: var(--color-foreground-primary);
    font-size: var(--font-size-sm);
    line-height: 140%;
    cursor: pointer;

    transition: color 0.3s ease; 
}

.category:hover {
    color: var(--color-foreground-accent);
}

.category:active {
    color: var(--color-foreground-accent);
}

.category.active_catalog {
    color: var(--color-foreground-accent);
    font-weight: 500;
}

/* Фильтры */
.filters {
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    width: calc(222px + 15px + 3px);
    max-width: 100%;
}

.filter-group { 
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.filter-title { 
    font-size: var(--font-size-md);
    line-height: 125%;
    font-weight: 500;
    color: var(--color-foreground-primary);
}

.filter-values { 
    display: flex; 
    flex-direction: column;
    gap: 12px;
}

/* Toggle для статуса */
.toggle-switch { 
    display: flex; 
    gap: 12px; 
}

#status-toggle {
    visibility: hidden;
    position: absolute;
}

.switch-slider { 
    position: relative; 
    width: 42px; 
    height: 22px; 
    background: var(--color-background-tertiary);
    border-radius: 16px; 
    transition: all 0.3s ease; 
}

.switch-slider::after { 
    content: ''; 
    position: absolute; 
    top: 4px; 
    left: 4px;
    width: 14px;
    height: 14px;
    background: var(--color-background-primary);
    border-radius: 50%;
    transition: all 0.3s ease; 
}

input[type="checkbox"]:checked + .switch-slider { 
    background: var(--color-foreground-accent); 
}

input[type="checkbox"]:checked + .switch-slider::after { 
    transform: translateX(20px); 
}

.toggle-label { 
    font-size: var(--font-size-sm);
    line-height: 140%;
    color: var(--color-foreground-primary);
}


/* Чекбоксы */
.catalog-checkbox-label {
    position: relative;
    padding-left: calc(28px + 13px);

    min-height: 28px;

    display: flex;
    align-items: center;
    gap: 13px;

    font-size: var(--font-size-sm);
    line-height: 140%;
    color: var(--color-foreground-primary);
}

.catalog-checkbox-label input {
    position: absolute;
    left: 0;
    top: 0;

    opacity: 0;
    cursor: pointer;

    height: 28px;
    width: 28px;

    z-index: 100;
    padding: 0;
    margin: 0;
}

.catalog-checkmark {
    position: absolute;
    left: 0;
    top: 0;

    height: 28px;
    width: 28px;

    border: 1px solid var(--color-background-accent-muted);
    background-color: var(--color-background-accent-secondary);
    border-radius: 8px;

    transition: all 0.3s ease;

    justify-content: center;
    align-items: center;
    display: flex;
}

.catalog-checkmark-svg {
    width: 15.75px;
    height: 11.25px;
    object-fit: contain;

    visibility: hidden;
}

.catalog-checkbox-label input:checked ~ .catalog-checkmark {
    background-color: var(--color-foreground-accent);
    border-color: var(--color-foreground-accent);
}

.catalog-checkbox-label input:checked ~ .catalog-checkmark .catalog-checkmark-svg {
    visibility: visible;
}

.catalog-checkbox-label.checked {
    color: var(--color-foreground-primary);
}


/* Range slider */
.price-range {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#price-min-value, #price-max-value {
    font-weight: bold;
    color: #333;
}

.price-range .irs--round .irs-from,
.price-range .irs--round .irs-to,
.price-range .irs--round .irs-single,
.price-range .irs--round .irs-min,
.price-range .irs--round .irs-max {
    display: none !important;
}

.price-range .irs--round {
    height: 0 !important;
}

.price-range .dual-range-container {
    height: 15px;
    top: -35px;
    position: relative;
}

.dual-range-container {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dual-range-container.initialized {
    opacity: 1;
    visibility: visible;
}

.price-range .irs--round .irs-line {
  background-color: var(--color-foreground-accent) !important;
  height: 1px !important;
  top: 39px !important;
}

.price-range .irs--round .irs-bar {
  background-color: var(--color-foreground-accent) !important;
  height: 1px !important;
  top: 39px !important;
}

.price-range .irs--round .irs-handle {
  top: 32px !important;
  width: 15px !important;
  height: 15px !important;
  border: 0 !important;
  background-color: var(--color-foreground-accent) !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.price-inputs .price-input-block {
    display: flex;
    gap: 4px;
    align-items: center;
}

.price-input {
    background-color: transparent;
    border: 1px solid var(--color-background-stroke);
    border-radius: 4px;
    height: 36px;

    padding: 0 8px;
}

.price-input {
    max-width: 90px;
    width: 75%;
}



/* Сам каталог */
.main {
    display: flex;
    flex-direction: column;
    margin: 0 32px 0 0;
    padding-bottom: 64px;
    padding-top: 132px;
    width: 74.531vw;
    padding-left: 48px;

    min-height: 100vh;

    gap: 16px;

    border-left: 1px solid var(--color-background-stroke);
}

.title-filter-line-up {
    display: flex;
    justify-content: space-between;
    width: calc((22.5vw + 16px * 2) * 3);
}

.category-title {
    font-size: var(--font-size-2xl);
    line-height: 130%;
    font-weight: 400;
    color: #000;
}

.drop-categories {
    display: flex;
    flex-direction: column;

    position: relative;
    width: 155px;
}

.drop-categories-visible {
    cursor: pointer;
    display: flex;
    background-color: var(--color-background-primary);
    height: 22px;
    align-items: center;
    justify-content: space-between;
    color: var(--color-foreground-primary);
    border-radius: 8px;
    padding: 10px 10px 13px 16px;
    height: 45px;
    width: 100%;
    display: none;

    transition: all 0.3s ease;
}

.drop-categories:hover .drop-categories-visible {
    background-color: var(--color-foreground-accent);
    color: var(--color-background-primary);
}

.drop-categories-title {
    font-size: var(--font-size-sm);
    line-height: 140%;
}

.drop-categories-img {
    width: 7.35px;
    height: 16.27px;
    background-image: url(../img/catalog/new-sort_icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 4.72px;
}

.drop-categories:hover .drop-categories-img {
    width: 15.58px;
    height: 8.08px;
    background-image: url(../img/catalog/new-sort_icon-active.svg);

    margin-right: 1.95px;
}

.drop-categories-content {
    padding-top: 12px;
    display: none;
    position: absolute;
    bottom: calc(-144px);
    z-index: 100;
    width: 100%;

    animation-name: smoothDrop;
    animation-duration: 0.3s;
    animation-timing-function: ease;
}

.drop-categories:hover .drop-categories-content {
    display: flex;
    bottom: calc(-144px - 12px);
}

.drop-categories-content-inside {
    cursor: pointer;
    border-radius: 8px;

    display: flex;
    height: 144px;
    width: 100%;
    padding: 10px 16px;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-background-primary);
}

.drop-categories.phone {
    display: none;
}

.drop-category {
    font-size: var(--font-size-sm);
    line-height: 140%;
    color: var(--color-foreground-primary);
}

.drop-category:hover {
    color: var(--color-foreground-accent);
}

.drop-category.active_catalog {
    color: var(--color-foreground-accent);
    font-weight: 500;
}


.products-cards {
    display: flex;
    width: 100%;
    height: fit-content;
    flex-wrap: wrap;
    gap: 16px;

    padding-bottom: calc(44px - 16px);
}

.products-cards-card {
    display: flex;
    flex-direction: column;

    width: 22.5vw;
    height: 373px;
    background-color: var(--color-background-primary);
    border: 1px solid var(--color-background-stroke);
    color: var(--color-foreground-primary);
    border-radius: 16px;

    position: relative;
}

.products-cards-card.zap .price-year-cont {
    justify-content: center;
    width: fit-content !important;
    margin-top: 12px;
}

.cards-card-stickers {
    position: absolute;
    right: 12.67px;
    top: 12px;

    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: end;
}

.cards-card-stickers-sticker {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 89px;
    padding: 0 10px;
    gap: 7px;
    height: 30px;
    border-radius: 28px;

    font-size: var(--font-size-xs);
    color: var(--color-background-primary);
    line-height: 125%;
}

.cards-card-stickers-sticker img {
    width: 6px;
    height: 6px;

    object-fit: contain;
}

.cards-card-stickers-sticker.in {
    background-color: #22AF5D;
}

.cards-card-stickers-sticker.out {
    background-color: #FFBD06;
}

.cards-card-stickers-sticker.sticker-2 {
    background-color: var(--color-background-primary);
    color: var(--color-foreground-accent);
    border: 1px solid rgba(23, 98, 186, 0.2);
    font-weight: 500;
    height: 29px;
}

.cards-card-image {
    width: 100%;
    height: 190px;
}

.cards-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 12px 12px 0 0;
}

.cards-card-image.zap img {
    object-fit: contain;
}

.cards-card-info {
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 8px;

    height: 183px;
    justify-content: space-between;
}

.cards-card-info-title {
    font-size: var(--font-size-md);
    line-height: 125%;
    color: #000;
    height: 46px;

    transition: color 0.3s ease; 
}

.cards-card-info-title:hover {
    color: var(--color-foreground-accent);
}

.cards-card-info-icons {
    display: flex;
    height: 45px;
    gap: 4px;
    justify-content: space-between;
}

.icons-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 6.719vw;

    justify-content: space-between;
}


.icons-icon-img {
    width: 24px;
    height: 24px;
}

.icons-icon-img.dalkin {
    width: 59px;
    height: 10px;
}

.icons-icon-img.carrier {
    width: 42px;
    height: 22px;
}


.icons-icon-img.tk {
    width: 24px;
    height: 25px;
}


.icons-icon-img img {
    width: 100%;
    height: 100%;
    background-size: cover;
}

.icons-icon-des {
    font-size: var(--font-size-xs);
    line-height: 125%;
}

.cards-card-bottom {
    display: flex;
    height: 52px;
    justify-content: space-between;
    align-items: center;
}

.price-year-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 8px);
}


.price-year-cont.justify-content {
    justify-content: center;
}

.cards-card-price {
    font-size: var(--font-size-md);
    line-height: 125%;
}

.cards-card-year {
    font-size: var(--font-size-sm);
    line-height: 140%;
    color: var(--color-foreground-accent);
}

.get-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    gap: 7px;
    height: 44px;
    border-radius: 28px;
    background-color: var(--color-foreground-accent);
    color: var(--color-background-primary);
    padding: 12px 16px 12px 16px;
    font-size: var(--font-size-sm);
    line-height: 140%;
    align-self: end;
    /* transition: background-color 0.3s ease, color 0.3s ease, opacity 0.8s ease, transform 0.8s ease !important; */
  }
  
  .get-link-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
  }
  
  .get-link-img div {
    width: 16.03px;
    height: 15.98px;
    background-image: url("../img/catalog/card_get.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .main-feature {
    margin-top: -6.5px;
    width: 76px;
  }

  .circle-btn-cat {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-background-accent-muted);
  align-items: center;
  justify-content: center;
  border: none;

  margin-bottom: 2px;

  display: none;
  flex-shrink: 0;
}

.circle-btn-cat div {
  width: 8px;
  height: 8px;
  background-image: url(../img/catalog/circle-arrow.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.dop-obor {
    width: 118px;
}

.step-links {
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 0 auto;
    width: fit-content;
}

.pag-circle-links {
    display: flex;
    gap: 16px;
}

.pag-circle-links-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-foreground-tertiary);
}

.pag-circle-links-link.current {
    border: 1px solid var(--color-foreground-accent);
}

.pag-circle-links-link span {
    color:  var(--color-foreground-tertiary);
    font-size: var(--font-size-md);
    line-height: 125%;
}

.pag-circle-links-link.current span {
    color:  var(--color-foreground-accent);
}

#prev-page .page-icon {
    transform: rotate(180deg);
}


/* Для микроразметки */
.micro-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.micro-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.micro-h2 {
    font-size: var(--font-size-2xl);
    line-height: 110%;
    color: var(--color-foreground-secondary);
    font-weight: 500;
}

.micro-h3 {
    font-size: var(--font-size-sm);
    line-height: 140%;
    color: var(--color-foreground-secondary);
    font-weight: 500;
}

.micro-text {
    font-size: var(--font-size-sm);
    line-height: 140%;
    color: var(--color-foreground-secondary);
    text-align: start;
}

/* .micro-text td,
.micro-text th {
    border: 1px solid var(--color-foreground-secondary);
}

table {
    border-collapse: collapse;
} */

.micro-text th {
    text-align: start;
}

.h3 a {
    white-space: nowrap;
    color: var(--color-foreground-accent);
}

.micro-text a {
    white-space: nowrap;
    color: var(--color-foreground-accent);
}

/* К пагинации */
#show-pages-button,
#show-all-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6.5px 14px;
    border-radius: 18px;

    font-size: var(--font-size-md);
    line-height: 125%;

    border: 1px solid var(--color-foreground-tertiary);
    color: var(--color-foreground-tertiary);

    transition: background-color 0.3s ease, color 0.3s ease;
}

#show-pages-button:hover,
#show-all-button:hover {
    border: 1px solid var(--color-foreground-accent);
    color: var(--color-foreground-accent);
}

/* Нет товаров */
.not-block {
    width: 100%;
    padding-top: 64px;
    display: flex;
    justify-content: center;
}

.not-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 365px;
}

.not-cont-img {
    width: 365px;
    height: 260px;
    position: relative;
}

.not-cont-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.not-cont-img-icon {
    width: 112px;
    height: 112px;

    position: absolute;
    top: calc((100% - 112px) / 2);
    left: calc((100% - 112px) / 2);
}

.not-cont-img-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.not-cont-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.not-cont-info-title {
    font-size: var(--font-size-2xl);
    line-height: 130%;
    color: var(--color-foreground-accent);
    text-align: center;
}

.not-cont-info-blk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.not-cont-info-blk-t {
    font-size: var(--font-size-md);
    line-height: 125%;
    color: var(--color-foreground-primary);
    text-align: center;
}

.not-cont-info-blk-timer {
    display: flex;
    align-items: center;
    border-radius: 28px;
    background-color: var(--color-background-primary);
    padding: 12px;
    gap: 12px;

    color: var(--color-foreground-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;

    cursor: pointer;
}

.not-cont-info-blk-timer .num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-foreground-accent);

    color: var(--color-background-primary);
    font-size: 16px;
    line-height: 140%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.to-catalog {
    display: flex;
    justify-content: space-between;
    width: 218px;
    height: 54px;
    border-radius: 28px;
    background-color: var(--color-foreground-accent);
    color: var(--color-background-primary);
    padding: 12px 12px 12px 24px;
    font-size: 16px;
    align-items: center;
    line-height: 140%;
    font-weight: 500;

    display: none;
}

.to-catalog-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--color-background-primary);
    border-radius: 50%;
}

.to-catalog-img img {
    width: 8px;
    height: 8px;

    object-fit: contain;
}



/* Адаптация на большие экраны (> 1280)*/
@media screen and (min-width: 1440px) {
.block-block {
    gap: 39px;
}


/* Выбор-категории-фильтр */
.categories-filters {
    margin-bottom: 32px;

    gap: 32px;

    width: 16.458vw;
    padding: 132px 0 0 24px;
}

.choice {
    width: 100%;
    flex-direction: column;
    gap: 24px;
}

.choice-title {
    line-height: 110%;
    font-size: var(--font-size-lg);
    font-weight: 600;
}

/* Категории */
.categories {
    width: 15.417vw;
}

.categories-header {
    font-size: var(--font-size-lg);
    line-height: 110%;
    font-weight: 600;
}

.category {
    font-size: 16px;
}

/* Сам каталог */
.main {
    margin: 0 32px 0 0;
    padding-top: 132px;
    width: 75.903vw;
    padding-left: 64px;

    gap: 24px;
}

.category-title {
    font-size: var(--font-size-3xl);
    line-height: 110%;
}

.products-cards {
    gap: 1.667vw;

    padding-bottom: calc(64px - 24px);
}

.products-cards-card {
    width: 22.639vw;
    height: 431px;
}

.cards-card-stickers {
    right: 12.33px;
}

.cards-card-image {
    height: 223px;
}

.cards-card-info {
    padding: 16px 12px;

    height: 208px;
}

.cards-card-info-icons {
    height: 56px;
    gap: 8px;
}

.icons-icon {
    width: 6.597vw;
}

.icons-icon-des {
    font-size: var(--font-size-sm);
    line-height: 140%;
}

.cards-card-bottom {
    height: 58px;
}

.cards-card-year {
    font-size: var(--font-size-md);
    line-height: 125%;
}

.get-link {
    height: 46px;
    font-size: 16px;
  }
  
  .get-link-img {
    width: 18px;
    height: 18px;
  }

  .main-feature {
    margin-top: -6.5px;
    width: 85px;
  }

    .dop-obor {
        width: 145px;
    }

    .title-filter-line-up {
        width: calc(22.639vw * 3 + 24px * 2);
    }

    .price-year-cont {
        height: calc(100% - 12px);
    }



    .cards-card-year {
        font-size: var(--font-size-md);
        line-height: 125%;
    }


    .pag-circle-links-link {
        width: 48px;
        height: 48px;
    }

    .pag-circle-links-link span {
        font-size: var(--font-size-xl);
        line-height: 120%;
    }

    #show-pages-button,
    #show-all-button {
        padding: 12.5px 14px;
        border-radius: 100px;
    }

    /* Для микроразметки */
    .micro-h2 {
        font-size: var(--font-size-3xl);
    }

    .micro-h3 {
        font-size: var(--font-size-md);
        line-height: 125%;
    }

    /* Нет товаров */
    .not-cont {
        width: 629px;
    }

    .not-cont-img-icon {
        width: 124px;
        height: 124px;

        top: calc((100% - 124px) / 2);
        left: calc((100% - 124px) / 2);
    }

    .not-cont-info-title {
        font-size: var(--font-size-3xl);
        line-height: 110%;
    }

    .not-cont-info-blk-t {
        font-size: var(--font-size-lg);
        line-height: 110%;
    }

    .to-catalog {
        width: 233px;
        height: 54px;

        font-size: var(--font-size-md);
        line-height: 125%;
    }
}


@media screen and (min-width: 1920px) {

.block-block {
    padding-left: 48px;
    gap: 99px;
}


/* Выбор-категории-фильтр */
.categories-filters {
    width: 13.073vw;
    max-width: 300px;
    padding: 160px 0 0 24px;
}

.choice-cont {
    gap: 16px;
}

.categories {
    width: 11.563vw;
    max-width: 298px;
    max-width: 100%;
}

/* Сам каталог */
.main {
    margin: 0 48px 0 0;
    padding-top: 160px;
    width: 77.188vw;
    max-width: 1998px;
    padding-left: 96px;

    gap: 32px;
}

.category-title {
    font-size: var(--font-size-4xl);
}

.products-cards {
    gap: 32px 24px;

    padding-bottom: calc(64px - 32px);
}

.products-cards-card {
    width: 23.177vw;
    max-width: 584px;
    height: 556px;
}

.cards-card-image {
    height: 324px;
}

.cards-card-info {
    padding: 16px 24px;

    height: 232px;
}

.cards-card-info-title {
    font-size: var(--font-size-lg);
    line-height: 120%;
    height: 48px;
}

.cards-card-info-icons {
    height: 65px;
    gap: 16px;
    justify-content: space-between;
}

.icons-icon {
    width: 6.354vw;
    max-width: 164px;
}

.icons-icon-img {
    width: 24px;
    height: 24px;
}

.icons-icon-img.dalkin {
    width: 59px;
    height: 10px;
}

.icons-icon-img.carrier {
    width: 42px;
    height: 22px;
}

.icons-icon-img.tk {
    width: 24px;
    height: 25px;
}

.icons-icon-des {
    font-size: var(--font-size-md);
    line-height: 125%;
}

.cards-card-bottom {
    height: 71px;
    align-items: end;
}

.price-year-cont {
    height: 47px;
    flex-direction: row-reverse;
    align-items: center;
    width: 11.615vw;
    max-width: 295px;
    justify-content: space-between;
}

.price-year-cont.justify-content {
    justify-content: start;
}

.cards-card-year {
    font-size: var(--font-size-lg);
    line-height: 110%;
}

.cards-card-price {
    font-size: var(--font-size-lg);
    line-height: 110%;
}

.get-link {
    height: 47px;

    font-size: var(--font-size-md);
    line-height: 125%;

    }

    .main-feature {
        margin-top: -6.5px;
        width: 114px;
    }

    .dop-obor {
        width: 191px;
    }

    .step-links {
        gap: 32px;
    }


    .title-filter-line-up {
        width: calc(23.177vw * 3 + 24px * 2);
        max-width: calc(584px * 3 + 24px * 2);
    }


    /* Нет товаров */
    .not-block {
        padding-top: 146px;
        padding-bottom: 112px;
    }

    .not-cont {
        width: 679px;
    }

    .not-cont-info-title {
        font-size: var(--font-size-4xl);
        line-height: 110%;
    }

    .not-cont-info-blk-t {
        font-size: var(--font-size-xl);
        line-height: 120%;
    }

    .not-cont-info-blk-timer {
        font-size: var(--font-size-md);
        line-height: 125%;
    }

    .to-catalog {
        width: 260px;

        font-size: var(--font-size-xl);
        line-height: 120%;
        font-weight: 400;
    }

    .cards-card-stickers {
        right: 12px;
        top: 12px;
    }
}


/* Адаптация на маленькие экраны (< 768)*/
@media screen and (max-width: 1200px) {
.drop-categories {
    display: none;
}

.drop-categories-min {
    display: flex;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    width: 116px;
    height: fit-content;
}


.drop-categories-visible {
    display: flex;
    height: 31px;
    border-radius: 8px;
    padding: 8px 10px 8px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.drop-categories-title {
    font-size: var(--font-size-xs);
    line-height: 125%;
    font-weight: 500;
}

.drop-categories-img {
    width: 5.51px;
    height: 11.09px;

    margin-right: 6.3px;
}

.drop-categories:hover .drop-categories-img {
    width: 11.09px;
    height: 5.51px;

    margin-right: 2.73px;
}

.drop-categories-content {
    padding-top: 8px;
    bottom: calc(-116px);
    width: 133px;
}

.drop-categories:hover .drop-categories-content {
    bottom: calc(-116px - 8px);
}

.drop-categories-content-inside {
    height: 116px;
    padding: 10px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);  
}

.drop-category {
    font-size: var(--font-size-xs);
    line-height: 125%;
    font-weight: 500;
}

.block-block {
    padding-left: 0;
    gap: 0;
}

.categories-filters {
    max-height: 100vh;
    position: fixed;
    right: -100%;
    width: 323px;
    height: fit-content;
    padding: 24px 48px 26px 24px;
    background-color: var(--color-background-page);
    z-index: 10000;
}

.filter-category-btn {
    display: flex;
}

.choice {
    width: 100%;
}

.choice {
    display: none;
}

.choice-title {
    line-height: 140%;
    font-size: 16px;
}

.reset-button {
    line-height: 125%;
    font-size: var(--font-size-xs);
}

.choice-cont {
    gap: 12px;
}

.choice-cont-item {
    gap: 8.5px;
    height: 27px;

    line-height: 125%;
    font-size: var(--font-size-xs);
}

.delete-choice-cont-item {
    width: 12px;
    height: 12px;
}

/* Категории */
.categories {
    width: 100%;
}

/* Фильтры */
.filters {
    width: fit-content;
}

/* Сам каталог */
.main {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding-top: 126px;
    width: 91.667vw;
    padding-left: 0;

    min-height: 100vh;

    gap: 48px;

    border-left: none;
 max-width: calc(415px + 415px + 2.083vw);
    
}

.title-filter-line { 
    max-width: calc(415px + 415px + 2.083vw);
    width: 100%;
    margin: 0 auto;
}
.category-title {
    font-size: var(--font-size-2xl);
    line-height: 130%;
}

.products-cards {
    gap: 24px 2.083vw;
    max-width: calc(415px + 415px + 2.083vw);

    margin-bottom: calc(32px - 48px);
    padding-bottom: 0;
}

.products-cards-card {
    width: 44.792vw;
    max-width: 415px;
    height: 371px;
}


.cards-card-stickers {
    right: 12.66px;
    top: 12px;
}

.cards-card-image {
    height: 190px;
}

.cards-card-info {
    padding: 12px 16px;

    height: 181px;
}

.cards-card-info-title {
    font-size: 16px;
    line-height: 140%;
}

.cards-card-info-icons {
    gap: 8px;
}

.icons-icon {
    width: 98.67px;
}

.price-year-cont {
    height: 44px;
    flex-direction: row-reverse;
    align-items: center;
    width: 22vw;
    max-width: 200px;
    justify-content: space-between;
}

.price-year-cont.justify-content {
    justify-content: start;
}

.cards-card-year {
    font-size: 16px;
    line-height: 140%;
}

.cards-card-price {
    font-size: 16px;
    line-height: 140%;
}
  
  .main-feature {
    margin-top: -6.5px;
    width: 76px;
  }

      .dop-obor {
        width: 109px;
    }

    .circle-btn-cat {
        display: flex;      
    }
    
    .step-links {
        gap: 16px;
    }

    .pag-circle-links-link {
        width: 28px;
        height: 28px;
    }

    .pag-circle-links-link span {
        font-size: 12.44px;
        line-height: 140%;
    }

    #show-pages-button,
    #show-all-button {
        padding: 5.5px 14px;
        border-radius: 18px;

        font-size: 12.44px;
        line-height: 140%;
    }

    .title-filter-line-up {
        width: fit-content;
    }

    /* Нет товаров */
    .not-cont {
        width: 344px;
    }

    .not-cont-img {
        width: 344px;
        height: 245px;
    }

    .not-cont-img-icon {
        width: 105.56px;
        height: 106.56px;

        top: calc((100% - 105.56px) / 2);
        left: calc((100% - 105.56px) / 2);
    }

    .not-cont-info {
        gap: 16px;
    }

    .not-cont-info-blk {
        gap: 24px;
    }

    .not-cont-info-blk-t {
        font-size: var(--font-size-sm);
        line-height: 140%;
    }

}

/* Адаптация на маленькие экраны (< 360)*/
@media screen and (max-width: 700px) {
    .cards-card-stickers-sticker {
        height: 24px;
    }

    .cards-card-stickers-sticker.sticker-2 {
        height: 23px;
    }

/* Выбор-категории-фильтр */
    .categories-filters {
        width: 100%;
    }

    /* Сам каталог */
    .main {
        padding-bottom: 24px;
        padding-top: 96px;
        width: 93.333vw;
        max-width: calc(415px);

        gap: 24px;
    }

    .title-filter-line { 
        max-width: calc(415px);
    }

    .products-cards {
        gap: 24px;

        max-width: calc(415px);
    }

    .products-cards-card {
        width: 93.333vw;
        height: 371px;
    }

    .icons-icon {
        width: 96px;
    }

    .main-feature {
        margin-top: -6.5px;
        width: 76px;
    }

    
      .dop-obor {
        width: 110px;
    } 

    .pagination {
        display: none !important;
    }

    .title-filter-line-dop {
        top: 80px;
        width: 93.333vw;
        max-width: calc(415px);
    }

    .price-year-cont {
        width: 46.111vw;
        max-width: 200px;
    }

    /* Для микроразметки */
    .micro-cont {
        margin-top: 24px;
    }

    .micro-h2 {
        font-size: var(--font-size-xl);
        line-height: 120%;
    }

    /* Нет товаров */
    .not-block {
        padding-top: 24px;
    }

    .not-cont {
        max-width: 272px;
        width: 93.334%;
    }

    .not-cont-img {
        max-width: 224.6px;
        width: 62.5vw;
        height: 120px;
    }

    .not-cont-img-icon {
        width: 72px;
        height: 72px;

        top: calc((100% - 72px) / 2);
        left: calc((100% - 72px) / 2);
    }

    .to-catalog {
        width: 177px;
        height: 46px;
        padding: 8px 8px 8px 16px;
        font-size: var(--font-size-sm);
        line-height: 140%;
    }
}

.disabled {
    pointer-events: none;
    opacity: 60%;
}


/* Варианты */
 /* .cards-card-image.zap {
    position: relative;
}

.cards-card-image.zap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-url);
    background-color: var(--color-background-page);
    background-size: contain;
    filter: blur(4px);
    z-index: 1;
    border: 1px solid var(--color-background-stroke);
    border-bottom: 0;
}

.cards-card-image.zap img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
} */

