.petshop-cart-sidebar {
    position: fixed;
    top: 40px;
    right: -300px;
    width: 300px;
    height: 95%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
}
.petshop-cart-error-message {
    color: red;
    display: none;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}
.petshop-cart-sidebar.active {
    right: 0;
}

.petshop-cart-sidebar .cart-content {
    margin-top: 20px;
}

.petshop-cart-sidebar .cart-item {
    margin-bottom: 20px;
}

.petshop-cart-sidebar .cart-item img {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 10px auto;
    object-fit: cover;
}

.petshop-cart-sidebar .cart-item .info {
    text-align: center;
    font-size: 12px;
}

.petshop-cart-sidebar .cart-item .remove-item {
    margin-top: 10px;
    padding: 5px 10px;
    background: #dc3545;
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.petshop-cart-sidebar .cart-total {
    font-weight: bold;
    margin-top: 20px;
    text-align: left;
    color: #333;
}

.petshop-cart-sidebar .close-cart {
    position: absolute;
    top: 10px;
    right: 10px;
    background: blue;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.petshop-cart-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff00;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10001;
}

.petshop-cart-float img.pet-icon {
    width: 180%;
    height: 180%;
    object-fit: cover;
    display: block;
}

.petshop-cart-float .cart-item-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.petshop-service-valor-total {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.petshop-service-valor-total .icone-valor {
    margin-right: 5px;
}

.petshop-error-message {
    color: red;
    display: none;
    margin-top: 10px;
}

/* Modo escuro */
@media (prefers-color-scheme: dark) {
    .petshop-cart-sidebar {
        background: #2b2b2b;
        color: #d4d4d4;
    }
    .petshop-cart-sidebar .cart-item .remove-item {
        background: #b02a37;
    }
    .petshop-cart-sidebar .close-cart {
        background: #b02a37;
    }
    .petshop-cart-sidebar .cart-total {
        color: #d4d4d4;
    }
    .petshop-service-valor-total {
        color: #d4d4d4;
    }
}
