
#cart-cont {
    position: fixed;
    width: 400px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 101;
    box-shadow: 0 -2px 5px 0 rgba(0,0,0,.2);
    background: #f2f2f2;
    transition: all .4s;
    border-radius: 33px 0 0 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: black;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 10px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    position: relative;
}

.cart-image {
    width: 60px;
    height: 60px;
}

.cart-image img {
    width: 100%;
}

.cart-flex {
    padding: 0 10px;
    font-size: 0.9em;
    flex:1;
}

.cart-total {
    font-weight: bold;
    font-size: 0.9em;
}

.cart-delete {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff3d88;
    border-left: 1px solid #ddd;
    margin-left: 10px;
    padding: 10px 0 10px 10px;
    font-size: 1.5em;
}

.cart-quanty-input {
    width: 40px;
    text-align: right;
    padding: 2px;
    border: 1px solid #666;
}

.cart-seguro {
    position: absolute;
    width: 100%;
    background: #ffffffd4;
    height: 100%;
    left: 0;
    top: 0;
    backdrop-filter: blur(2px);
    border-radius: 4px;
    display: none;
}

.cart-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 10px;
}

.cart-seguro-button {
    background: #ff3d88;
    border: none;
    padding: 5px 20px;
    color: white;
    border-radius: 5px;
    margin: 5px 10px;
}

.cart-price {
    font-weight: 500;
    padding-left: 5px;
    font-size: .9em;
    color: #3b3b3b;
}

.cart-name {
    font-weight: 500;
}

.cart-quanty {
    font-weight: 500;
    font-size: 0.9em;
}


.button-comprar {
    padding: 8px 15px;
    background-color: #f20091;
    color: white;
    border-radius: 8px;
    margin: 5px 0;
    border: none;
    font-weight: 600;
}

.button-comprar:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: all 0.3s;
}


.btn-primary {
    width: 100%;
    height: 40px;
    border: none;
    background: #ff3d88;
    color: white;
    font-weight: 600;
    border-radius: 6px;
}

.btn-primary:hover {
    background: #fc7bac;
    cursor: pointer;
}

#total-panel {
    background: white;
    border-top: 1px solid #eee;
    padding: 20px;
    box-sizing: border-box;
}

#back-list {
    flex: 1;
    overflow: auto;
}

.btn-back {
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    background: #e3e3e3;
    margin: 0 13px;
    border-radius: 21px;
}

@media (max-width: 600px){
    #cart-cont {
        width:100%;
    }
}