/* Price Alert - Frontend Styles */
.price-alert-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    width: 100%;
    justify-content: center;
}
.price-alert-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.price-alert-btn i {
    font-size: .9rem;
}
.price-alert-count {
    font-size: .75rem;
    opacity: .8;
    margin-left: 4px;
}

/* Modal */
.price-alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}
.price-alert-modal.active {
    display: flex;
}
.price-alert-box {
    background: var(--bg-card, #fff);
    border-radius: 20px;
    width: 420px;
    max-width: 90vw;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    animation: paSlideUp .3s ease;
}
@keyframes paSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.price-alert-box h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-alert-box .pa-subtitle {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.price-alert-box .pa-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg, #f5f5f5);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
}
.price-alert-box .pa-current span:first-child {
    font-size: .85rem;
    color: var(--text-muted);
}
.price-alert-box .pa-current .pa-price {
    font-weight: 900;
    font-size: 1.05rem;
}
.pa-form-group {
    margin-bottom: 14px;
}
.pa-form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.pa-form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border, #ddd);
    border-radius: 10px;
    font-size: .9rem;
    background: var(--bg, #f8f8f8);
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.pa-form-input:focus {
    border-color: var(--primary, #FF9800);
}
.pa-form-hint {
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.pa-submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: all .2s;
    margin-top: 8px;
}
.pa-submit-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}
.pa-submit-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}
.pa-success {
    text-align: center;
    padding: 20px 0;
}
.pa-success i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 12px;
    display: block;
}
.pa-success h4 {
    margin: 0 0 8px;
    font-size: 1rem;
}
.pa-success p {
    font-size: .85rem;
    color: var(--text-muted);
    margin: 0;
}
