.cart-row {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    align-items: center;
}

.opt {
    display: flex;
    justify-content: space-around;
    width: 50%;
}

.grid {
    display: grid;
    /* justify-content: space-between; */
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.backet__block h1 {
    color: #000;
    font-family: Tilda;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
}

.cart-head {
    color: #000;
    font-family: Tilda;
    font-weight: 500;
    font-size: 16px;
    width: 100%;
    line-height: 24px;
}

.prod-thumb img {
    width: 100%;
    border-radius: 10px;
}

.prod-thumb {
    width: 26%;
}

.basket__categories {
    color: #000;
    font-family: Tilda;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.basket__categories {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.basket__flex {
    display: grid;
    border-bottom: 1px solid #ccc;
    padding-top: 50px;
    padding-bottom: 20px;
    grid-template-columns: 43% 47%;
}

.prod-title {
    color: #000;
    font-family: Tilda;
    font-weight: 400;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 280px;
}

.price {
    color: #000;
    font-family: Tilda;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.sum {
    color: #000;
    font-family: Tilda;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.qty {
    display: flex;
    align-items: center;
}

.basket__much {
    display: flex;
    align-items: center;
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid #ececf0;
    border-radius: 30px;
    gap: 16px;
}

.basket__much button {
    border: none;
    border-radius: 50%;
    background: #f7f6fc;
    cursor: pointer;
    font-size: 22px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.basket__much button svg:hover rect:first-of-type {
    fill: rgba(84, 109, 252, 0.5)
}

.basket__much input {
    width: 28px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
    color: #000;
}

.additional {
    padding-top: 50px;
}

.additional h3 {
    color: #000;
    font-family: Tilda;
    font-weight: 600;
    font-size: 32px;
    padding-bottom: 20px;
    margin: 0;
}

.basket__delevery__item {
    display: flex;
    gap: 20px;
}

.basket__delevery__block {
    display: flex;
    justify-content: space-between;
    width: 58%;
    margin-bottom: 13px;
}

.basket__delevery__plus {
    position: relative;
    cursor: pointer;
    top: 3px;
}

.basket__delevery__plus svg:hover path:first-of-type {
    stroke: rgba(84, 109, 252, 0.5);
}

.basket__delevery__x {
    position: relative;
    cursor: pointer;
    top: 3px;
}

.basket__delevery__x svg:hover path:first-of-type {
    opacity: 0.8;
}

.basket__delevery__name p {
    color: #000;
    font-family: Tilda;
    font-weight: 600;
    font-size: 24px;
    margin: 0;
}

.basket__delevery__price span {
    color: #000;
    font-family: Tilda;
    font-weight: 400;
    font-size: 16px;
}

.backet__block {
    padding: 24px 0px 60px;
}

.basket__delete {
    position: relative;
    cursor: pointer;
    transition: 0.2s ease;
}

.basket__delete:hover {
    opacity: 0.8;
}

.card__all__price {
    padding: 30px 35px;
    border-radius: 5px;
    box-shadow: 0px 4px 9px 0px rgba(152, 160, 180, 0.25);
    background-color: #FCFCFC;
    max-width: 450px;
}

.card__all__price h3 {
    color: #000;
    font-family: Tilda;
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 21px;
    margin-bottom: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    color: #000;
    font-family: Tilda;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

a.checkout-btn {
    text-decoration: none;
    font-size: 16px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-family: Tilda;
    font-weight: 600;
    background-color: #546DFC;
    border-radius: 5px;
    color: #fff;
    filter: none;
    transition: 0.2s ease;
    padding: 13px 0 14px;
}

a.checkout-btn:hover {
    background-color: rgb(84, 109, 252, 0.8);
    color: #fff;
}

.checkout__link {
    text-align: center;
    padding-top: 40px;
}

.mobile__price__basket {
    font-size: 18px;
    font-family: Tilda;
    font-weight: 700;
    color: #000;
}

.mobile__card__version {
    display: none;
}

.mobile__much__basket {
    font-size: 18px;
    font-family: Tilda;
    font-weight: 700;
    color: #000;
}

@media (max-width: 726px) {
    .grid {
        display: block;
    }

    .backet__block h1 {
        margin-bottom: 35px;
    }

    aside.aside {
        width: 100%;
    }

    .basket__delevery__block {
        width: 100%;
    }

    .cart-row {
        display: none;
    }

    .basket__flex {
        display: none;
    }

    .mobile__basket__info {
        display: flex;
        gap: 60px;
        justify-content: unset;
        padding-top: 15px;
    }

    .mobile__card__version {
        display: block;
    }

    .price {
        font-weight: 500;
        padding-top: 34px;
    }

    .cart-head {
        font-size: 22px;
        font-family: Tilda;
        font-weight: 700;
        color: #000;
        margin-bottom: 20px;
    }

    .qty {
        padding-top: 20px;
    }

    .mobile__basket__delete {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding-top: 25px;
    }

    .sum {
        font-size: 22px;
    }

    .card__all__price {
        margin-top: 50px;
        max-width: unset;
    }

    a.checkout-btn {
        padding: 0;
    }
}