.custom-cart-icon {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.custom-cart-icon .cart-icon {
    font-size: 20px;
    color: white;
}

/* Perfect ronde bubble, gecentreerde tekst */
.custom-cart-icon .cart-count {
    position: absolute;
    top: -6px;
    right: -15px;

    width: 20px;          /* gelijke breedte */
    height: 20px;         /* gelijke hoogte */
    border-radius: 50%;   /* perfect rond */

    background: red;
    color: white;
    font-size: 10px;      /* gevraagd font */
    font-weight: 700;

    display: inline-flex; /* exacte centrering */
    align-items: center;
    justify-content: center;

    line-height: 1;       /* geen verticale offset */
    padding: 0;           /* vaste cirkel */
    box-sizing: border-box;
}


/* Wishlist icon */
.custom-wishlist-icon {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.custom-wishlist-icon .wishlist-icon {
    font-size: 20px;
    color: white;
}

.custom-wishlist-icon .wishlist-count {
    position: absolute;
    top: -6px;
    right: -15px;

    width: 20px;          /* gelijke breedte */
    height: 20px;         /* gelijke hoogte */
    border-radius: 50%;   /* perfect rond */

    background: red;
    color: white;
    font-size: 10px;      /* gevraagd font */
    font-weight: 700;

    display: inline-flex; /* exacte centrering */
    align-items: center;
    justify-content: center;

    line-height: 1;       /* geen verticale offset */
    padding: 0;           /* vaste cirkel */
    box-sizing: border-box;
}

/* Account icon */
.custom-account-icon {
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.custom-account-icon .account-icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: white;
}