.flex-horizontal-center {
    color: #fff !important;
}

.card-header span {
    color: #fff !important;
}

.ec-search {
    color: #fff !important;
}

.bg-lg-down-black {
    color: #fff !important;
}

.btn-primary {
    color: #fff !important;
}

.bg-primary {
    color: #fff !important;
}

.btn-primary-dark-w {
    color: #fff !important;
}

/* ===================================
   WIDGET DE CARRITO EN HEADER
   =================================== */
.cart-widget-header {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cart-widget-header:hover {
    border-color: #044F80;
    box-shadow: 0 4px 8px rgba(4,79,128,0.2);
    transform: translateY(-2px);
}

.cart-widget-header .ec-shopping-bag {
    color: #044F80 !important;
}

.cart-widget-header .cart-count {
    background: #044F80;
    color: white;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
}

.cart-widget-header .cart-total {
    color: #044F80 !important;
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
}

/* Ajuste para el carrito en desktop */
.header-cart-desktop {
    position: relative;
    padding: 10px 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .cart-widget-header {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }
    
    .cart-widget-header:hover {
        transform: none;
    }
    
    .cart-widget-header .ec-shopping-bag,
    .cart-widget-header .cart-total {
        color: #333 !important;
    }
}