.cost-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
    padding: 30px 100px 80px 100px;
    box-sizing: border-box;
    display: block;
    align-items: start;
}

@media (max-width: 600px) {
    .cost-container {
        padding: 0px 5% 80px 5%;
    }
}

/* Головний заголовок */
.cost-container .main-title {
    font-weight: 500;
    font-size: 34px;
    line-height: 132%;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: #3F342A;
    margin: 0;
    align-self: start;
    text-align: left;
}

@media (max-width: 600px) {
    .cost-container .main-title {
        font-size: 24px;
        text-align: center;
    }
}

.cost-container .switch-block-container {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0 0 0;
    flex-wrap: nowrap;
}

@media (max-width: 600px) {
    .cost-container .switch-block-container {
        flex-wrap: wrap;
    }
}

.cost-container .switch-block-container .text {
    position: relative;
    width: 100%;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 18px;
    line-height: 148%;
    letter-spacing: 0%;
    color: #5D554D;
}

@media (max-width: 600px) {
    .cost-container .switch-block-container .text {
        text-align: center;
        font-size: 14px;
    }
}

/* Блок з перемикачем */
.cost-container .switch-block-container .switch-block {
    font-family: Montserrat;
    position: relative;
    width: max-content;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0%;
    background: #DFC388;
    color: #FFF;
    white-space: nowrap;
    padding: 4px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .cost-container .switch-block-container .switch-block {
        position: relative;
        margin-left: auto;
    }
}

.cost-container .switch-block-container .switch-block .switch-btn {
    width: 160px;
    height: 32px;
    justify-content: space-between;
    opacity: 1;
    padding-top: 4px;
    padding-right: 18px;
    padding-bottom: 4px;
    padding-left: 18px;
    border-radius: 16px;
    text-wrap: nowrap;
    text-align: center;
}

@media (max-width: 600px) {
    .cost-container .switch-block-container .switch-block .switch-btn {
        font-size: 14px;
    }
}

.cost-container .switch-block-container .switch-block .active {
    background: #FFFFFF;
    color: #000;
}

.cost-container .switch-block-container .filter-icon {
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 20px;
    padding: 8px;
    background-color: #D7B46A;
    cursor: pointer;
}

@media (max-width: 600px) {
    .cost-container .switch-block-container .filter-icon {
        margin-right: auto;
    }
}

.cost-container .switch-block-container .filter-icon img {}

.cost-container .switch-block-container .filter-icon .filter-count {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 15px;
    border-radius: 8px;
    padding-right: 4px;
    padding-left: 4px;
    background: #ED7A54;
    font-family: Inter;
    font-weight: 500;
    font-size: 10px;
    line-height: 148%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFF;
}

/* Блок для контейнера для карток послуг і елементів навігації */
.cost-container .services-container {}

.cost-container .services-container .scroll-line {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(223, 195, 136, 0.3);
    margin: 40px 0 30px 0;
}

.cost-container .services-container .scroll-line .scroll-active-line {
    position: absolute;
    top: -1px;
    left: 0;
    width: 400px;
    height: 6px;
    border-radius: 3px;
    background: rgba(223, 195, 136, 0.3);
}

.cost-container .services-container .nav-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

@media (max-width: 600px) {
    .cost-container .services-container .nav-btn {
        display: none;
    }
}

.cost-container .services-container .left-nav {
    left: 40px;
}

.cost-container .services-container .right-nav {
    right: 40px;
}

/* Контейнер для карток послуг */
.cost-container .services-grid {
    display: flex;
    gap: 20px;
    align-items: start;
    margin: 40px 0 20px 0;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
}

/* Загальні стилі для карток послуг */
.cost-container .services-grid .service-card {
    position: relative;
    width: 400px;
    min-width: 400px;
    height: auto;
    gap: 20px;
    opacity: 1;
    border-radius: 20px;
    padding: 20px 20px 20px 20px;
    background-color: #FFF;
}

@media (max-width: 600px) {}

.cost-container .services-grid .service-card .left-corner {
    position: absolute;
    top: 0;
    left: 0;
}

.cost-container .services-grid .service-card .right-corner {
    position: absolute;
    top: 0;
    right: 0;
}

.cost-container .services-grid .service-card .service-card-icon {
    display: block;
    width: 96px;
    height: 96px;
    margin: 0px auto 0px auto;
}

.cost-container .services-grid .service-card .service-card-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 144%;
    letter-spacing: 1%;
    text-align: center;
    text-transform: uppercase;
    color: #D7B46A;
    margin: 10px 0 5px 0;
}

@media (max-width: 600px) {
    .cost-container .services-grid .service-card .service-card-title {
        font-size: 21px;
    }
}

.cost-container .services-grid .service-card .service-card-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0%;
    text-align: center;
    color: #3F342A;
}

