.cart-overlay{
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: none;
    justify-content: flex-end;
    align-items: stretch;
    z-index: 1100;
}

.cart-overlay--visible{
    display: flex;
}

.cart{
    width: 420px;
    max-width: 100%;
    background: #ffffff;
    height: 100vh;
    box-shadow: -8px 0 30px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
}

.cart__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}

.cart__title{
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #0a2463;
}

.cart__close{
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #4b5563;
}

.cart__header-divider{
    height: 1px;
    background-color: #e5e7eb;
}

.cart__body{
    flex: 1;
    padding: 16px 20px;
    overflow-y: auto;
}

.cart__empty{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6b7280;
}

.cart__empty-icon img{
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
}

.cart__empty-title{
    font-size: 15px;
    margin-bottom: 6px;
    color: #111827;
}

.cart__empty-link{
    font-size: 13px;
    color: #00c2d2;
    background: transparent;
    border: none;
    cursor: pointer;
}

.cart__items{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item{
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.cart-item__image-wrapper{
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__main{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item__row-top{
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.cart-item__title{
    font-size: 14px;
    line-height: 150%;
    color: #111827;
}

.cart-item__subtitle{
    font-size: 12px;
    line-height: 150%;
    color: #6b7280;
}

.cart-item__remove{
    border: none;
    background: transparent;
    font-size: 12px;
    line-height: 150%;
    color: #ef4444;
    cursor: pointer;
}

.cart-item__row-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.cart-item__counter{
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.cart-item__counter-btn{
    width: 26px;
    height: 24px;
    border: none;
    background: #f9fafb;
    cursor: pointer;
}

.cart-item__qty{
    min-width: 24px;
    text-align: center;
    font-size: 13px;
}

.cart-item__price{
    font-size: 14px;
    color: #0a2463;
}

.cart__footer{
    padding: 12px 20px 18px 20px;
    border-top: 1px solid #e5e7eb;
    background-color: #ffffff;
}

.cart__total{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.cart__total-label{
    font-size: 14px;
    color: #4b5563;
}

.cart__total-value{
    font-size: 16px;
    color: #0a2463;
}

.cart__checkout{
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: none;
    background-color: #00c2d2;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
}

@media (max-width: 768px){
    .cart{
        width: 100%;
    }
}

