/* Shop Leave Modal Styles */
.shop-leave-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.shop-leave-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.shop-leave-modal {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.shop-leave-modal-overlay.show .shop-leave-modal {
    transform: scale(1);
}

.shop-leave-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FEE2E2, #FEF3C7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #DC2626;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.shop-leave-title {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.shop-leave-reason {
    font-size: 18px;
    font-weight: 600;
    color: #DC2626;
    margin-bottom: 12px;
}

.shop-leave-message {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.shop-leave-btn {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.shop-leave-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.shop-leave-btn:active {
    transform: translateY(0);
}

.shop-leave-btn i {
    margin-right: 8px;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .shop-leave-modal {
        padding: 36px 24px;
    }

    .shop-leave-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .shop-leave-title {
        font-size: 24px;
    }

    .shop-leave-reason {
        font-size: 16px;
    }

    .shop-leave-message {
        font-size: 14px;
    }
}
