svg {
    display: block;
}

.cart {
    font-family: 'Inter', sans-serif;
    color: #000;
    padding-top: 50px;
}

.cart__top {
    margin-bottom: 32px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart__title {
    font-size: 32px;
    font-weight: 500;
}

.cart .cart__count {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FE5D26;
    font-size: 12px;
    line-height: 16px; 
    font-weight: 500;
    background-color: rgba(254, 93, 38, 0.2);
}

.cart__inner {
    display: grid;
    grid-template-columns: 59% 1fr;
    gap: 24px;
}

.cart__controls {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.cart__select-all {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart__select-all .checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
}

.cart__select-all span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.40);
    line-height: 24px;
    font-weight: 400;
}

.cart__remove-all {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart__remove-all span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.40);
    line-height: 24px;
    font-weight: 400;
}

.cart__copy-btn {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart__copy-btn span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.40);
    line-height: 24px;
    font-weight: 400;
}

.cart__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item {
    padding: 8px 16px;
    background: #FFF;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item__wrapper {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background-color: #fff;
}

.cart-item label input {
    display: none;
}

.cart-item__checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #00000029;
}

.cart-item__img {
    height: 96px;
    width: 96px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.cart-item__textbox {
    max-width: 305px;
    width: 100%;
    margin-right: auto;
}

.cart__copy-btn:hover > span {
    color: #000;
}
.cart__copy-btn:hover svg path {
    stroke: #000;
    stroke-opacity: 1;
}


.cart__remove-all:hover span {
    color: #000;
}
.cart__remove-all:hover svg path {
    stroke: #000;
    stroke-opacity: 1;
}

.cart-item__btn-remove:hover svg path {
    stroke-opacity: 1;
}


.cart-item__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 8px;
}

.cart-item__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.40);
}

.cart-item__controls-box {
    max-width: 160px;
    flex-grow: 1;

}

.cart-item__price {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: right;
    white-space: nowrap;
}

.cart-item__controls {
    display: flex;
    gap: 12px;
}

.cart-item__btn-remove {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item__counter {
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 108px;
}

.cart-item__counter button {
    padding: 10px;
}

.cart-item__count, .cart-item-option__count {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    width: 28px;
    text-align: center;
}

.cart-item__decrement, .cart-item__increment,
.cart-item-option__decrement, .cart-item-option__increment {
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart__form-wrapper-top {
    display: flex;
    justify-content: end;
    margin-bottom: 24px;
}

.cart__form-wrapper {
    max-width: 530px;
}

.cart__instruction {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart__instruction span {
    font-size: 16px;
    line-height: 24px;
    color: #3088F6;
}

.box {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #FFF;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.06);
}

.cart__form-title {
    margin-bottom: 32px;
    font-size: 24px;
    color: #000;
    font-weight: 500;
    line-height: 32px;
}

.cart__date-wrapper {
    margin-bottom: 24px;
}

.cart__date-wrapper span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 8px;
}

.cart__tabs {
    display: flex;
    padding: 2px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
    gap: 2px;
}

.cart__tab-btn {
    width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.40);
    cursor: pointer;
}

.cart__tab-btn.active {
    color: #000;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.06) inset, 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.cart__img-promo {
    width: 100%;
    display: block;
}

.cart__form-row {
    margin-bottom: 24px;
}

.cart__form-row span {
    font-size: 14px;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
}

.cart__form-row .row-inputs {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
}


.cart__form-row .row-inputs input {
    padding: 10px;
    font-size: 14px;
    color: #000;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 -1px 1px 0 rgba(0, 0, 0, 0.06) inset;
}

.cart__form-row .row-inputs input::placeholder {
    color: rgba(0, 0, 0, 0.40);
}

.form-row__text {
    display: flex;
    gap: 4px;
}

.form-row__text span {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.40);
}

