/* CART BADGE */
.cart-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #E10600;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.nav-item {
    position: relative;
}

/* REMOVE BUTTON */
.btn-remove {
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-remove:hover {
    background: #dc3545;
    color: #fff;
}

/* CART FOOTER */
.cart-footer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #333;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 700;
}

.cart-total span:first-child {
    color: #999;
}

.total-price {
    color: var(--color-primary);
    font-size: 2rem;
}

/* DANGER BUTTON */
.btn-danger {
    background: #dc3545 !important;
    color: #fff !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    transform: translateY(-2px);
}