.custom-cart-icon {
    position: relative !important; /* Ensure it stays within its column */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important; /* Make sure it spans the full width of the column */
    font-size: 20px !important;
    color: white !important; /* Make the icon white */
}

.custom-cart-icon .cart-count {
    position: absolute !important;
    top: -10px !important; /* Adjust to sit directly on top of the cart */
    right: 5px !important; /* Center it better relative to the icon */
    background: red !important;
    color: white !important;
    font-size: 12px !important;
    width: 20px !important;
    height: 20px !important;
    text-align: center !important;
    border-radius: 50% !important;
    font-weight: bold !important;
    line-height: 20px !important;
    z-index: 9999 !important;
}