/* ─── Remove button on wishlist cards ─── */
.av-wishlist-remove {
    position: relative;
    z-index: 100;
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #c00;
    background: none;
    border: 1px solid #c00;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.av-wishlist-remove:hover {
    background: #c00;
    color: #fff;
}

/* ─── Floating widget ─── */
#av-wishlist-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: none;
    align-items: center;
    gap: 10px;
    background: #333;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.av-wishlist-widget__label {
    white-space: nowrap;
}
.av-wishlist-widget__count {
    background: var(--primary);
    color: #fff;
    min-width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    padding: 0 6px;
}
.av-wishlist-widget__view {
    display: inline-block;
    padding: 4px 12px;
    background: #fff;
    color: black;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
.av-wishlist-widget__view:hover {
    background: rgba(255,255,255,0.9);
    color: black;
}

/* ─── Wishlist page ─── */
.av-wishlist-loading {
    font-size: 15px;
    color: #666;
}

/* ─── Options section ─── */
#av-wishlist-options {
    margin-top: 32px;
}

/* .av-wishlist-btn — styled via brxe-button bricks-button btn--primary */
.av-wishlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ─── Email section ─── */
.av-wishlist-email-section {
    margin-top: 32px;
}
.av-wishlist-email-section h3 {
    margin: 0 0 12px;
    font-size: 24px;
}
.av-wishlist-email-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
}
#av-wishlist-email-input {
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ccc;
    width: 280px;
    max-width: 100%;
}
#av-wishlist-email-msg {
    margin-top: 10px;
    font-size: 14px;
}
