.catalogs__params{
    display: flex;
    width: 100%;
    margin: 50px auto;
    gap: 2rem;
    justify-content: center;
}

.single__title.catalog__title {
    margin-bottom: 0;
}

@media screen and (max-width:64rem){
   .catalogs__params{
       flex-direction: column;
   } 
}
.catalogs__params-products{
    display: grid;
    width: 100%;
    gap:1.25rem;
    align-items: center;
    
    margin-top: 1rem;
    /* grid-template-columns: repeat(auto-fit, minmax(20rem, 20rem)); */
}
@media screen and (min-width:1451px){
    .catalogs__params-products{
        grid-template-columns: repeat(3, minmax(20rem, 1fr));   
    }
}
@media screen and (max-width:1450px) and (min-width:701px){
    .catalogs__params-products{
        grid-template-columns: repeat(2, minmax(20rem, 1fr));   
    }
}
@media screen and (max-width:700px) and (min-width: 371px){
    .catalogs__params-products{
        grid-template-columns: repeat(1, minmax(20rem, 1fr));   
    }
}
@media screen and (max-width: 370px){
    .catalogs__params-products{
        grid-template-columns: repeat(1, 1fr);   
    }
}

/* pagination */
.ajax-more-active {
    color:#fff;
    padding: 1rem 1.2rem;
    border: 1px solid #E6E6E6;
    background-color: var(--primary-color);
}

.ajax-more:hover {
    background-color: var(--primary-color-hover);
    color: #fff;
}
.ajax-more {
    color: var(--primary-color);
    padding: 1rem 1.2rem;
    border: 1px solid #E6E6E6;
    transition: color .3s ease, background-color .3s ease
}



.ajax-filter-count-more {
    width: fit-content;
    
    padding: 0 1rem;
    height: 100%;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: border-color .3s ease, color .3s ease, background-color .3s ease;
    cursor: pointer;
}

@media screen and (min-width:701px){
    .ajax-filter-count-more {
       grid-column: 1 / 2; 
    }
}
@media screen and (max-width:700px){
    .ajax-filter-count-more {
        grid-column: unset; 
        justify-content: center;
        padding: 15px 20px;
        margin-left: auto;
        margin-right: auto;
    }
}
.ajax-filter-count-more:hover{
    color: #fff;
    border-color: var(--primary-color-hover);
    background-color: var(--primary-color-hover);
}

.ajax-filter-count {
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}



@media screen and (min-width:1451px){
   .ajax-filter-count { 
       grid-column: 2 / 4;
   }
   
   .catalogs__params-products:not(:has(.ajax-filter-count-more)) .ajax-filter-count{
        grid-column: 1 / 4;
    }
}
@media screen and (max-width:1450px) and (min-width:701px) {
   .ajax-filter-count { 
       grid-column: 2 / 3;
   }
   .catalogs__params-products:not(:has(.ajax-filter-count-more)) .ajax-filter-count{
        grid-column: 1 / 3;
    }
   
}

@media screen and (max-width:700px){
    .ajax-filter-count {
        grid-column: unset;
        justify-content: center;
    }
}

.catalogs__params-products-item{
}

.catalogs__params-products-item img{
    height: 230px;
    object-fit: cover;
    width: 100%;
    border-radius: 16px;
}

@media screen and (min-width:1451px){
   .catalogs__params-products-item img{
        height: 230px;   
   } 
}
@media screen and (max-width:1450px) and (min-width:1201px){
   .catalogs__params-products-item img{
        height: 350px;   
   } 
}
@media screen and (max-width:1200px) and (min-width:701px){
    .catalogs__params-products-item img{
        height: 270px;   
   } 
}

