.price__container {

    padding-block: 40px;
}
.container {
    position: relative;
    z-index: 2;
}

.price {
    /*background:*/
    /*        url("../photographer/photosession-plenka.svg") repeat-x 0 250px,*/
    /*        linear-gradient(*/
    /*                to bottom,*/
    /*                transparent calc(40px + 250px),*/
    /*                var(--primary-color-2) calc(40px + 250px)*/
    /*        );*/
    background: linear-gradient(
        to bottom,
        var(--light-color) 0,
        var(--light-color) 290px,
        var(--primary-color-2) 290px
    );
    min-height: 100vh;
}
.price::before {
    content: "";
    position: absolute;
    top: 369px; /* Начинается после 150px от верха */
    left: 0;
    width: 100%;
    height: 40px;

    -webkit-mask-image: url("../photographer/photosession-plenka.svg");
    -webkit-mask-repeat: repeat-x;
    -webkit-mask-size: auto 40px;

    mask-image: url("../photographer/photosession-plenka.svg");
    mask-repeat: repeat-x;
    mask-size: auto 40px;

    background-color: var(--primary-color-2);

    pointer-events: none;
    z-index: 1;
}
.back-uzor {
    background-color: var(--primary-color-2);
}
.price__title {
    font-size: 37px;
    font-family: 'Faberge';
    font-weight: normal;
    text-align: center;

    padding-top: 30px;
}
.btn {
    display: block;
    width: max-content;
    margin-top: 35px;
    margin-inline: auto;

    background-color: var(--light-color);
    padding: 16px 30px;
    border-radius: 36px;
    border-style: solid;
    border-color: var(--dark-color-1);
    border-width: 1px;

    font-size: 30px;
}
.btn:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.2s;
}
.btn {
    transition: 0.5s ease-in-out;
}
.btn-arrow {
    margin-left: 16px;
}
.price__list {
    display: flex;
    gap: 42px;
    flex-wrap: wrap;

    margin-top: 70px;
    padding-bottom: 100px;

}
.price__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 22px;
    background-image: radial-gradient(circle at 50% 40%, var(--price-item-2) 10%, var(--price-item-main) 80%);
    width: 324px;

    -webkit-box-shadow: 0px 0px 10px 0px rgba var(--price-shadow);
    -moz-box-shadow: 0px 0px 10px 0px var(--price-shadow);
    box-shadow: 0px 0px 10px 0px var(--price-shadow);
}
.price__item-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;
}
.price__item:hover {
    cursor: pointer;
    transform: scale(1.01);
    transition: 0.2s;
}
.price__item {
    transition: 0.5s ease-in-out;
}
.price__title-img-p {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.price__price-btn {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.price__item-img {
    order: 1;
    width: 281px;
    height: 209px;
    object-fit: cover;

    background-color: var(--price-shadow);
}
.price__item-title {
    order: 2;

    font-family: 'Faberge';
    font-weight: normal;
    font-size: 25px;
    text-align: center;

    margin-top: 16px;
}
.price__item-desc {
    order: 3;

    font-size: 18px;
    margin-top: 16px;
}
.price__item-price {
    order: 1;
    display: block;

    font-family: 'Faberge';
    font-weight: normal;
    font-size: 30px;
    text-align: center;

    margin-top: 26px;
    color: var(--dark-color-1);
}
.price__button {
    order: 2;
    margin-top: 26px;

    font-size: 25px;
    padding: 3px 25px 6px 25px;
    color: var(--dark-color-1);
}
.price__btn-arrow path {
    fill: var(--dark-color-1)
}
.price__item-more-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 120px;
}
.price__more-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.price__item-more-text {
    font-size: 40px;
}
.price__item-more-arrow {
    width: 126px;
    align-self: center;
}
.footer-wrapper {
    background-color: var(--primary-color-2);
}

@media (max-width: 1196px) {
    .container {
        width: auto;
        padding-inline: 8%;
        padding-block: 0;

        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 20px;
        width: 229px;
        padding: 6px 13px 8px 13px;
    }
    .btn:hover {
        transform: scale(0.95);
    }
    .btn-arrow {
        width: 38px;
    }
    .price {
    background: linear-gradient(
        to bottom,
        var(--light-color) 0,
        var(--light-color) 290px,
        var(--primary-color-2) 290px
    );
    min-height: 100vh;
}
    .price::before {
        display: flex;
        content: "";
        position: relative;
        top: 260px; /* Начинается после 150px от верха */
        left: 0;
        width: 100%;
        height: 40px;

        -webkit-mask-image: url("../photographer/photosession-plenka-phone.svg");
        -webkit-mask-repeat: repeat-x;
        -webkit-mask-size: auto 30px;

        mask-image: url("../photographer/photosession-plenka-phone.svg");
        mask-repeat: repeat-x;
        mask-size: auto 30px;

        background-color: var(--primary-color-2);

        pointer-events: none;
        z-index: 1;
}
    .price__title {
        font-size: 27px;
        padding-top: 28px;
    }
    .price__list::-webkit-scrollbar {
        display: none;
    }
    .price__list {
        gap: 20px;
        margin-top: 35px;
        justify-content: flex-start;
    }
    .price__item {
        width: 100%;
        padding: 14px;
    }
    .price__item:hover {
        transform: scale(0.98);
    }
    .price__item-img {
        width: 100%;
        aspect-ratio: 16/9;
        height: auto;
    }
    .price__item-title {
        font-size: 20px;
        margin-top: 11px;
    }
    .price__item-desc {
        font-size: 16px;
        margin-top: 11px;
    }
    .price__item-price {
        font-size: 25px;
    }
    .price__button {
        font-size: 20px;
        padding: 5px 25px 9px 25px;
        width: 206px;
    }
    .price__btn-arrow {
        width: 30px;
    }
    .price__item-more-text {
        font-size: 27px;
    }
    .price__item-more-arrow {
        width: 50px;
    }
}
@media (min-width: 609px) and (max-width: 1196px) {
    .price__item {
        width: 48%;
        padding: 14px;
    }
}