@media (max-width: 600px) {
    .cost-container .services-grid .service-card .service-card-subtitle {
        font-size: 14px;
    }
}

.cost-container .services-grid .service-card .center-card-block {
    position: absolute;
    left: 0px;
    top: 195px;
    width: 100%;
    height: 40px;
}

.cost-container .services-grid .service-card .circle {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #F8F4ED;
}

.cost-container .services-grid .service-card .left-circle {
    position: absolute;
    left: -20px;
    top: 0;
}

.cost-container .services-grid .service-card .center-line {}

.cost-container .services-grid .service-card .right-circle {
    position: absolute;
    right: -20px;
    top: 0;
}

.cost-container .services-grid .service-card .price-block {
    display: block;
    margin-top: 55px;
}

.cost-container .services-grid .service-card .price-block .header-row {
    font-family: Montserrat;
    display: flex;
    font-weight: 500;
    font-size: 14px;
    line-height: 148%;
    letter-spacing: 0%;
    color: rgba(63, 52, 42, 0.5);
    margin: 10px 0 5px 0;
}

@media (max-width: 600px) {
    .cost-container .services-grid .service-card .price-block .header-row {
        font-size: 13px;
    }
}

.cost-container .services-grid .service-card .price-block .header-row .time {
    flex: 2;
}

.cost-container .services-grid .service-card .price-block .header-row .weekdays {
    flex: 1;
}

.cost-container .services-grid .service-card .price-block .header-row .weekend {
    flex: 1;
}

.cost-container .services-grid .service-card .price-block .body-row {
    font-family: Montserrat;
    display: flex;
    font-weight: 500;
    font-size: 18px;
    line-height: 148%;
    letter-spacing: 0%;
    color: rgba(63, 52, 42, 1);
    margin: 10px 0 5px 0;
}

@media (max-width: 600px) {
    .cost-container .services-grid .service-card .price-block .body-row {
        font-size: 16px;
    }
}

.cost-container .services-grid .service-card .price-block .body-row .time {
    flex: 2;
}

.cost-container .services-grid .service-card .price-block .body-row .weekdays {
    flex: 1;
    font-weight: 700;
}

.cost-container .services-grid .service-card .price-block .body-row .weekend {
    flex: 1;
    font-weight: 700;
}

.cost-container .services-grid .service-card .service-button-block {
    font-family: Montserrat;
    display: flex;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0%;
    margin: 20px 0 0 0;
}

@media (max-width: 600px) {
    .cost-container .services-grid .service-card .service-button-block {
        font-size: 14px;
    }
}

.cost-container .services-grid .service-card .service-button-block .left-button {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 44px;
    padding-top: 14px;
    padding-right: 16px;
    padding-bottom: 14px;
    padding-left: 16px;
    border-radius: 22px;
    color: #FFF;
    cursor: pointer;
}

.cost-container .services-grid .service-card .service-button-block .right-button {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 44px;
    padding-top: 14px;
    padding-right: 16px;
    padding-bottom: 14px;
    padding-left: 16px;
    border-radius: 22px;
    background: #F8F4ED;
    color: rgba(63, 52, 42, 1);
    cursor: pointer;
}

.cost-container .services-grid .service-card .service-button-block .left-button.background-color1 {
    background: #D7B46A;
}

.cost-container .services-grid .service-card .service-button-block .left-button.background-color2 {
    background: #6C4D38;
}

.cost-container .services-grid .service-card .service-button-block .left-button.background-color3 {
    background: #3480B4;
}

.cost-container .services-grid .service-card .service-card-title.color1 {
    color: #D7B46A;
}

.cost-container .services-grid .service-card .service-card-title.color2 {
    color: #6C4D38;
}

.cost-container .services-grid .service-card .service-card-title.color3 {
    color: #3480B4;
}

/**/
.cost-container .services-grid {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cost-container .services-grid::-webkit-scrollbar {
    display: none;
}

.cost-container .no-items-message {
    width: 100%;
    text-align: center;
    padding: 40px;
    color: #5D554D;
    font-size: 18px;
}

@media (max-width: 600px) {
    .cost-container .services-grid {
        gap: 10px;
    }

    .cost-container .services-grid .service-card {
        min-width: 320px;
    }

    .cost-container .services-container .scroll-line .scroll-active-line {
        width: 100px;
        /* Менша ширина для мобільних */
    }
}

.cost-container .note-block {
    display: flex;
    margin-top: 30px;
    width: 100%;
    gap: 8px;
    background-color: #F2EAD8;
    border-radius: 20px;
    padding: 20px;
}

.cost-container .note-block .note-icon {
    flex-shrink: 0;
}

.cost-container .note-block .note-icon img {
    width: 20px;
    height: 20px;
}

.cost-container .note-block .note-text {
font-family: Montserrat;
font-weight: 500;
font-size: 14px;
line-height: 148%;
letter-spacing: 0%;
color: #5D554D;
}