.catalogs__params-products-item-btns {
    display: flex;
    gap:10px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media screen and (max-width: 700px){
    .catalogs__params-products-item-btns{
        flex-direction: column;
        gap:1rem;
    }
}

.catalogs__params-products-item-btns .btn.full.white{
    background-color: #fff;
    color:var(--primary-color);
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.product-card-wrapper-info-catalog {
    /* height: 100%; */
}
.product-card-wrapper-info-catalog-title{
    display: inline-flex;
    width: 100%;
    align-items: flex-start;
    height: 4rem;
    margin-top: 0.75rem;
}

.product-card-wrapper-info-catalog-title span {
    font-size: 1.25rem;
    color: #01253F;
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: color .3s ease;
}
.product-card-wrapper-info-catalog-title:hover span {
    color: #01253F;
}

.catalogs__params-products-item-btns .btn.full.white:hover {
    background-color: var(--primary-color-hover);
    color: var(--primary-color);
}

@media screen and (min-width:64rem){
     .catalogs__params-products-item.product-card-wrapper{
      transition: margin-top .3s ease, box-shadow .3s ease .2s;  
    }
    
    .catalogs__params-products-item.product-card-wrapper:hover{
        margin-top: -0.75rem;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    }
    
    .catalogs__params-products-item.product-card-wrapper img {
        transition: scale .3s ease;
    }
    .catalogs__params-products-item.product-card-wrapper:hover img {
        scale:1.05;
    }
    
    .product-card-wrapper-info-catalog-title:hover  span {
        color: var(--primary-color-hover);
    }
}

.single__product-info-parametrs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom:20px;
}
.single__product-info-parametrs li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.single__product-info-parametrs li .parametrs-dots{
    flex-grow: 1;
    align-self: flex-end;
    height: 2px;
    margin-bottom: 4px;
    margin-left: 5px;
    margin-right: 7px;
    background: repeating-linear-gradient(
        to right,
        black,        
        black 2px,        
        transparent 1px,        
        transparent 5px
    );
}
.single__product-info-parametrs li .parametrs-text ,
.single__product-info-parametrs li .parametrs-value {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}
.single__product-info-parametrs li .paramentrs-value {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

/* not results */
.null__results {
    grid-column: 1 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

@media screen and (max-width: 600px){
   .null__results {
       grid-column: unset;
   } 
}

.null__results p {
    font-size: 1.5rem;
}

button.ajax-reset {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    outline: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

button.ajax-reset:hover {
    background-color: var(--primary-color-hover);
    color: var(--primary-color);
}


/* products switch - переключатель для товаров*/
.catalogs__params-products-item.product-card-wrapper.list-active{
    grid-column:1/4;
    flex-direction:row;
    padding-bottom: 0;
    justify-content: space-between;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.catalogs__params-products-item.product-card-wrapper.list-active a.product-card-wrapper-info-catalog-title {
    /* grid-column: 1 / 3; */
    text-align: center;
    height: auto;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}
.catalogs__params-products-item.product-card-wrapper.list-active .product-card-wrapper-info.product-card-wrapper-info-catalog{
    display: grid;
    /* grid-template-columns: 1fr 1fr; */ 
    grid-template-columns: 1fr; 
    gap:1rem;
}
.catalogs__params-products-item.product-card-wrapper.list-active .product-card-wrapper-info.product-card-wrapper-info-catalog .prices {
    justify-content: space-between;
    align-items: flex-start;
    /* flex-direction: column; */
    margin: 0;
}
.catalogs__params-products-item.product-card-wrapper.list-active .product-card-wrapper-info.product-card-wrapper-info-catalog .prices .prices-item-variants {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.catalogs__params-products-item.product-card-wrapper.list-active .product-card-wrapper-info.product-card-wrapper-info-catalog .catalogs__params-products-item-btns {
    display: flex;
    gap: 6rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
}

.catalogs__params-products-item.product-card-wrapper.list-active .product-card-wrapper-info .prices .prices-item-variants .prices-item-variants-costs-block {
    margin-top: 0;
}
.catalogs__params-products-item.product-card-wrapper.list-active:hover {
    margin-top: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.catalogs__params-products-item.product-card-wrapper.list-active img{
    max-width: 350px;
    height: 100%;
}
.catalogs__params-products-item.product-card-wrapper.list-active:hover img{
    scale:1;
}

@media screen and (max-width: 700px){
    .product-card-wrapper{
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}


@media screen and (min-width: 64rem) {}
