/* Product-page watch controls.
   Deliberately quieter than Add to cart: this is a secondary action and must
   not compete with the primary one for attention. */
.pixelair-notif-watch {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
}

.pixelair-notif-watch__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font: inherit;
    font-size: 14px;
    line-height: 1.3;
    color: currentColor;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 4px;
    cursor: pointer;
    opacity: .72;
    transition: opacity .15s ease, background-color .15s ease;
}

.pixelair-notif-watch__btn:hover,
.pixelair-notif-watch__btn:focus-visible { opacity: 1; }
.pixelair-notif-watch__btn[disabled]     { opacity: .4; cursor: default; }

/* Watching is a state, not an action, so it reads as filled rather than
   outlined — the same distinction Add to cart and "in your cart" carry. */
.pixelair-notif-watch__btn.is-watching {
    opacity: 1;
    background: currentColor;
}
.pixelair-notif-watch__btn.is-watching .pixelair-notif-watch__label { color: #fff; }

/* A bell, drawn rather than loaded, so the control costs no extra request and
   inherits the theme's colour like the text beside it. */
.pixelair-notif-watch__icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    background: currentColor;
    -webkit-mask: var(--pna-bell) center / contain no-repeat;
            mask: var(--pna-bell) center / contain no-repeat;
}
.pixelair-notif-watch__btn.is-watching .pixelair-notif-watch__icon { background: #fff; }

.pixelair-notif-watch {
    --pna-bell: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a3 3 0 0 0-3 3v2.6c0 .9-.3 1.7-.9 2.3L3 10.2V11h10v-.8l-1.1-1.3c-.6-.6-.9-1.4-.9-2.3V4a3 3 0 0 0-3-3Zm0 14a2 2 0 0 0 2-2H6a2 2 0 0 0 2 2Z'/%3E%3C/svg%3E");
}

.pixelair-notif-watch__status,
.pixelair-notif-watch__login { font-size: 13px; opacity: .8; margin: 0; }
