/* RestockAlert */
.dream-restock-btn,
.ra-restock-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.35);
    background: rgba(59, 130, 246, 0.08);
    color: #2563eb;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}
.dream-restock-btn:hover,
.ra-restock-btn:hover {
    background: rgba(59, 130, 246, 0.15);
}
.dream-product-buy-btn.dream-restock-btn {
    border-color: rgba(59, 130, 246, 0.35);
    background: rgba(59, 130, 246, 0.08);
    color: #2563eb;
}
.dream-product-buy-btn.dream-restock-btn.disabled {
    opacity: 1;
    pointer-events: auto;
}
.ra-overlay {
    position: fixed;
    inset: 0;
    z-index: 99990;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.ra-dialog {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.ra-dialog h3 {
    margin: 0 0 8px;
    font-size: 17px;
}
.ra-dialog p {
    margin: 0 0 14px;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}
.ra-dialog input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 12px;
}
.ra-dialog-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
.ra-dialog-actions button {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}
.ra-btn-primary {
    background: #2563eb;
    color: #fff;
}
.ra-btn-ghost {
    background: #f3f4f6;
    color: #374151;
}
