
    .order-card {
        transition: all 0.3s ease;
        border-radius: 12px;
    }

    .order-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .status-badge {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .status-paid {
        background-color: #dcfce7;
        color: #16a34a;
    }

    .status-pending {
        background-color: #fef9c3;
        color: #ca8a04;
    }

    .payment-option {
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 16px;
        transition: all 0.2s ease;
    }

    .payment-option:hover {
        border-color: #93c5fd;
        background-color: #f0f9ff;
    }

    .payment-option.selected {
        border-color: #3b82f6;
        background-color: #eff6ff;
    }

    .card-input {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .card-input:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
    }

    .payment-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .btn-paypal {
        background-color: #0070ba;
        color: white;
    }

    .btn-paypal:hover {
        background-color: #005ea6;
    }

    .btn-credit {
        background-color: #4f46e5;
        color: white;
    }

    .btn-credit:hover {
        background-color: #4338ca;
    }

    .international-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.75rem;
        color: #6b7280;
    }

    .secure-badge {
        background-color: #f3f4f6;
        padding: 4px 8px;
        border-radius: 4px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 0.75rem;
        color: #4b5563;
    }

    .step-item {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #3b82f6;
        color: white;
        font-weight: 600;
        z-index: 10;
    }

    .step-label {
        margin-top: 8px;
        font-size: 0.875rem;
        color: #4b5563;
    }

    .step-connector {
        position: absolute;
        top: 18px;
        height: 2px;
        background-color: #e5e7eb;
        width: 100%;
        left: 50%;
        z-index: 5;
    }

    .step-connector.active {
        background-color: #3b82f6;
    }
