/* Icono del carrito */
.cart-badge {
	position: absolute;
	top: 0;
	right: 0;
	margin-right: -15px;
	margin-top: -15px;
	font-size: 13px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 50%;
	display: block;
	text-align: center;
	background: #077598;
	color: #fff;
}

/* Lista preliminar carrito */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    transition: right 0.3s ease-in-out;
    z-index: 9999;
    padding: 1rem;
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-items li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}