/* Frontend popup styles */
.birthday-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
}

.birthday-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    max-width: 520px;
    width: 90%;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.birthday-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.birthday-popup h2 {
    margin-top: 0;
}

.birthday-popup input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.birthday-popup button,
.brs-btn {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.birthday-popup button:hover,
.brs-btn:hover {
    background: #005177;
}

/* New multi-step classes */
.brs-step { }
.brs-row { display: flex; gap: 10px; }
.brs-row input { flex: 1; }
.brs-inline { display: inline-flex; align-items: center; gap: 8px; }
.brs-hero img { max-width: 100%; height: auto; border-radius: 6px; margin-bottom: 12px; }
.brs-code { display: flex; gap: 10px; align-items: center; }
.brs-code code { display: inline-block; background: #f4f4f4; padding: 10px 12px; border-radius: 4px; font-weight: 600; }

@media (max-width: 480px) {
  .brs-row { flex-direction: column; }
}
