.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 680px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.popup--wholesale {
    max-width: 860px;
}

.popup .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: #777;
    z-index: 2;
}

.popup-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.popup-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.popup-header p {
    color: #777;
    margin: 0;
    font-size: 0.95rem;
}

.form-wrap {
    padding: 1.5rem 2rem 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
}

.form-group .required {
    color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #e5e5e5;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.form-note {
    font-size: 0.8rem;
    color: #777;
    margin: 1rem 0;
}

.form-note a {
    color: #a8894d;
}

.popup--wholesale .form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #333;
    line-height: 1.45;
    cursor: pointer;
    margin: 0;
}

.popup--wholesale .form-consent input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: #bf9a4e;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cancel-btn,
.submit-btn {
    padding: 0.75rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
}

.cancel-btn {
    background: #f3f3f3;
    color: #333;
}

.submit-btn {
    background: #bf9a4e;
    color: #fff;
}

.success-message {
    display: none;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    background: #ecfdf5;
    color: #065f46;
    border-radius: 6px;
    font-size: 0.9rem;
}

.success-message.show {
    display: block;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-wrap,
    .popup-header {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.ventora-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 1900;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ventora-whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}
