/* ================================
   HEADER WISHLIST ICON
   ================================ */

.nomitekra-wishlist-header-link {
    position: relative !important;

    width: 42px !important;
    height: 42px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 10px 0 0 !important;
    padding: 0 !important;

    color: #111111 !important;
    text-decoration: none !important;

    border-radius: 14px !important;

    line-height: 1 !important;

    transform: none !important;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.nomitekra-wishlist-header-link:hover {
    transform: translateY(-1px) !important;
    color: var(--primary) !important;
    background: rgba(255,43,43,0.08) !important;
}

.nomitekra-wishlist-header-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 30px !important;
    height: 30px !important;
}

.nomitekra-wishlist-header-icon svg {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
}

.nomitekra-wishlist-header-icon svg path {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.15 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.nomitekra-wishlist-header-link:hover svg path {
    fill: rgba(255,43,43,0.10) !important;
}

/* Badge */
.nomitekra-wishlist-header-count {
    position: absolute !important;
    top: -4px !important;
    right: -5px !important;

    min-width: 21px !important;
    height: 21px !important;

    padding: 0 6px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: var(--primary) !important;
    color: #ffffff !important;

    border-radius: 999px !important;
    border: 2px solid #ffffff !important;

    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1 !important;

    box-shadow: 0 6px 14px rgba(255,0,0,0.28) !important;

    z-index: 10 !important;
}

.nomitekra-wishlist-header-count[hidden] {
    display: none !important;
}

/* Щоб іконка гарно ставала біля кошика */
.ct-header-cart,
[data-id="cart"] {
    margin-left: 0 !important;
}

/* Desktop: вирівнюємо праву групу */
@media (min-width: 769px) {

    .nomitekra-wishlist-header-link {
        vertical-align: middle !important;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .nomitekra-wishlist-header-link {
        width: 44px !important;
        height: 44px !important;

        margin: 0 8px 0 0 !important;

        color: #555555 !important;
    }

    .nomitekra-wishlist-header-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .nomitekra-wishlist-header-icon svg {
        width: 30px !important;
        height: 30px !important;
    }

    .nomitekra-wishlist-header-count {
        top: -2px !important;
        right: -3px !important;

        min-width: 22px !important;
        height: 22px !important;

        font-size: 11px !important;
    }
}