#mobilyafirsat-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.popup-content {
    position: relative;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
    min-width: 320px;
    max-width: 90%;
    animation: popupSlideIn 0.3s ease-out;
}

.popup-content.error {
    border-top: 4px solid #dc3545;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s ease;
}

.close-popup:hover {
    color: #333;
    transform: scale(1.1);
}

.popup-header {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.popup-header i {
    font-size: 24px;
    color: #0073aa;
    margin-bottom: 10px;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.popup-body {
    color: #666;
}

.order-info p {
    margin: 10px 0;
    font-size: 1rem;
    line-height: 1.5;
}

.tracking-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.track-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.2s ease;
}

.track-button:hover {
    background: #005177;
    transform: translateY(-2px);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
        margin: 20px;
        padding: 20px;
    }

    .popup-header h2 {
        font-size: 1.3rem;
    }

    .order-info p {
        font-size: 0.95rem;
    }
}