/* Popup Overlay */
.hbs-popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,.85); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
}

/* Modal */
.hbs-popup-modal {
    background: linear-gradient(145deg, #181818 0%, #0a0a0a 100%);
    border: 1px solid #C59A2E;
    max-width: 440px; width: 90%; padding: 40px 32px;
    position: relative; text-align: center;
    box-shadow: 0 0 60px rgba(197, 154, 46, .15), 0 0 120px rgba(0,0,0,.8);
    animation: hbs-popup-in .4s ease-out;
}

@keyframes hbs-popup-in {
    from { opacity: 0; transform: scale(.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Close */
.hbs-popup-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; color: #9A9A9A;
    font-size: 28px; cursor: pointer; line-height: 1;
    transition: color .2s;
}
.hbs-popup-close:hover { color: #D71919; }

/* Content */
.hbs-popup-icon { font-size: 48px; margin-bottom: 12px; }

.hbs-popup-content h2 {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 1.6rem; color: #C59A2E;
    letter-spacing: 3px; text-transform: uppercase;
    margin: 0 0 12px;
}
.hbs-popup-content p {
    color: #e0d5c0; font-size: .95rem; line-height: 1.6; margin: 0 0 20px;
}
.hbs-popup-content strong { color: #D71919; }

/* Form */
.hbs-popup-form input[type="email"],
.hbs-popup-form input[type="tel"] {
    width: 100%; padding: 12px 16px;
    background: #2A2A2A; border: 1px solid #3a3a3a; color: #e0d5c0;
    font-size: .95rem; margin-bottom: 10px;
    font-family: var(--font-body, 'Inter', sans-serif);
    transition: border-color .3s;
}
.hbs-popup-form input:focus {
    border-color: #C59A2E; outline: none;
}
.hbs-popup-form input::placeholder { color: #666; }

/* SMS Consent */
.hbs-popup-consent {
    display: flex; align-items: flex-start; gap: 8px;
    margin-bottom: 16px; text-align: left;
}
.hbs-popup-consent input[type="checkbox"] {
    margin-top: 3px; accent-color: #C59A2E;
}
.hbs-popup-consent span {
    font-size: .75rem; color: #888; line-height: 1.4;
}

/* CTA Button */
.hbs-popup-btn {
    width: 100%; padding: 14px;
    background: #D71919; color: #fff; border: none;
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: .9rem; letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; transition: all .3s;
}
.hbs-popup-btn:hover {
    background: #ff2222;
    box-shadow: 0 0 20px rgba(215,25,25,.5);
    transform: translateY(-1px);
}
.hbs-popup-btn:disabled {
    opacity: .6; cursor: not-allowed; transform: none;
}

/* Success */
.hbs-popup-success h3 {
    font-family: var(--font-heading, 'Cinzel', serif);
    color: #C59A2E; font-size: 1.3rem; letter-spacing: 2px;
    margin: 12px 0;
}
.hbs-popup-success p { color: #e0d5c0; font-size: .95rem; }
.hbs-popup-success strong { color: #C59A2E; font-size: 1.2rem; }

/* Disclaimer */
.hbs-popup-disclaimer {
    font-size: .7rem !important; color: #666 !important; margin-top: 16px !important;
}
.hbs-popup-disclaimer a { color: #888; text-decoration: underline; }

/* Mobile */
@media (max-width: 480px) {
    .hbs-popup-modal { padding: 28px 20px; }
    .hbs-popup-content h2 { font-size: 1.3rem; }
}
