.cart-icon-block {
    display: flex;
}

.cart-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--wp--preset--color--base);
    transition: all 0.2s ease;
    font-size: 14px;
    position: relative;
}

.cart-header-btn:hover {
    color: var(--wp--preset--color--accent-1);
}

.cart-header-btn svg {
    width: 22px;
    height: 23px;
    position: relative;
    filter: brightness(0) saturate(100%) invert(82%) sepia(9%) saturate(1963%) hue-rotate(347deg) brightness(108%) contrast(94%);
}

.cart-header-btn svg path {
    stroke: var(--wp--preset--color--base);
    transition: stroke 0.2s ease;
}

.cart-header-btn:hover svg path {
    stroke: var(--wp--preset--color--accent-1);
}

.cart-count {
    background: var(--wp--preset--color--accent-1);
    color: var(--wp--preset--color--accent-2);
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
    position: absolute;
    right: -8px;
    top: -5px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

