header .wrapper,
.scrollPage .wrapper {
    max-width: 1800px;
    width: calc(100% - 120px);
}
header {
    background: var(--White);
    padding-bottom: 30px;
    border-bottom: 1px solid var(--Dark-dark100, rgba(45, 47, 46, 0.16));
    .bottom-menu .body {
        margin-top: 30px !important;
    }
}
main * {
    color: var(--text-color);
    font-family: Lato;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
main:has(.empty) {
    min-height: 100dvh;
}
footer {
    padding: 50px 0;
    z-index: 0;
}
.spoiler {
    display: flex;
    flex-direction: column;
    &.open .head span::before {
        background-color: var(--text-color);
    }
    .head {
        display: flex;
        gap: 30px;
        justify-content: space-between;
        padding: 4px 6px 4px 0;
        color: rgba(45, 47, 46, 0.73);
        font-size: 14px;
        text-transform: lowercase;
        cursor: pointer;
        transition: color 0.2s linear;
        span {
            position: relative;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 1px solid var(--text-color);
            flex-wrap: nowrap;
            &::before {
                content: '';
                position: absolute;
                left: 50%;
                top: 50%;
                width: 7px;
                height: 7px;
                transform: translate(-50%, -50%);
                border-radius: 50%;
                background-color: transparent;
                transition: background-color 0.2s linear;
            }
        }
    }
    .box {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s linear;
        .content {
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: rgba(45, 47, 46, 0.73);
            font-size: 14px;
            font-weight: 300;
            .text > * {
                color: rgba(45, 47, 46, 0.73);
                font-weight: 300;
            }
            :is(div, p) {
                font-size: 14px;
            }
        }
    }
}
.cdek {
    display: none;
    select {
        border-radius: 3px;
        padding: 10px 10px 10px 16px;
        background: #fbfbfb;
        width: 100%;
        color: var(--text-color);
        font-family: Lato;
        font-weight: 400;
        border: 1px solid rgba(45, 47, 46, 0.16);
        option {
            color: var(--text-color);
            font-family: Lato;
            font-weight: 400;
        }
    }
}
.cdek.active {
    display: contents;
}
.errorCdek {
    opacity: 0;
    color: #cd0000;
    transition: .3s linear;
    font-weight: 300;
    font-size: 14px;
}
.errorCdek.show {
    opacity: 1;
}
.inputs {
    display: contents;
}
.label {
    position: relative;
    display: block;
    padding: 17px 10px 6px 10px;
    width: 100%;
    cursor: pointer;
    border: 1px solid rgba(45, 47, 46, 0.16);
    &:has(input.invalid) {
        border-color: #cd0000;
    }
    input {
        padding: 0;
        border: none;
        text-align: left;
        background: none;
        &:focus-visible,
        &:-internal-autofill-selected {
            + span {
                transform: translateY(calc(-50% - 12px));
            }
        }
    }
    &.active {
        border-color: rgb(45, 47, 46);
        span {
            font-size: 12px;
            transform: translateY(calc(-50% - 12px));
            color: rgb(45, 47, 46);
        }
    }
    span {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.2s linear;
        color: rgba(45, 47, 46, 0.73);
        font-size: 14px;
        pointer-events: none;
    }
}
.saveAddress,
.radio {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(45, 47, 46, 0.73);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s linear;
    &:has(input:checked) {
        span {
            border-color: rgb(45, 47, 46);
            &::before {
                opacity: 1;
            }
        }
    }
    input {
        display: none;
    }
    span {
        position: relative;
        width: 16px;
        min-width: 16px;
        aspect-ratio: 1/1;
        border-radius: 50%;
        border: 1px solid rgba(45, 47, 46, 0.73);
        display: flex;
        align-items: center;
        justify-content: center;
        &::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 7px;
            aspect-ratio: 1/1;
            border-radius: 50%;
            opacity: 0;
            background-color: rgb(45, 47, 46);
        }
    }
}
.radio {
    text-transform: none;
}
.controls {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 185px auto 30px;
    gap: 13px;
    button {
        width: 100px;
        padding-bottom: 6px;
        border-bottom: 1px solid var(--text-color);
        background-color: transparent;
        text-align: center;
        font-family: Lato;
        font-size: 12px;
        text-transform: uppercase;
        opacity: 0.4;
        &.active {
            opacity: 1;
        }
    }
}
.dark-btn {
    font-size: 12px;
}
:is(.promo-code, .certificate, .maison-box) {
    border-radius: 4px;
    background: #fbfbfb;
    padding: 20px;
    .spoiler {
        border-radius: 4px;
        border: 1px solid rgba(45, 47, 46, 0.73);
        padding: 12px 20px;
        .head {
            justify-content: start;
            gap: 8px;
        }
        input {
            border-radius: 0;
            text-align: left;
            padding: 4px 6px 4px 0;
            border: none;
            border-bottom: 1px solid rgba(45, 47, 46, 0.73);
            margin-bottom: 10px;
            background-color: #fbfbfb;
            font-size: 14px;
            &::placeholder {
                font-size: 14px;
            }
        }
        :where(.error, .not-error) {
            font-family: Lato;
            font-size: 14px;
            opacity: 0;
            margin-top: 10px;
            &.show {
                opacity: 1;
            }
        }
    }
}
.certificate.active,
.promo-code.active {
    .box {
        max-height: 200px;
    }
    .head span::before {
        background-color: var(--text-color);
    }
}
:-webkit-autofill {
    box-shadow: inset 0 0 0 50px #fbfbfb !important;
}
form {
    :is(.basket, .delivery, .payment) {
        display: none;
        grid-template-columns: minmax(400px, 895px) minmax(350px, 665px);
        column-gap: 8.3%;
        &.active {
            display: grid;
        }
        .left {
            margin-bottom: 30px;
        }
    }
    .basket {
        .left {
            display: flex;
            flex-direction: column;
            .items {
                display: flex;
                flex-direction: column;
                gap: 20px;
                padding: 20px;
                border-radius: 4px;
                background: #fbfbfb;
                margin-bottom: 50px;
                .product {
                    background-color: var(--White);
                    display: grid;
                    align-items: center;
                    grid-template-columns: 196px 1fr;
                    gap: 17px;
                    img {
                        border-radius: 3px;
                        object-fit: cover;
                        aspect-ratio: 196/206;
                    }
                    .content {
                        display: flex;
                        flex-direction: column;
                        gap: 6px;
                        padding: 0 10px 10px 0;
                        .name {
                            text-transform: capitalize;
                        }
                        .text {
                            color: rgba(45, 47, 46, 0.73);
                            font-weight: 300;
                            text-transform: lowercase;
                            font-size: 16px;
                            display: -webkit-box;
                            overflow: hidden;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 1;
                            line-clamp: 1;
                            > * {
                                color: rgba(45, 47, 46, 0.73);
                                font-weight: 300;
                                text-transform: lowercase;
                                font-size: 16px;
                            }
                        }
                        .price {
                            margin-top: 20px;
                            margin-bottom: 10px;
                            &:has(b) {
                                color: #cd0000;
                                span {
                                    font-size: 16px;
                                    font-weight: 500;
                                    text-decoration: line-through;
                                }
                            }
                            span {
                                color: var(--text-color);
                                font-weight: 400;
                            }
                            b {
                                color: #cd0000;
                                font-size: 16px;
                                font-weight: 500;
                                text-transform: lowercase;
                                margin-left: 10px;
                            }
                            .warning {
                                display: block;
                                color: #cd0000;
                                text-decoration: none;
                                text-transform: none;
                                font-size: 14px;
                                font-weight: 300;
                                margin-top: 4px;
                            }
                        }
                        fieldset {
                            display: grid;
                            grid-template-columns: repeat(3, 1fr);
                            width: 60px;
                            border: none;
                            > * {
                                width: 15px;
                                height: 15px;
                            }
                            input {
                                padding: 0;
                                font-size: 12px;
                                border-color: transparent;
                                color: rgba(45, 47, 46, 0.73);
                            }
                            button {
                                position: relative;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                background-color: transparent;
                                &::before,
                                &::after {
                                    content: '';
                                    position: absolute;
                                    left: 50%;
                                    top: 50%;
                                    transform: translate(-50%, -50%);
                                    width: 10px;
                                    height: 1px;
                                    transition: background-color 0.2s linear;
                                    background-color: #666766;
                                }
                                &:last-child::after {
                                    transform: translate(-50%, -50%) rotate(90deg);
                                }
                            }
                        }
                        .quantity {
                            display: none;
                        }
                        .remove {
                            margin-top: 35px;
                            align-self: end;
                            background-color: transparent;
                            color: rgba(45, 47, 46, 0.73);
                            font-size: 12px;
                            text-decoration-line: underline;
                            text-underline-offset: 4px;
                            transition: color 0.2s linear;
                        }
                    }
                }
            }
            .certificate {
                margin-top: 10px;
            }
        }
        &.active::after {
            display: none;
        }
        .maison-box {
            &:has(input:checked) .box > input {
                pointer-events: all;
                opacity: 1;
            }
            .radio {
                margin: 20px 0 4px;
            }
            .box > input {
                margin-bottom: 4px;
                pointer-events: none;
                color: rgba(45, 47, 46);
                opacity: 0.36;
                transition: opacity 0.2s linear;
            }
            p {
                color: rgba(45, 47, 46, 0.36);
                font-size: 12px;
            }
        }
    }
    .delivery .left {
        .wrapp {
            padding: 20px;
            border-radius: 4px;
            background: #fbfbfb;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        :is(.delivery-type, .title, .addresses, .address, .country, .phone, .saveAddress, .maison-box) {
            grid-column: span 2;
        }
        .delivery-type {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        .title {
            color: #2D2F2E;
            font-size: 16px;
            text-transform: lowercase;
        }
        .pickup {
            display: none;
            grid-area: 2/1/3/3;
            &.active {
                display: block;
            }
        }
        .pickup.active ~ .pickup-hide {
            display: none;
        }
        .cdek.active ~ .cdek-hide {
            display: none;
        }
        .addresses {
            text-transform: lowercase;
            display: inline-flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            > p {
                color: #2D2F2EBA;
                line-height: 19px;
            }
            .spoiler {
                padding: 0 10px;
                width: 250px;
                border-radius: 4px;
                border: 1px solid rgba(45, 47, 46, 0.16);
                background: #FFF;
                position: relative;
                &.open {
                    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
                    & .head {
                        border-color: rgba(45, 47, 46, 0.16);
                        span {
                            transform: rotate(180deg);
                        }
                    }
                }
                .head {
                    background: #FFF;
                    align-items: center;
                    border-bottom: 1px solid transparent;
                    b {
                        text-transform: none;
                    }
                    span {
                        width: 16px;
                        border-radius: 0;
                        border-color: transparent;
                        transition: transform 0.3s linear;
                        &::before {
                            content: '\e90f';
                            font-family: icon;
                            line-height: 1;
                            width: auto;
                            height: auto;
                            font-size: 16px;
                            background-color: transparent;
                            transform: translate(-50%, -50%) rotate(-90deg);
                        }
                    }
                }
                .box {
                    top: 100%;
                    left: 0;
                    right: 0;
                    z-index: 5;
                    position: absolute;
                    padding-left: 10px;
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    border: 1px solid var(--Dark-dark100, rgba(45, 47, 46, 0.16));
                    background: #FFF;
                    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.10);
                    > *:first-child {
                        margin-top: 10px;
                    }
                    > *:last-child {
                        margin-bottom: 7px;
                    }
                }
            }
        }
        .saveAddress {
            display: flex;
            align-items: center;
            justify-content: start;
            gap: 8px;
            span {
                border-radius: 4px;
                width: 16px;
                &::before {
                    content: '\e910';
                    font-family: icon;
                    font-size: 9px;
                    background: transparent;
                    width: initial;
                    height: initial;
                    border-radius: 0;
                }
            }
        }
    }
    .payment {
        .left {
            display: flex;
            flex-direction: column;
            gap: 10px;
            .radio-box {
                cursor: pointer;
                border-radius: 4px;
                background: #fbfbfb;
                padding: 20px;
                label {
                    padding: 12px 20px;
                    border-radius: 4px;
                    border: 1px solid #ddd;
                }
            }
            .agree {
                opacity: 0.73;
                cursor: pointer;
                margin-left: 20px;
                &:has(input:checked) {
                    opacity: 1;
                }
                &:has(input.error) p {
                    color: #cd0000;
                    a {
                        color: #cd0000;
                    }
                }
                span {
                    border-radius: 0;
                    width: 16px;
                    flex-shrink: 0;
                    &::before {
                        content: '\e910';
                        font-family: icon;
                        font-size: 9px;
                        background: transparent;
                        width: initial;
                        height: initial;
                        border-radius: 0;
                    }
                }
                p {
                    text-transform: lowercase;
                    font-size: 14px;
                    a {
                        font-size: inherit;
                        text-decoration: underline;
                        text-underline-offset: 4px;
                        cursor: help;
                    }
                }
            }
        }
    }
    .right {
        display: flex;
        flex-direction: column;
        background: #fbfbfb;
        align-self: start;
        padding: 20px;
        .spoiler {
            &.open {
                .head {
                    span {
                        transform: rotate(180deg);
                    }
                    :is(.discount, .result) {
                        opacity: 0;
                        visibility: hidden;
                    }
                }
                .box {
                    margin-bottom: 5px;
                }
            }
            .head {
                justify-content: start;
                margin-bottom: 20px;
                .count {
                    margin-right: auto;
                }
                :is(.discount, .result) {
                    margin-left: 8px;
                }
                .discount {
                    color: rgba(45, 47, 46, 0.36);
                    text-decoration: line-through;
                }
                span {
                    width: 16px;
                    border-radius: 0;
                    border-color: transparent;
                    transition: transform 0.3s linear;
                    &::before {
                        content: '\e90f';
                        font-family: icon;
                        line-height: 1;
                        width: auto;
                        height: auto;
                        font-size: 16px;
                        background-color: transparent;
                        transform: translate(-50%, -50%) rotate(-90deg);
                        transition: color .3s linear;
                    }
                }
            }
            .box {
                .items {
                    display: flex;
                    flex-direction: column;
                    margin-bottom: 20px;
                    .product {
                        display: grid;
                        grid-template-columns: 136px 1fr;
                        gap: 10px;
                        width: 100%;
                        padding-bottom: 4px;
                        border-bottom: 1px solid rgba(45, 47, 46, 0.16);
                        &:not(:last-child) {
                            margin-bottom: 4px;
                        }
                        img {
                            border-radius: 3px;
                            object-fit: cover;
                            aspect-ratio: 1/1;
                        }
                        .content {
                            display: flex;
                            flex-direction: column;
                            gap: 4px;
                            .name {
                                text-transform: capitalize;
                            }
                            .name {
                                font-size: 16px;
                            }
                            .text {
                                color: rgba(45, 47, 46, 0.73);
                                font-weight: 300;
                                text-transform: lowercase;
                                display: -webkit-box;
                                overflow: hidden;
                                -webkit-box-orient: vertical;
                                -webkit-line-clamp: 1;
                                line-clamp: 1;
                                > * {
                                    color: rgba(45, 47, 46, 0.73);
                                    font-weight: 300;
                                    text-transform: lowercase;
                                }
                            }
                            .price {
                                &:has(b) {
                                    color: #cd0000;
                                    span {
                                        color: #666767;
                                        font-size: 16px;
                                        font-weight: 500;
                                        text-decoration: line-through;
                                    }
                                }
                                span {
                                    color: var(--text-color);
                                    font-weight: 400;
                                }
                                b {
                                    color: #cd0000;
                                    font-size: 16px;
                                    font-weight: 500;
                                    text-transform: lowercase;
                                    margin-left: 10px;
                                }
                                .warning {
                                    display: block;
                                    color: #cd0000;
                                    text-decoration: none;
                                    text-transform: none;
                                    font-size: 14px;
                                    font-weight: 300;
                                    margin-top: 4px;
                                }
                            }
                            fieldset {
                                display: grid;
                                grid-template-columns: repeat(3, 1fr);
                                width: 60px;
                                border: none;
                                > * {
                                    width: 15px;
                                    height: 15px;
                                }
                                input {
                                    padding: 0;
                                    font-size: 12px;
                                    border-color: transparent;
                                    color: rgba(45, 47, 46, 0.73);
                                }
                                button {
                                    position: relative;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    background-color: transparent;
                                    &::before,
                                    &::after {
                                        content: '';
                                        position: absolute;
                                        left: 50%;
                                        top: 50%;
                                        transform: translate(-50%, -50%);
                                        width: 10px;
                                        height: 1px;
                                        transition: background-color 0.2s linear;
                                        background-color: #666766;
                                    }
                                    &:last-child::after {
                                        transform: translate(-50%, -50%) rotate(90deg);
                                    }
                                }
                            }
                            .quantity {
                                display: none;
                            }
                            .remove {
                                align-self: end;
                                background-color: transparent;
                                color: rgba(45, 47, 46, 0.73);
                                font-size: 12px;
                                text-decoration-line: underline;
                                text-underline-offset: 4px;
                                transition: color 0.2s linear;
                            }
                        }
                    }
                }
                > div:not(.product-list) {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    color: rgba(45, 47, 46, 0.73);
                    font-size: 14px;
                    padding-bottom: 5px;
                    border-bottom: 1px solid rgba(45, 47, 46, 0.16);
                    &.result-box {
                        text-transform: uppercase;
                        color: #2D2F2E;
                    }
                    b {
                        font-size: inherit;
                        font-weight: inherit;
                        color: inherit;
                        text-transform: uppercase;
                    }
                }
            }
        }
        &:has(.open) {
            .info-box {
                max-height: 150px;
            }
        }
        .info-box {
            transition: max-height 0.4s linear;
            max-height: 0;
            overflow: hidden;
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            :is(.pay, .terms-delivery, .phone-link, .terms) {
                display: flex;
                align-items: center;
                color: #2d2f2e;
                font-size: 12px;
                font-weight: 400;
                text-transform: lowercase;
                &::before {
                    font-family: icon;
                    line-height: 1;
                    font-size: 24px;
                    margin-right: 4px;
                }
            }
            .pay {
                &::before {
                    display: none;
                }
                b {
                    display: flex;
                    align-items: center;
                    font-weight: inherit;
                    font-size: inherit;
                    line-height: inherit;
                    &::before {
                        content: '\e916';
                        line-height: 1;
                        font-size: 24px;
                        font-family: icon;
                        margin-right: 4px;
                    }
                }
                img {
                    width: auto;
                    height: auto;
                    max-width: 59px;
                    max-height: 24px;
                    &:first-of-type {
                        margin-left: 20px;
                    }
                }
            }
            .terms-delivery::before {
                content: '\e919';
            }
            .phone-link {
                &::before {
                    content: '\e918';
                }
                a {
                    font-size: inherit;
                    line-height: inherit;
                    margin-left: 12px;
                    transition: color .3s linear;
                }
            }
            .terms {
                span {
                    text-decoration: underline;
                    font-size: inherit;
                    line-height: inherit;
                    text-underline-offset: 4px;
                }
                &::before {
                    content: '\e917';
                }
            }
        }
    }
}
.empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 50px;
    margin-top: 200px;
    p {
        font-size: 30px;
        color: var(--text-color);
    }
    div {
        font-weight: 300;
        padding: 0 10px;
        a {
            font-size: inherit;
            line-height: inherit;
            color: #b07429;
            font-weight: inherit;
        }
    }
    > a {
        border-color: var(--text-color);
    }
}
.order-done {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100dvh;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 100;
    &.active {
        display: flex;
    }
    .content {
        width: min(460px, 100%);
        position: relative;
        padding: 50px 80px;
        background: #fff;
        .close-modal {
            position: absolute;
            right: 10px;
            top: 10px;
            width: 24px;
            aspect-ratio: 1/1;
            display: flex;
            background: transparent;
            align-items: center;
            justify-content: center;
            &::before {
                content: '\e915';
                line-height: 1;
                font-family: icon;
                font-size: 23px;
                transition: color 0.2s linear;
            }
        }
        div {
            text-align: center;
            font-size: 20px;
            text-transform: uppercase;
        }
        p {
            font-size: 13px;
            margin: 20px 0 40px;
            text-align: center;
        }
        .dark-btn {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: center;
            font-family: Lato;
        }
    }
}
:is(.watched, .recommendations) .product-item .box .bottom span.active {
    display: none;
}
@media screen and (max-width: 1500px) {
    header {
        padding-bottom: 20px;
    }
    header .wrapper,
    .scrollPage .wrapper {
        width: calc(100% - 80px);
        padding: 0;
    }
    .controls {
        margin-top: 170px;
    }
    form {
        :is(.basket, .delivery, .payment) {
            column-gap: 8px;
        }
        :is(.promo-code, .certificate, .maison-box) {
            padding: 10px;
        }
        .basket .left .items {
            padding: 10px;
            gap: 10px;
            .product {
                grid-template-columns: 136px 1fr;
                gap: 12px;
                .content {
                    position: relative;
                    gap: 4px;
                    padding-bottom: 0;
                    .text {
                        font-size: 14px;
                        > * {
                            font-size: 14px;
                        }
                    }
                    .remove {
                        margin: 0;
                        position: absolute;
                        bottom: 10px;
                        right: 10px;
                    }
                }
            }
        }
        .right .spoiler .box .items .product {
            position: relative;
            > a:first-child {
                align-self: stretch;
                img {
                    height: 100%;
                }
            }
            & .content {
                position: relative;
                gap: 4px;
                margin-bottom: 0;
                padding-bottom: 0;
                .text {
                    font-size: 14px;
                    > * {
                        font-size: 14px;
                    }
                }
                .price {
                    margin-bottom: 16px;
                }
                .remove {
                    margin: 0;
                    position: absolute;
                    bottom: 10px;
                    right: 10px;
                }
            }
        }
    }
}
@media screen and (max-width: 1279px) {
    header > .wrapper {
        padding-bottom: 6px !important;
    }
    header .wrapper,
    .scrollPage .wrapper {
        width: calc(100% - 40px);
    }
    .controls {
        margin-top: 190px;
    }
    form :is(.basket, .delivery, .payment) {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .order-done .content {
        width: min(360px, 100%);
        padding: 40px 30px;
        div {
            font-size: 18px;
        }
    }
}
@media screen and (max-width: 767px) {
    header .bottom-menu .body {
        margin-top: 10px !important;
    }
    .controls {
        margin-top: 160px;
    }
    .scrollPage .wrapper {
        width: calc(100% - 20px);
    }
    form {
        width: 100%;
        :is(.basket, .delivery, .payment) {
            :is(.left, .right) .items .product .content {
                * {
                    font-size: 12px;
                }
                .text {
                    font-size: 12px;
                    > * {
                        font-size: 12px;
                    }
                }
                .price {
                    flex-wrap: wrap;
                    &:has(b) span,
                    span {
                        font-size: 14px;
                    }
                    b {
                        font-size: 14px;
                    }
                    .warning {
                        white-space: nowrap;
                        font-size: 12px;
                    }
                }
            }
            .right {
                .info-box .pay {
                    flex-wrap: wrap;
                    b {
                        width: 100%;
                    }
                }
                .spoiler .box .items .product .content {
                    .text {
                        font-size: 12px;
                        > * {
                            font-size: 12px;
                        }
                    }
                    & .price {
                        margin-top: 20px;
                        margin-bottom: 10px;
                        flex-wrap: wrap;
                        &:has(b) span,
                        span {
                            font-size: 14px;
                        }
                        b {
                            font-size: 14px;
                        }
                    }
                    .warning {
                        white-space: nowrap;
                        font-size: 12px;
                    }
                }
            }
        }
    }
    .empty {
        padding: 0 10px;
        align-items: start;
        p {
            font-size: 16px;
            text-align: center;
        }
        div {
            font-size: 14px;
            padding: 0;
        }
        .transparent-btn {
            font-size: 10px;
            padding: 10px 20px;
        }
    }
    .order-done .content {
        width: calc(100% - 20px);
        max-width: 340px;
        padding: 40px 20px 30px;
    }
}
@media screen and (hover: hover) {
    .product .wrapper .image-box :is(.modal-slider, .bubbles-slider) {
        .close:hover::before {
            color: var(--hover);
        }
        :is(.arrow-r, .arrow-l):not([disabled]):hover {
            background-color: rgba(255, 255, 255, 0.6);
            &::before {
                color: var(--hover);
            }
        }
    }
    form {
        :is(.basket, .delivery, .payment) {
            .left .items .product {
                .content .remove:hover {
                    color: var(--text-color);
                }
                .product-count button:hover {
                    &::before,
                    &::after {
                        background-color: #2D2F2E;
                    }
                }
            }
            .right .spoiler .head:hover span:before {
                color: var(--hover);
            }
        }
        .right .info-box .phone-link a:hover {
            color: var(--hover);
        }
    }
    .radio:hover {
        color: var(--text-color);
    }
    .spoiler .head:hover {
        color: var(--hover);
    }
    .order-done .content .close-modal:hover {
        color: var(--hover);
    }
}