/* Cart Badge Styles - Force application with !important */
.cart-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem !important;
    min-height: 1.25rem !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #3b82f6 0%, #f97316 100%) !important;
    color: #ffffff !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    line-height: 1 !important;
    text-align: center !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15) !important;
    position: relative !important;
    top: -2px !important;
    left: 2px !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
    vertical-align: middle !important;
}

/* Ensure the badge is visible even when dynamically added */
.cart-badge:empty {
    display: none !important;
}

.cart-badge:not(:empty) {
    display: inline-flex !important;
} 