/**
 * Booth Map Frontend Styles
 */
.mec-booth-map-container {
    position: relative;
    width: 100%;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
}

.mec-booth-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mec-booth-popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.mec-booth-popup-content {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 90%;
    max-width: 450px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    animation: mecSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mecSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mec-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s;
}

.mec-popup-close:hover {
    color: #1e293b;
}

.booth-title {
    margin-top: 0;
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
}

.booth-price {
    font-size: 24px;
    font-weight: 700;
    color: #4f46e5;
    margin: 10px 0;
}

.booth-desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.booth-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.booth-links a {
    flex: 1;
    text-decoration: none;
}

.mec-booth-popup-content .button {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.mec-booth-popup-content .button-primary {
    background: #4f46e5;
    color: #fff;
    border: none;
    font-size: 16px;
    margin-top: 10px;
}

.mec-booth-popup-content .button-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
}