.input-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.input-boxes .box span {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.cart span {
    display: block;
}

.input-boxes .input-box input {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 -1px 1px 0 rgba(0, 0, 0, 0.06) inset;
}

.cart__add-comment-btn {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    cursor: pointer;
    align-items: center;
}

.cart__add-comment-btn span {
    font-size: 14px;
    color: rgba(49, 45, 43, 0.50);
    font-weight: 500;
    transition: .25s;
}

.cart__add-comment-btn svg path {
    stroke: rgba(49, 45, 43, 0.50);
    transition: .25s;
}
.cart__add-comment-btn:hover span {
    color: #000;
}
.cart__add-comment-btn:hover svg path {
    stroke: #000;
}

.input-boxes .box input:focus {
    border: 1px solid #FE5D26;
}

.cart .box .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 16px;

}

.cart .box-social {
    display: grid;
    gap: 12px;
}

.cart .box-social a {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    padding: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart .box-social  span {
    font-size: 14px;
}

.cart__date-wrapper input {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 -1px 1px 0 rgba(0, 0, 0, 0.06) inset;
}

.input-box span {
    margin-bottom: 8px;
    font-size: 14px !important;
}

.delivery_pickup {
    margin-bottom: 20px;
}

.cart__form-row .row-inputs input {
    width: 100%;
}

.cart-item__btn-dop {
    display: flex;
    align-items: center;
    margin-top: 8px;
    gap: 2px;
}

.cart-item__btn-dop span {
    color: #FE5D26;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.cart__mini-item {
    max-width: 205px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.cart__mini-item img {
    width: 66px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    overflow: hidden;
}

.mini-item__content {
    max-width: 127px;
}

.mini-item__title {
    font-size: 12px;
    margin-bottom: 2px;
    color: #312D2B;

}

.mini-item__price {
    font-size: 12px;
    color: rgba(49, 45, 43, 0.50);
    margin-bottom: 8px;
    line-height: 16px;
}

.mini-item__btn {
    font-size: 12px;
    color: #FE5D26;
    font-weight: 500;
    display: block;
    width: max-content;
}

.cart-item__slider {
    padding: 0 16px 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
}

.cart-item__slider-prev {
    z-index: 3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FE5D26;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .15s;
    border: 1px solid #FE5D26;
}

.cart-item__slider-next {
    z-index: 3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FE5D26;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .15s;
    border: 1px solid #FE5D26;
}

.cart-item__slider-next:hover {
    background-color: #fff;
}
.cart-item__slider-next:hover svg path {
    stroke: #FE5D26;
}

.cart-item__slider-prev:hover {
    background-color: #fff;
}
.cart-item__slider-prev:hover svg path {
    stroke: #FE5D26;
}

.swiper-button-disabled {
    display: none;
}

.sub-items__title {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #312D2B;
    margin: 0 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(49, 45, 43, 0.05);
}

.cart__sub-items {

}

.cart__sub-items .cart-item img {
    border: 1px solid rgba(49, 45, 43, 0.05);
}

.cart-page {
    background-color: #F6F6F6;
}

.form__price-box .title {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgba(49, 45, 43, 0.50);
}

.price-box__prices {
    display: flex;
    justify-content: space-between;
}

.form__price-box {
    margin-top: 24px;
}

.price-box__prices span {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #312D2B;
}

.form-btn-submit {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background-color: #FE5D26;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 32px;
}

.form-btn-submit span {
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.cart-item-mobile {
    display: none;
}

.form-btn-submit span {
    font-size: 16px;
}

.drop-content {
    display: none;
}

.drop-content.show {
    display: block;
}

.cart-item__btn-dop.show svg {
    transform: rotate(180deg);
}

.cart__top .cart__copy-btn {
    margin-left: 32px;
    margin-right: auto;
}

.cart__items-text {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 24px;
    color: rgba(49, 45, 43, 0.50);
}

.cart__items-text a {
    color: #3088F6;
    text-decoration: none;
}

.cart__items-text a:hover {
    text-decoration: underline;
}

.comment-box {
    display: none;
}

.cart__form-wrapper {
    padding-top: 137px;
}

.cart__img-promo-box {
    padding: 24px 0 0;
    border-top: 1px solid rgba(49, 45, 43, 0.10);
}

.cart input:focus {
    outline-color: #FE5D26;
}

.input-box textarea {
    padding: 12px 14px;
    height: 80px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(49, 45, 43, 0.10);
    background: #FFF;
}

textarea:focus {
    outline-color: #FE5D26;
}

.cart__top-title {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-emtpy {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.cart-emtpy svg {
    display: block;
    margin-bottom: 24px;
}

.cart-emtpy__title {
    font-size: 24px;
    color: #312D2B;
    font-weight: 500;
    margin-bottom: 16px;
}

.cart__empty-text {
    max-width: 380px;
    font-size: 16px;
    color: rgba(49, 45, 43, 0.50);
    text-align: center;
    margin-bottom: 32px;
}

.cart__empty-text a {
    color: #FE5D26;
    border-color: #D95427;
}

.cart__empty-link {
    padding: 8px 20px;
    display: inline-block;
    border-radius: 12px;
    background-color: #FE5D26;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    transition: .25s;
    border: 2px solid #FE5D26;
}

.cart__empty-link:hover {
    background: #D95427;
    border-color: #D95427;
}

.form-btn-submit {
    border: 2px solid #FE5D26;
    transition: .25s;
}

.form-btn-submit svg path, .form-btn-submit span {
    transition: .25s;
}

.form-btn-submit:hover {
    background: #D95427;
    border-color: #D95427;
}



@media (max-width: 1024px) {
    .cart__inner {
        display: flex;
        flex-direction: column;
    }

    .cart-item {
        display: none;
    }

    .cart__sub-items .cart-item  {
        display: flex !important;
    }

    .cart-item .cart-item {}

    .cart-item-mobile {
        display: flex;
        flex-direction: column;
        padding: 8px 16px 8px 8px;
        background-color: #fff;
    }

    .cart-item-mobile__top {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 8px;
    }

    .cart-item-mobile img {
        width: 100%;
        max-width: 96px;
        aspect-ratio: 1 / 1;
        border-radius: 12px;
        overflow: hidden;
        object-fit: cover;
    }

    .cart-item-mobile__title {
        font-size: 14px;
        color: #000;
        font-weight: 500;
        line-height: 20px;
        margin-bottom: 4px;
    }

    .cart-item-mobile__text {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        line-height: 20px;
        color: rgba(0, 0, 0, 0.40);
        margin-bottom: 8px;
    }

    .cart-item-mobile__price {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: #312D2B;
    }

    .cart-item-mobile__bottom {
        display: flex;
        gap: 19px;
        align-items: center;
    }

    .cart-item-mobile .cart-item__counter {
        max-width: 96px;
        width: 100%;
        height: 32px;
    }

    .cart-item-mobile__controls {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .cart-item-mobile__btn-more {
        display: flex;
        align-items: center;
        gap: 2px;

    }

    .cart-item-mobile__btn-more span {
        font-size: 12px;
        color: #FE5D26;
        font-weight: 500;
    }

    .cart-item-mobile .cart-item__btn-remove {
        margin-left: auto;
    }

    .cart .container {
        padding: 0;
    }

    .cart__top {
        padding: 0 16px;
    }

    .cart__select-all {
        display: none;
    }

    .cart__controls {
        padding: 0 16px;
    }

    .cart__items {
        padding: 0 16px;
    }

    .cart__instruction {
        display: none;
    }

    .box {
        padding: 24px;
    }

    .cart__form-title {
        margin-bottom: 24px;
    }

    .cart__form-title {
        font-size: 20px;
    }

    .input-boxes {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }

    .cart__date-wrapper {
        margin-bottom: 16px;
    }

    .cart__date-wrapper input {
        box-shadow: none;
    }

    .cart__form-row .row-inputs input {
        box-shadow: none;
    }

    .input-boxes .input-box input {
        box-shadow: none;
    }

    .cart__form-row {
        margin-bottom: 16px;
    }

    .form-row__text span {
        margin-bottom: 0;
    }

    .form-btn-submit {
        margin-bottom: 24px;
    }

    .cart__items-text {
        display: none;
    }

    .cart__form-wrapper {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .cart__top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 0;
    }

    .cart__top-title {
        grid-column-start: span 2;
    }

    .cart__copy-btn {
        margin-left: 0 !important;
    }

    .cart__remove-all {
        justify-content: end;
    }
}


.cart-page .tab-content {
    display: none;
}

.cart-page .tab-content.active {
    display: block;
}

.samovivoz {
    padding: 0px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

.address-row {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    justify-content: space-between;
}

.address-row:last-child {
    border: none;
}

.address-row .pickup_map {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid var(--Black-10, rgba(49, 45, 43, 0.10));
    background: var(--White-100, #FFF);
    max-width: 110px;
    cursor: pointer;
}

.address-row .pickup_map span {
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    color: #312D2B;
}

.label-text {
    font-size: 12px;
    color:rgba(0, 0, 0, 0.40) ;
    margin-bottom: 4px;
}

.row-text {
    font-size: 14px;
    line-height: 20px;
    color: #312D2B;
}

.cart__inner {
    margin-bottom: 100px;
}

.cart input {
    outline: none !important;
}

.cart input:focus {
    box-shadow: 0 0 0 2px rgba(254, 93, 38, 0.16) !important;
    outline-width: 1px;
    border: 1px solid #FE5D26;
}

.cart textarea:focus {
    box-shadow: 0 0 0 2px rgba(254, 93, 38, 0.16) !important;
    outline-width: 1px;
    border: 1px solid #FE5D26;
}

textarea {
  resize: vertical;
    outline: none !important;
}


.cart-item__decrement-inactive, .cart-item-option__decrement-inactive {
    cursor: default !important;
    pointer-events: none;
}

.cart-item__decrement-inactive svg path, .cart-item-option__decrement-inactive svg path {
    stroke: #a9a9a9;
}

.cart-item__title a:hover {
    color: #FE5D26;
}

.cart__copy-btn {
    position: relative;
}

.copy-info-text {


}

.cart input {
    color: #000;
    font-size: 14px !important;
}

.cart input::placeholder {
    color: rgba(0, 0, 0, 0.40) !important;
}

.cart textarea {
    font-size: 14px;
}

.cart textarea::placeholder {
    color: rgba(0, 0, 0, 0.40) !important;
    font-size: 14px;
}

.cart-finish {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-item__increment:hover svg path {
    stroke: #FE5D26;
}

.cart-item__decrement:hover svg path {
    stroke: #FE5D26;
}


.cart-item-option__decrement:hover svg path {
    stroke: #FE5D26;
}

.cart-item-option__increment:hover svg path {
    stroke: #FE5D26;
}



.map-popup {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.map-popup.active {
    display: block;
}

.map-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

.map-popup__content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 500px;
    background: #fff;
    margin: 5vh auto;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
}

.map-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: #000;
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.map {
    width: 100%;
    height: 100%;
}

.cart-emtpy, .cart-finish {
    padding: 50px 0;
}

@media screen and (max-width: 768px) {
    .cart {
        margin-top: 30px;
    }

    .cart-item-mobile__top img {
        border: 1px solid rgba(0, 0, 0, 0.04);
    }
}

.textbox-new {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 32px;
    background: #fff;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.textbox-new .text1 {
    color: #FE5D26;
}


.textbox-new .text2 {

}

.cart__items-text a {
    color: #FE5D26 !important;
}