* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

main {
    background-color: #f7f7f7;
}

.selection {
    width: 100%;
    max-width: 1472px;
    padding: 0 16px;
    margin: 0px auto;
}

#priceBlock {
    padding-top: 194px;
}

@media (max-width: 975px) {
    #priceBlock {
        padding-top: 160px;
    }
}

#priceBlock h1 {
    font-size: 46px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 4%;
    text-transform: uppercase;
    max-width: 789px;
    color: #03392F;
}



#priceBlock .titlePrice {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 40px;
}

#priceBlock .titlePrice p {
    font-size: 18px;
    font-weight: 400;
    color: #03392F;
    max-width: 774px;
}

@media (max-width: 975px) {
    #priceBlock h1 {
        font-size: 28px;
    }

    #priceBlock .titlePrice p {
        font-size: 14px;
    }
}

#priceBlock .navContrainerContent {
    display: none;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
    cursor: pointer;

}

.navContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.navBtnMobClose {
    width: 35px;
    display: none;
    position: absolute;
    top: 75px;
    right: 25px;
}

@media (max-width: 975px) {
    #priceBlock .navContrainerContent {
        display: flex;
    }

    .navContainer {
        position: fixed;
        top: 0;
        z-index: 20;
        width: 100%;
        padding: 100px 16px;
        left: -130%;
        opacity: 0;
        visibility: hidden;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        background-color: rgb(0 0 0 / 10%);
        backdrop-filter: blur(30px);
        height: 100vh;
        transition: .3s all ease-in-out;
    }

    .navBtnMobClose {
        display: block;
    }

    .navContainer.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
}

.navContainer .blockPoint {
    position: relative;
    width: 100%;
    max-width: calc(33.333% - 14px);
    min-width: 220px;
    flex: 1 1 220px;
    cursor: pointer;
}

@media (max-width: 975px) {
    .navContainer .blockPoint {
        max-width: 50%;
    }
}

.navContainer .blockPoint .title {
    font-size: 18px;
    font-weight: 400;
    color: #03392F;
    padding: 10px 36px 10px 12px;
    border-bottom: 1px solid #1B986A;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    min-height: 45px;
    height: auto;
    width: 100%;
    overflow: visible;
    white-space: normal;
    user-select: none;
    position: relative;
    box-sizing: border-box;
}

.navContainer .blockPoint .title .title-text {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.navContainer .blockPoint .title.has-selection .title-text {
    color: #1B986A;
    font-weight: 600;
}

.navContainer .blockPoint .title:after {
    content: ' ';
    background: url(../img/CaretDown.png) no-repeat center;
    transform: rotate(180deg);
    display: block;
    width: 20px;
    height: 20px;
    transition: .3s all ease-in-out;
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -10px;
    flex-shrink: 0;
}

.navContainer .blockPoint .title.active:after {
    transform: rotate(360deg);
}

.navContainer .blockPoint .dropBlock {
    background-color: #FAFAFA;
    width: 100%;
    border: 1px solid rgba(22, 87, 65, 0.1);
    border-top: unset;
    position: absolute;
    padding: 0px;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
    max-height: 0px;
    transition: all .3s ease-in-out;
    pointer-events: none;
}

@media (max-width: 975px) {

    .navContainer .blockPoint .dropBlock {
        z-index: 1;
    }
}

.navContainer .blockPoint .dropBlock.active {
    padding: 12px;
    padding-top: 24px;
    max-height: 1000px;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
}

.navContainer .blockPoint .dropBlock .container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.navContainer .blockPoint .dropBlock .container .checkbox-item {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 12px;
    cursor: pointer;
    align-items: center;
}

/* Скрытый, но кликабельный чекбокс поверх кастомной галочки */
.navContainer .blockPoint .dropBlock .container .checkbox-item .checkbox-input {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    margin: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

/* Базовые стили для текста */
.navContainer .blockPoint .dropBlock .container .checkbox-item .checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-family: sans-serif;
    color: #1b5842;
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

/* Пустой квадрат (выключенное состояние) */
.navContainer .blockPoint .dropBlock .container .checkbox-item .checkbox-label::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 1.5px solid rgba(27, 152, 106, 1);
    border-radius: 3px;
    margin-right: 12px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70% 70%;
    transition: border-color 0.2s;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.navContainer .blockPoint .dropBlock .container .checkbox-item .checkbox-input:checked+.checkbox-label::before {
    background-image: url(../img/Vector.png);

    /* Картинка не будет повторяться */
    background-repeat: no-repeat;

    /* Ровно по центру */
    background-position: center center;

    /* Сжимаем саму картинку до 9px по ширине (высота подстроится сама) */
    background-size: 11px auto;
}

.navContainer .blockPoint .dropBlock .container .btnsBlock {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 12px;
}

.navContainer .blockPoint .dropBlock .container .btnsBlock .btn {
    padding: 10px 20px;
    color: rgba(3, 57, 47, 1);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    height: 39px;
    border: 1px solid rgba(27, 152, 106, 1);
    width: 100%;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    background: transparent;
}

.navContainer .blockPoint .dropBlock .container .btnsBlock .btn.apply-btn {
    background-color: rgba(27, 152, 106, 1);
    color: white;
}

.navContainer .blockPoint .dropBlock .container .btnsBlock .btn.reset-btn:hover,
.navContainer .blockPoint .dropBlock .container .btnsBlock .btn.apply-btn:hover {
    opacity: 0.92;
}

.price-filters-reset-all-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.price-filters-reset-all {
    border: 1px solid rgba(27, 152, 106, 1);
    background: transparent;
    color: #03392F;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s ease;
}

.price-filters-reset-all:hover {
    background: rgba(27, 152, 106, 0.08);
}

@media (max-width: 975px) {
    .price-filters-reset-all-wrap {
        justify-content: stretch;
        margin-top: 12px;
    }

    .price-filters-reset-all {
        width: 100%;
    }
}

#priceBlock .contentContainer {
    padding-top: 40px;
	padding-bottom: 40px; 
}

#priceBlock .contentContainer .blocks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#priceBlock .contentContainer .blocks .block {
    width: 100%;
    max-width: calc(33.1% - 10px);
    min-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(22, 87, 65, 0.1);
}

#priceBlock .contentContainer .blocks .block img {
    width: 100%;
}

#priceBlock .contentContainer .blocks .block h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    color: rgba(3, 57, 47, 1);
}

#priceBlock .contentContainer .blocks .block p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(27, 152, 106, 1);
}

@media (max-width: 975px) {
    #priceBlock .contentContainer .blocks .block h3 {
        font-size: 20px;
    }

    #priceBlock .contentContainer .blocks .block p {
        font-size: 14px;
    }
}

#priceBlock .contentContainer .blocks .block .linksBlock {
    display: flex;
    width: 100%;
    margin-top: auto;
}

#priceBlock .contentContainer .blocks .block .linksBlock .textLink {
    width: 100%;
    color: white;
    background-color: rgba(22, 87, 65, 1);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 975px) {
    #priceBlock .contentContainer .blocks .block .linksBlock .textLink {
        font-size: 14px;
    }
}

#priceBlock .contentContainer .allBtnBlock {
    padding-top: 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#priceBlock .contentContainer .allBtnBlock span {
    background-color: rgba(208, 216, 104, 1);
    padding: 10px 20px;
    width: 100%;
    max-width: 177px;
    color: rgba(3, 57, 47, 1);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

.price-empty {
    width: 100%;
    padding: 24px 0;
    font-size: 18px;
    color: rgba(3, 57, 47, 0.7);
    text-align: center;
}