.k-watch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 24px;
    padding: 6px 9px 5px;
    border: 1px solid rgba(17, 16, 13, 0.18);
    background: transparent;
    color: rgba(17, 16, 13, 0.62);
    font-family: var(--site-body);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
}

.k-watch:hover {
    color: rgba(17, 16, 13, 0.92);
    border-color: rgba(17, 16, 13, 0.36);
}

.k-watch[aria-pressed="true"] {
    color: rgba(17, 16, 13, 0.92);
}

.k-watch:disabled {
    cursor: default;
    opacity: 0.48;
}

.k-watch__icon {
    font-size: 12px;
    line-height: 1;
    transform: translateY(-0.5px);
}

.k-watch__count:empty {
    display: none;
}

.profile-submit-trigger-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.profile-watch-slot {
    display: flex;
    justify-content: flex-end;
}

.profile-watch-slot:empty {
    display: none;
}

.product-card-watch {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    padding: 0;
    gap: 0;
    background: var(--paper);
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-card-watch,
.product-row:hover .product-card-watch,
.product-card-watch[aria-pressed="true"] {
    opacity: 1;
}

.product-card-watch .k-watch__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.product-card-watch .k-watch__count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 13px;
    padding: 2px 3px;
    border: 1px solid rgba(17, 16, 13, 0.15);
    background: var(--paper);
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0;
}

.product-row .product-card-watch {
    position: static;
    opacity: 0;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .profile-submit-trigger-wrap {
        align-items: flex-start;
    }

    .product-card-watch,
    .product-row .product-card-watch {
        opacity: 1;
    }
}
