.cart-count-container {
    position: relative;
    display: inline-block;
}

.dashicons.dashicons-edit-page {
    font-size: 25px;
    color: #333;
}

.cart-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background-color: #ff4444;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    z-index: 2;
}

/* For pseudo-element version */
.cart-icon {
    position: relative;
    display: inline-block;
}

.cart-icon::after {
    content: attr(data-count);
    position: absolute;
    bottom: -2px;
    right: -7px;
    background-color: #998675;
    color: white;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 3px 0;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}