.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;
}

.profile-watch-slot .k-watch,
.k-watch:not(.product-card-watch):not(.research-card-watch) {
    min-height: 29px;
    padding: 8px 13px 7px;
    border-color: rgba(17, 16, 13, 0.22);
    background: transparent;
    color: rgba(17, 16, 13, 0.78);
    font-size: 10.5px;
    letter-spacing: 0.12em;
}

.profile-watch-slot .k-watch:hover,
.k-watch:not(.product-card-watch):not(.research-card-watch):hover {
    color: rgba(17, 16, 13, 0.96);
    border-color: rgba(17, 16, 13, 0.42);
}

.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: 1;
}

.k-watch--pending .k-watch__icon,
.k-watch--pending .k-watch__count {
    animation: k-watch-confirm 180ms ease-out;
}

@keyframes k-watch-confirm {
    0% { transform: scale(0.82); }
    70% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.k-watch__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    transform: translateY(-0.5px);
}

.k-watch__icon svg {
    display: block;
    width: 17px;
    height: 17px;
    overflow: visible;
    fill: transparent;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.k-watch[aria-pressed="true"] .k-watch__icon svg {
    fill: currentColor;
}

.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: 28px;
    min-width: 28px;
    height: 28px;
    min-height: 28px;
    padding: 0;
    gap: 0;
    border-radius: 999px;
    background: rgba(246, 245, 241, 0.92);
    color: rgba(17, 16, 13, 0.72);
    box-shadow: 0 6px 16px rgba(17, 16, 13, 0.08);
    opacity: 1;
    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:hover {
    background: rgba(246, 245, 241, 0.98);
}

.product-card-watch[aria-pressed="true"] {
    color: #a33020;
    border-color: rgba(163, 48, 32, 0.34);
}

.product-card-watch .k-watch__icon {
    font-size: 15px;
    line-height: 1;
    transform: translateY(-0.5px);
}

.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;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
    letter-spacing: 0;
}

.product-card-watch[aria-pressed="true"] .k-watch__icon {
    display: none;
}

.product-card-watch[aria-pressed="true"] .k-watch__count:not(:empty) {
    display: inline-flex;
}

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

@media (max-width: 640px) {
    .profile-submit-trigger-wrap {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
    }

    .profile-watch-slot .k-watch {
        min-height: 44px;
        padding: 0 14px;
        font-size: 13px;
        letter-spacing: 0.11em;
        border-color: rgba(17, 16, 13, 0.2);
        white-space: nowrap;
    }

    .profile-watch-slot .k-watch__icon {
        font-size: 16px;
    }

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