/* ===========================================
   MODAL — Price list modal
   =========================================== */

.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show { opacity: 1; visibility: visible; }

.modal-container {
    background: #1a1a1a;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-container { transform: scale(1); }

.modal-header {
    padding: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title { font-size: 28px; color: #d4af37; margin: 0; font-weight: normal; }

.modal-close {
    background: none; border: none;
    color: #d4af37;
    font-size: 36px; line-height: 1;
    cursor: pointer; padding: 0;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.modal-close:hover { background: rgba(212, 175, 55, 0.1); transform: rotate(90deg); }

.modal-body { padding: 30px; overflow-y: auto; flex: 1; }

.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 20px;
}

.spinner {
    width: 50px; height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.modal-loading p { color: #e0e0e0; font-size: 16px; }
.modal-error { text-align: center; padding: 40px 20px; color: #ff6b6b; }

.services-list { display: flex; flex-direction: column; gap: 15px; }

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.service-info { flex: 1; }
.service-name { font-size: 18px; color: #f5f5f5; margin: 0; font-weight: normal; }
.service-price { font-size: 24px; color: #d4af37; font-weight: bold; white-space: nowrap; margin-left: 20px; }
.no-services { text-align: center; color: #888; padding: 40px 20px; font-size: 16px; }
